-
Notifications
You must be signed in to change notification settings - Fork 0
/
pearl.ino
227 lines (195 loc) · 6.13 KB
/
pearl.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// Note: FORWARD is counter-clockwise
// This library handles the communication between XBee receivers
#include <SoftwareSerial.h>
// These three libraries handle the motorshield. They are provided by Adafruit.
// They simplify the following code by allowing high-level commands
// such as "set speed" and "set direction".
#include <Wire.h>
#include <Adafruit_MotorShield.h>
#include "utility/Adafruit_PWMServoDriver.h"
// Assign XBee pins for wireless communication [RX -> Dout, TX -> Din]
SoftwareSerial XBee(2, 3);
// Create the motor shield object
Adafruit_MotorShield AFMS = Adafruit_MotorShield();
// Create the motor objects to control individually
Adafruit_DCMotor *DCRed = AFMS.getMotor(3); // Red
Adafruit_DCMotor *DCYellow = AFMS.getMotor(2); // Yellow
Adafruit_DCMotor *DCBlue = AFMS.getMotor(1); // Blue
// Declare variables
uint8_t RED = 3;
uint8_t BLUE = 1;
uint8_t YELLOW = 2;
int input_speed = 0;
boolean autopilot_truth = 0;
// Analog pins
int proxy_sensor_reading = A3;
// Digital pins
int proxy_sensor_control = 7;
/******** SETUP ******** SETUP ******** SETUP ******** SETUP ********/
void setup() {
XBee.begin(9600); // Initialize XBee
AFMS.begin(); // Initialize motor shield
pinMode(proxy_sensor_control,OUTPUT); // Initialize IR proximity sensor
digitalWrite(proxy_sensor_control,HIGH); // Power IR proximity sensor
XBee.println(F("Wireless link: SUCCESSFUL")); // Notify operability
}
/******** LOOP ******** LOOP ******** LOOP ******** LOOP ********/
void loop() {
proximity_check();
input_check();
}
/******** PROXIMITY CHECK ******** PROXIMITY CHECK ******** PROXIMITY CHECK ********/
void proximity_check() {
// Avoid hitting head-on obstacles
// Compute distance as voltage (range approximately 0.5 to 3.1)
int n = 10;
float sum = 0.0;
for (int i=0; i<n; i++) sum += analogRead(proxy_sensor_reading);
float proxy_voltage = sum / float(n) / 1023.0 * 5.0;
// Back up if too close
if (proxy_voltage >= 1.65) {
kill();
DCBlue->run(BACKWARD);
DCBlue->setSpeed(111);
DCYellow->run(FORWARD);
DCYellow->setSpeed(111);
delay(300);
kill();
if (autopilot_truth) autopilot();
}
}
/******** INPUT CHECK ******** INPUT CHECK ******** INPUT CHECK ********/
void input_check() {
// Receive input and control speed and direction
if (XBee.available()) {
char input = XBee.read(); // Retrieve user input from XBee
switch (input) { // Translate user input into command
// Speed settings 1-5
case '1':
input_speed = 50;
break;
case '2':
input_speed = 75;
break;
case '3':
input_speed = 100;
break;
case '4':
input_speed = 125;
break;
case '5':
input_speed = 150;
break;
// Speed increment and decrement
case '[':
input_speed -= 10;
break;
case ']':
input_speed += 10;
break;
// Direction control (drive forward, backward, left, straight)
case 'w':
kill();
DCBlue->run(FORWARD);
DCBlue->setSpeed(input_speed);
DCYellow->run(BACKWARD);
DCYellow->setSpeed(input_speed);
break;
case 's':
kill();
DCBlue->run(BACKWARD);
DCBlue->setSpeed(input_speed);
DCYellow->run(FORWARD);
DCYellow->setSpeed(input_speed);
break;
case 'a':
kill();
DCRed->run(BACKWARD);
DCRed->setSpeed(input_speed);
DCBlue->run(FORWARD);
DCBlue->setSpeed(input_speed * 0.55);
DCYellow->run(FORWARD);
DCYellow->setSpeed(input_speed * 0.55);
break;
case 'd':
kill();
DCRed->run(FORWARD);
DCRed->setSpeed(input_speed);
DCBlue->run(BACKWARD);
DCBlue->setSpeed(input_speed * 0.55);
DCYellow->run(BACKWARD);
DCYellow->setSpeed(input_speed * 0.55);
break;
// Rotation (left and right)
case 'e':
kill();
DCRed->run(FORWARD);
DCRed->setSpeed(input_speed * 0.40);
DCBlue->run(FORWARD);
DCBlue->setSpeed(input_speed * 0.40);
DCYellow->run(FORWARD);
DCYellow->setSpeed(input_speed * 0.40);
break;
case 'q':
kill();
DCRed->run(BACKWARD);
DCRed->setSpeed(input_speed * 0.40);
DCBlue->run(BACKWARD);
DCBlue->setSpeed(input_speed * 0.40);
DCYellow->run(BACKWARD);
DCYellow->setSpeed(input_speed * 0.40);
break;
// Autopilot or manual override
case 'z':
halt();
autopilot_truth = false;
break;
case 'p':
autopilot_truth = true;
autopilot();
break;
// Default behavior if any other key is pressed
default:
kill();
}
}
}
/******** AUTOPILOT ******** AUTOPILOT ******** AUTOPILOT ******** AUTOPILOT ********/
void autopilot() {
// Drive around aimlessly
kill();
// Randomize rotation direction
uint8_t autopilot_direction = random(0,2);
if (autopilot_direction == 1) autopilot_direction = FORWARD; // Right
else autopilot_direction = BACKWARD; // Left
DCRed->run(autopilot_direction);
DCBlue->run(autopilot_direction);
DCYellow->run(autopilot_direction);
// Randomize speed (within a range of input_speed
int autopilot_speed = random(input_speed - 10, input_speed + 10);
DCRed->setSpeed(input_speed - 10);
DCBlue->setSpeed(input_speed - 10);
DCYellow->setSpeed(input_speed - 10);
// Randomize rotation duration
delay(random(75,350));
kill();
// Drive forward
DCBlue->run(FORWARD);
DCYellow->run(BACKWARD);
DCBlue->setSpeed(autopilot_speed);
DCYellow->setSpeed(autopilot_speed);
}
/******** KILL ******** KILL ******** KILL ******** KILL ******** KILL ********/
void kill() {
// Enable all motors to coast
DCRed->run(RELEASE);
DCYellow->run(RELEASE);
DCBlue->run(RELEASE);
}
/******** HALT ******** HALT ******** HALT ******** HALT ******** HALT ********/
void halt() {
// Engage the brakes on all motors
DCRed->setSpeed(0);
DCYellow->setSpeed(0);
DCBlue->setSpeed(0);
}