Final

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

Committer:
pstephens18
Date:
Tue Jan 12 01:12:23 2016 +0000
Revision:
13:871d01d0d250
Parent:
8:96b30706335b
Moving CPU
;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
asloop18 8:96b30706335b 1 //.h File for servocontrol.cpp
asloop18 8:96b30706335b 2
asloop18 8:96b30706335b 3
asloop18 8:96b30706335b 4 #ifndef ServoControl_h
asloop18 8:96b30706335b 5 #define ServoControl_h
asloop18 6:992875df04f7 6
asloop18 6:992875df04f7 7 #include "mbed.h"
asloop18 8:96b30706335b 8
asloop18 8:96b30706335b 9 extern PwmOut ServoSignal; //Output, allow manipulation
asloop18 8:96b30706335b 10
asloop18 7:30afa5506e74 11 void ServoInit(void);
pstephens18 13:871d01d0d250 12 int ServoControl(int angle); //Function Prototypes
asloop18 6:992875df04f7 13
asloop18 7:30afa5506e74 14 #endif