blob: 870783300a79a56088ab282ff682a71989c0152f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
Scilab2C FOSSEE IIT Bombay
*/
#ifndef __CMD_SERVO_ATTACH_H__
#define __CMD_SERVO_ATTACH_H__
#include "types.h"
//#include <Servo.h>
#ifdef __cplusplus
extern "C" {
#endif
extern Servo servo1,servo2;
void u8cmd_servo_attach(uint8 h, uint8 servo_no );
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* __CMD_DCMOTOR_SETUP_H__ */
|