-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotobot.ino
85 lines (71 loc) · 3.25 KB
/
protobot.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
83
84
85
// PROTOBot Code
#include <Servo.h> // Load "Servo" library
Servo servoLeft; // Left drive servo
Servo servoRight; // Right drive servo
const int BumpLeft = 4; // Left bumper Pin 4
const int BumpRight = 5; // Right bumper Pin 5
int BumpStateLeft = 0; // Set Pin value
int BumpStateRight = 0; // Set Pin value
void setup() {
Serial.begin(9600); // Setup serial monitor for debug
servoLeft.attach(2); // Set left servo to pin 2
servoRight.attach(3); // Set right servo to pin 3
pinMode(BumpLeft, INPUT_PULLUP); // Set BumperLeft to input with pullup resistor
pinMode(BumpRight, INPUT_PULLUP); // Set BumperRight to input with pullup resistor
}
void loop() { // Main programming loop
BumpStateLeft = digitalRead(BumpLeft); // Read left bumper
Serial.println (BumpStateLeft, DEC); // Print state of bumber
if (BumpStateLeft == 0) { // Check to see if left bumper has been pressed
halt(); // Stop
reverse(); // Go backward
halt(); // Stop
clockwise(); // Turn clockwise
halt(); // Stop
}
BumpStateRight = digitalRead(BumpRight); // Read right bumper
Serial.println (BumpStateRight, DEC); // Print state of bumper
if (BumpStateRight == 0) { // Check to see if right bumper has been pressed
halt(); // Stop
reverse(); // Go backward
halt(); // Stop
counterclockwise(); // Turn counterclockwise
halt(); // Stop
}
forward(); // Go forward
}
void forward() { // Forward subroutine
servoLeft.write(180);
servoRight.write(0);
delay(2);
}
void reverse(){ // Reverse subroutine
servoLeft.write(0);
servoRight.write(180);
delay(400);
}
void clockwise() { // Clockwise subroutine
servoLeft.write(180);
servoRight.write(180);
delay(400);
}
void counterclockwise() { // Counterclockwise subroutine
servoLeft.write(0);
servoRight.write(0);
delay(600);
}
void left() { // Left wheel forward subroutine
servoLeft.write(90);
servoRight.write(0);
delay (2);
}
void right() { // Right wheel forward subroutine
servoLeft.write(180);
servoRight.write(90);
delay (2);
}
void halt() { // Stop subroutine
servoLeft.write(90);
servoRight.write(90);
delay (100);
}