Final

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

Committer:
asloop18
Date:
Mon Jan 11 22:18:40 2016 +0000
Revision:
8:96b30706335b
Parent:
7:30afa5506e74
Child:
13:871d01d0d250
With Servo Function

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);
asloop18 8:96b30706335b 12 float ServoControl(float angle); //Function Prototypes
asloop18 6:992875df04f7 13
asloop18 7:30afa5506e74 14 #endif