Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / colonet / utilities / robot_wireless_relay / servo.h @ 13

History | View | Annotate | Download (381 Bytes)

1
/*  
2
        servo.h - Contains function prototypes for servo activation
3
        author:  Tom Lauwers
4
*/
5
#ifndef _SERVO_H_
6
#define _SERVO_H_
7

    
8
// Information on functions available in servo.c
9
void init_servo(void);
10
void enable_servos(void);
11
void enable_servo(int config);
12
void set_servo(int servo, unsigned int value);
13
void disable_servos(void);
14
void disable_servo(int );
15

    
16
#endif