Final

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

ServoControl.h

Committer:
asloop18
Date:
2016-01-11
Revision:
8:96b30706335b
Parent:
7:30afa5506e74
Child:
13:871d01d0d250

File content as of revision 8:96b30706335b:

//.h File for servocontrol.cpp


#ifndef ServoControl_h
#define ServoControl_h

#include "mbed.h"

extern PwmOut ServoSignal;              //Output, allow manipulation
    
void ServoInit(void);
float ServoControl(float angle);         //Function Prototypes

#endif