Preston Stephens / Mbed 2 deprecated MiniProject5_LightTracker

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ServoControl.h Source File

ServoControl.h

00001 //.h File for servocontrol.cpp
00002 
00003 
00004 #ifndef ServoControl_h
00005 #define ServoControl_h
00006 
00007 #include "mbed.h"
00008 
00009 extern PwmOut ServoSignal;              //Output, allow manipulation
00010     
00011 void ServoInit(void);
00012 int ServoControl(int angle);         //Function Prototypes
00013 
00014 #endif