Final

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

ServoControl.h

Committer:
pstephens18
Date:
2016-01-12
Revision:
13:871d01d0d250
Parent:
8:96b30706335b

File content as of revision 13:871d01d0d250:

//.h File for servocontrol.cpp


#ifndef ServoControl_h
#define ServoControl_h

#include "mbed.h"

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

#endif