-
Notifications
You must be signed in to change notification settings - Fork 1
/
servo_control.ino
82 lines (67 loc) · 1.35 KB
/
servo_control.ino
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <Servo.h>
Servo servoHead;
Servo servoLeft;
Servo servoRight;
Servo servoGrab;
void setup() {
// put your setup code here, to run once:
servoHead.attach(10);
servoLeft.attach(12);
servoRight.attach(13);
servoGrab.attach(11);
servoHead.write(90);
servoGrab.write(90);
Serial.begin(9600);
}
void headRight(void){
servoHead.write(60);
delay(3000);
}
void headLeft(void){
servoHead.write(120);
delay(3000);
}
void forward(void){
servoLeft.writeMicroseconds(1300);
servoRight.writeMicroseconds(1700);
}
void turnLeft(void){
servoLeft.writeMicroseconds(1300);
servoRight.writeMicroseconds(1500);
}
void turnRight(void){
servoLeft.writeMicroseconds(1500);
servoRight.writeMicroseconds(1700);
}
void stop(void){
servoLeft.writeMicroseconds(1500);
servoRight.writeMicroseconds(1500);
}
void backWard(void){
servoLeft.writeMicroseconds(1700);
servoRight.writeMicroseconds(1300);
}
void grab(void){
servoGrab.write(-270);
}
void release(void){
servoGrab.write(90);
}
void loop() {
// put your main code here, to run repeatedly:
headLeft();
headRight();
servoGrab.write(-270);
delay(3000);
forward();
delay(500);
turnLeft();
delay(500);
turnRight();
delay(500);
backWard();
delay(500);
stop();
servoGrab.write(90);
delay(3000);
}