Final

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

Committer:
asloop18
Date:
Tue Jan 12 01:41:19 2016 +0000
Revision:
14:69cad6d9a2e5
Parent:
13:871d01d0d250
Mission Accomplished; ; Working Version

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