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