-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSERA.ino
More file actions
444 lines (355 loc) · 14.2 KB
/
SERA.ino
File metadata and controls
444 lines (355 loc) · 14.2 KB
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/************************************************************************************
Library file includes
***********************************************************************************/
#include <Wire.h>
#include <Servo.h>
#include "HMC5883L.h"
HMC5883L compass;
/************************************************************************************
Pin Definitions
***********************************************************************************/
#define trigPin 33
#define echoPin 32
/************************************************************************************
State Definitions
***********************************************************************************/
#define HALT 0
#define FORWARD 1
#define LEFT 2
#define RIGHT 3
#define GRAB 9
#define ROTATE 10
/************************************************************************************
Global Variables
***********************************************************************************/
Servo grip_grab;
Servo grip_rotate;
Servo camera;
Servo cameraPan;
int leftSpeed = 65;
int rightSpeed = 65;
int driveStatus = HALT;
/************************************************************************************
Setup
***********************************************************************************/
void setup(){
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
pinMode(4, OUTPUT);
pinMode(5, OUTPUT);
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
halt();
attachInterrupt(4, line, HIGH);
attachInterrupt(5, line, HIGH);
Serial.begin(9600);
compass.begin();
compass.setOffset(-180, -160);
}
void loop(){
if(Serial.available()){
char input = Serial.read();
switch (input){
//Drive
case 'w': forward(); break;
case 'a': turn_L(); break;
case 'd': turn_R(); break;
case 's': halt(); break;
case 'x': backward(); break;
case 'r': turn_90l(); break;
case 't': turn_90r(); break;
case 'n': turn_ll(); break;
case 'm': turn_lr(); break;
case 'z': speedChange(); break;
//Camera
case 'c': pan(); break;
case 'v': tilt(); break;
//Gripper
case 'p': grip(); break;
case 'l': leave(); break;
case 'i': InitGripper(); break;
case 'g': compassCal(); break;
}
}
}
/************************************************************************************
Gripper
***********************************************************************************/
void grip()
{
float dis;
while(1)
{
dis = IR();
if (dis < 17)
{
Pick();
break;
}else{
forward();
delay(50);
halt();
}
}
Serial.print("1");
return;
}
void leave()
{
float dis;
while(1)
{
dis = IR();
if (dis < 17.5)
{
Drop();
break;
}else{
forward();
delay(50);
halt();
}
}
Serial.print("1");
return;
}
void Pick()
{
grip_grab.attach(GRAB);
grip_rotate.attach(ROTATE);
delay(2000);
grip_grab.write(0);
delay(2000);
grip_rotate.write(100);
delay(1000);
grip_rotate.detach();
}
void Drop()
{
grip_grab.attach(GRAB);
grip_rotate.attach(ROTATE);
grip_grab.write(150);
delay(2000);
grip_grab.detach();
grip_rotate.detach();
}
void InitGripper()
{
grip_grab.attach(GRAB);
grip_rotate.attach(ROTATE);
delay(1000);
grip_grab.write(150);
delay(1000);
grip_rotate.write(0);
delay(1000);
grip_grab.detach();
grip_rotate.detach();
Serial.print("1");
}
/************************************************************************************
Drive
***********************************************************************************/
void forward()
{
driveStatus = FORWARD;
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
analogWrite(6,leftSpeed);
analogWrite(7,rightSpeed);
}
void backward()
{
driveStatus = FORWARD;
digitalWrite(4,HIGH);
digitalWrite(5,LOW);
analogWrite(6,rightSpeed);
analogWrite(7,leftSpeed);
}
void halt()
{
driveStatus = HALT;
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
analogWrite(6,0);
analogWrite(7,0);
}
void turn_L()
{
driveStatus = LEFT;
digitalWrite(4,HIGH);
digitalWrite(5,HIGH);
analogWrite (6,90);
analogWrite (7,90);
}
void turn_R()
{
driveStatus = RIGHT;
digitalWrite(4,LOW);
digitalWrite(5,LOW);
analogWrite (6,90);
analogWrite (7,90);
}
void turn_ll()
{
turn_L();
delay(30);
halt();
}
void turn_lr()
{
turn_R();
delay(30);
halt();
}
void turn_90l(){
int degree;
//90 Degree Turn
//int destl = compassValue() + 89;
//int desth = compassValue() + 91;
//45 Degree Turn
int destl = compassValue() + 43;
int desth = compassValue() + 47;
if(destl > 360) destl -= 360;
if(desth > 360) desth -= 360;
do{
turn_L();
delay(20);
halt();
delay(10);
degree = compassValue();
degree = compassValue();
degree = compassValue();
//Serial.println("*");
}while((degree < destl) | (degree > desth));
halt();
Serial.print("1");
}
void turn_90r(){
int degree;
//90 Degree Turn
//int destl = compassValue() - 91;
//int desth = compassValue() - 89;
//45 Degree Turn
int destl = compassValue() - 47;
int desth = compassValue() - 43;
if(destl < 0) destl += 360;
if(desth < 0) desth += 360;
do{
turn_R();
delay(20);
halt();
delay(10);
degree = compassValue();
degree = compassValue();
degree = compassValue();
//Serial.println("*");
}while((degree < destl) | (degree > desth));
halt();
Serial.print("1");
}
/************************************************************************************
Camera
***********************************************************************************/
void tilt(){
int value;
cameraPan.attach(12);
value = Serial.parseInt();
cameraPan.write(value);
delay(1000);
cameraPan.detach();
}
void pan(){
int value;
camera.attach(11);
value = Serial.parseInt();
camera.write(value);
delay(1000);
camera.detach();
}
/************************************************************************************
Line Sensor
***********************************************************************************/
void line(){
if(driveStatus == FORWARD){
halt();
Serial.print(1);
}
}
/************************************************************************************
Compass
***********************************************************************************/
int compassValue(){
int angle;
Vector norm = compass.readNormalize();
float heading = atan2(norm.YAxis, norm.XAxis);
float declinationAngle = (-0 - (8 / 60.0)) / (180 / M_PI);
heading += declinationAngle;
if (heading < 0)
{
heading += 2 * PI;
}
if (heading > 2 * PI)
{
heading -= 2 * PI;
}
angle = heading * 180 / M_PI;
return angle;
}
void compassCal()
{
int minX = 0;
int maxX = 0;
int minY = 0;
int maxY = 0;
int offX = 0;
int offY = 0;
compass.setOffset(0, 0);
turn_R();
for(int i = 0; i <3000; i++)
{
Vector mag = compass.readRaw();
if (mag.XAxis < minX) minX = mag.XAxis;
if (mag.XAxis > maxX) maxX = mag.XAxis;
if (mag.YAxis < minY) minY = mag.YAxis;
if (mag.YAxis > maxY) maxY = mag.YAxis;
offX = (maxX + minX)/2;
offY = (maxY + minY)/2;
}
halt();
Serial.println(offX);
Serial.println(offY);
compass.setOffset(offX, offY);
}
void speedChange(){
int value;
value = Serial.parseInt();
if(value < 250 & value > 50)
leftSpeed = value;
value = Serial.parseInt();
if(value < 250 & value > 50)
rightSpeed = value;
if(driveStatus == FORWARD)
forward();
}
float IR(){
float value = 0;
float p_value = 0;
do
{
p_value = get_IR();
value = get_IR();
}while((value > p_value + 0.5) | (value < p_value - 0.5));
return value;
}
float get_IR()
{
float SumIRMid = 0.0;
float IRvalueM[10];
for (int i = 0; i < 20; i++) {
float voltsM = analogRead(0) * 0.0048828125;
IRvalueM[i] = 50 * pow(voltsM, -1.10);
SumIRMid = SumIRMid + IRvalueM[i];
}
return SumIRMid/20;
}