summaryrefslogtreecommitdiff
path: root/src/c/scilab-arduino/cmd_servo_attach/u8cmd_servo_attachs.cpp
blob: ae2c68c54a5cdc745e2c8d83b2161433bb4b7cf5 (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
25
/*
 Scilab2C FOSSEE IIT BOMBAY
 */

#include "cmd_servo_attach.h"
#include "Arduino.h"
#include<Servo.h>
Servo servo1,servo2;
void u8cmd_servo_attach(uint8 h,uint8 servo_no)
{
    // h -> Board no. reserve for future use
    // servo_no -> pin no.(9 and 10).
    if(servo_no == 1)
       {
        servo1.attach(9); 
        servo1.write(0);
       }
    else
       {
        servo2.attach(10); 
        servo2.write(0);    
       }
    
}