Final

Dependencies:   mbed

Fork of MiniProject5_LightTracker by Austin Sloop

ServoControl.h

Committer:
asloop18
Date:
2016-01-12
Revision:
14:69cad6d9a2e5
Parent:
13:871d01d0d250

File content as of revision 14:69cad6d9a2e5:

//.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