/* Simple code to control a server attached to the uCsimm with the PWM. */

#ifndef _SERVER_H
#define _SERVER_H

extern void servo_init(void);

/* Set the servo to point to a particular angle.  Valid angles are
   from -45 to 45. */
extern void servo_set(int angle);

#endif /* _SERVO_H */
