Servo that turns towards heat source with temperature reading display.

Dependencies:   mbed

Committer:
bmichael21
Date:
Mon Jan 14 07:46:34 2019 +0000
Revision:
17:fc23cf904932
Parent:
11:362594298828
comments

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bmichael21 8:fb50cf601521 1 #ifndef SERVO_H
bmichael21 8:fb50cf601521 2 #define SERVO_H
bmichael21 8:fb50cf601521 3 #include "mbed.h"
bmichael21 8:fb50cf601521 4
bmichael21 7:01f260a01953 5 extern PwmOut servo;
bmichael21 7:01f260a01953 6
bmichael21 7:01f260a01953 7 void servoInit();
bmichael21 11:362594298828 8 void moveServo();
bmichael21 8:fb50cf601521 9
bmichael21 8:fb50cf601521 10 #endif