Servo H

You might also like

Download as rtf, pdf, or txt
Download as rtf, pdf, or txt
You are on page 1of 1

#ifndef Servo_H

#define Servo_H
// Event Definitions
#include "ES_Configure.h" /* gets us event definitions */
#include "ES_Types.h"
/* gets bool type for returns */
// Public Function Prototypes
#ifndef ALL_BITS
#define ALL_BITS (0xff<<2)
#endif
void ServoInit(void);
void ServoWrite(uint8_t servo, uint8_t position);
#endif

You might also like