-
Notifications
You must be signed in to change notification settings - Fork 1
/
nsr_18_sft.ino
545 lines (531 loc) · 12.6 KB
/
nsr_18_sft.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
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
#include <SoftwareSerial.h>
SoftwareSerial mySerial(15, 16);
//以下goal座標
long latupgo = 4008;
long latungo = 54320;
long lngupgo = 13959;
long lngungo = 23785;
//緯度と経度の整数部、小数点以下部分を順番に
int digitalPin = 3; //フライトピン
int val = 0; //同上
long latup2;
long latun2;
long lngup2;
long lngun2;
long latup1;
long latun1;
long lngup1;
long lngun1;
long latup;
long latun;
long lngup;
long lngun;
long latups;
long latuns;
long lngups;
long lnguns;
long lats;
long lngs;
int i = 1;
int motorApin2 = A2;
int motorBpin2 = A3;
int motorvref2 = 9;//for motor2
int motorApin3 = A4;
int motorBpin3 = A5;
int motorvref3 = 10;//for motor3
int ch = 0;//motor 場合分け
int goal = 0;
void setup() {
mySerial.begin(9600);
Serial1.begin(9600);
delay(5000);
while (!mySerial && !Serial1) { ; }
pinMode(motorApin2, OUTPUT);
pinMode(motorBpin2, OUTPUT);
pinMode(motorvref2, OUTPUT);
pinMode(motorApin3, OUTPUT);
pinMode(motorBpin3, OUTPUT);
pinMode(motorvref3, OUTPUT);
digitalWrite(motorvref2, HIGH);
digitalWrite(motorvref3, HIGH);
digitalWrite(motorApin2, HIGH);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, HIGH);
//ブレーキ
flightpin();
Serial1.println("Start GNSS Logging...");
while (goal<1) {
gnss();
motor();
thinkingface();
}
Serial1.println("GOAL!!!!");
}
void loop() {}
void flightpin() {
while (1) {
val = digitalRead(digitalPin);
if (val == HIGH) {
delay(36000);
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(20000);
//front
digitalWrite(motorApin2, LOW);
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, LOW);
digitalWrite(motorBpin3, LOW);
//stop
//motor front 20sec
break;
}
else {
;
}
}
}
void gnss() {
String buf;
if (mySerial.available()) {
buf = mySerial.readStringUntil('\n');
if (buf != "") {
int i, index = 0, len = buf.length();
String str = "";
String list[30];
for (i = 0; i < 30; i++) {
list[i] = "";
}
for (i = 0; i < len; i++) {
if (buf[i] == ',') {
list[index++] = str;
str = "";
continue;
}
str += buf[i];
}
if (list[0] == "$GNGGA") {
list[2] = list[2] + ".";
list[3] = list[3] + ".";
//小数点以下と整数部に分けてそれぞれをlongに変換
index = 0;
str = "";
int len1 = list[2].length();
String lati[30];
for (i = 0; i < 30; i++) {
lati[i] = "";
}
for (i = 0; i < len1; i++) {
if (list[2][i] == '.') {
lati[index++] = str;
str = "";
continue;
}
str += list[2][i];
}//整数部と小数部に分ける。
index = 0;
str = "";
int len2 = list[3].length();
String lngi[30];
for (i = 0; i < 30; i++) {
lngi[i] = "";
}
for (i = 0; i < len2; i++) {
if (list[3][i] == '.') {
lngi[index++] = str;
str = "";
continue;
}
str += list[3][i];
}
latup = lati[0].toInt();
latun = lati[1].toInt();
//この時、下1桁の0だったりは消えてしまうので注意
lngup = lngi[0].toInt();
lngun = lngi[1].toInt();
//この時、下1桁の0だったりは消えてしまうので注意
//139XXは通らない
if (3900 < lngup && lngup <13900) {//39XX,40XXを処理
lngup = 10000 + lngup;
}
if (900 < lngup && lngup <960) {//9XXを処理
lngup = 13000 + lngup;
}
if (lngup < 60) {//XXを処理
if (30<lngup) {
lngup = 13900 + lngup;
}
else {
lngup = 14000 + lngup;
}
}
if (i == 1) {
latup2 = latup;
latun2 = latun;
lngup2 = lngup;
lngun2 = lngun;
}
else {
latup1 = latup2;//~~1...previous
latun1 = latun2;
lngup1 = lngup2;
lngun1 = lngun2;
latup2 = latup;//~~2...now
latun2 = latun;
lngup2 = lngup;
lngun2 = lngun;
latups = latup2 - latup1;//差
latuns = latun2 - latun1;//差
lngups = lngup2 - lngup1;//差
lnguns = lngun2 - lngun1;//差
if (latups>100) {
latups = latups - 100 + 60;
}
if (lngups>100) {
lngups = lngups - 100 + 60;
}
lats = latups * 100000 + latuns;//分
lngs = lngups * 100000 + lnguns;//分
if ((latup2<latupgo || latun2<latungo) && (lngup2>lngupgo || lngun2>lngungo)) {
//右下、下,右の順
if ((lats>0) && (lngs>0)) {//右上進行、上,右の順
ch = 2;
//turnleft
}
if ((lats<0) && (lngs>0)) {//右下進行、下,右の順
if (ch == 3) {
ch = 4;
}
else {
ch = 3;
}
//oppositeturn
}
if ((lats<0) && (lngs<0)) {//左下進行、下,左の順
ch = 1;
//turnright
}
if ((lats>0) && (lngs<0)) {//左上進行、上,左の順
ch = 0;
}
}
if ((latup2<latupgo || latun2<latungo) && (lngup2<lngupgo || lngun2<lngungo)) {
//左下、下,左の順
if ((lats>0) && (lngs>0)) {//右上進行、上,右の順
ch = 0;
}
if ((lats<0) && (lngs>0)) {//右下進行、下,右の順
ch = 2;
//turnleft
}
if ((lats<0) && (lngs<0)) {//左下進行、下,左の順
if (ch == 3) {
ch = 4;
}
else {
ch = 3;
}
//turnoppsite
}
if ((lats>0) && (lngs<0)) {//左上進行、上,左の順
ch = 1;
//turnright
}
}
if ((latup2>latupgo || latun2>latungo) && (lngup2<lngupgo || lngun2<lngungo)) {
//左上、上,左の順
if ((lats>0) && (lngs>0)) {//右上進行、上,右の順
ch = 1;
//turnright
}
if ((lats<0) && (lngs>0)) {//右下進行、下,右の順
ch = 0;
}
if ((lats<0) && (lngs<0)) {//左下進行、下,左の順
ch = 2;
//turnleft
}
if ((lats>0) && (lngs<0)) {//左上進行、上,左の順
if (ch == 3) {
ch = 4;
}
else {
ch = 3;
}
//turnopposite
}
}
if ((latup2>latupgo || latun2>latungo) && (lngup2>lngupgo || lngun2>lngungo)) {
//右上、上,右の順
if ((lats>0) && (lngs>0)) {//右上進行、上,右の順
if (ch == 3) {
ch = 4;
}
else {
ch = 3;
}
//turnopposite
}
if ((lats<0) && (lngs>0)) {//右下進行、下,右の順
ch = 1;
//turnright
}
if ((lats<0) && (lngs<0)) {//左下進行、下,左の順
ch = 0;
//
}
if ((lats>0) && (lngs<0)) {//左上進行、上,左の順
ch = 2;
//turnleft
}
}
}
Serial1.print(latup, 5);
Serial1.print(",");
Serial1.print(latun, 5);
Serial1.print(",");
Serial1.print(lngup, 5);
Serial1.print(",");
Serial1.print(lngun, 5);
Serial1.println();
i++;
}
else { ; }
}
}
else {
delay(1000);
}
}
void motor() {
digitalWrite(motorvref2, HIGH);
digitalWrite(motorvref3, HIGH);
//2_front,3_back = cansat_back
//2_front,3_front = cansat_turning_left
//2_back,3_front = cansat_front
//2_back,3_back = cansat_turning_right
//2 = left & awkward , 3 = right & correct
if (ch == 0) {
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(10000);
//front
digitalWrite(motorApin2, LOW);
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, LOW);
digitalWrite(motorBpin3, LOW);
//stop
//front
}
else if (ch == 1) {
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, LOW);//右,正
digitalWrite(motorBpin3, LOW);
delay(1000);
//2_back,3_back = cansat_turning_right
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(10000);
//front
digitalWrite(motorApin2, LOW);
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, LOW);
digitalWrite(motorBpin3, LOW);
//stop
//turnright & front
}
else if (ch == 2) {
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(1000);
//2_front,3_front = cansat_turning_left
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(10000);
//front
digitalWrite(motorApin2, LOW);
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, LOW);
digitalWrite(motorBpin3, LOW);
//stop
//turnleft & front
}
else if (ch == 3) {
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, LOW);//右,正
digitalWrite(motorBpin3, LOW);
delay(2000);
//2_back,3_back = cansat_turning_right
//秒数2倍で180度
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(10000);
//front
digitalWrite(motorApin2, LOW);
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, LOW);
digitalWrite(motorBpin3, LOW);
//stop
//turnopposite & front
}
else if (ch == 4) {
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, LOW);//右,正
digitalWrite(motorBpin3, LOW);
delay(2000);
//2_back,3_back = cansat_turning_right
//秒数2倍
digitalWrite(motorApin2, LOW);//左,逆
digitalWrite(motorBpin2, HIGH);
digitalWrite(motorApin3, HIGH);//右,正
digitalWrite(motorBpin3, LOW);
delay(5000);
//front
digitalWrite(motorApin2, LOW);
digitalWrite(motorBpin2, LOW);
digitalWrite(motorApin3, LOW);
digitalWrite(motorBpin3, LOW);
//stop
//turnopposite & front
//for only half
}
}
void thinkingface() {
int t = 0;
int f = 0;
if (latupgo == latup && lngupgo == lngup) {
if (0 <= latungo - latun <= 5) {
t++;
}
if (0<latun - latungo <= 5) {
t++;
}
if (0 <= lngungo - lngun <= 5) {
t++;
}
if (0<lngun - lngungo <= 5) {
t++;
}
if (t >= 2) {
f++;
delay(2000);
latup = 0;
}
else { ; }
//チェックアゲイン
if (f >= 1) {
while (latup <= 0) {
String buf;
if (mySerial.available()) {
buf = mySerial.readStringUntil('\n');
if (buf != "") {
int i, index = 0, len = buf.length();
String str = "";
String list[30];
for (i = 0; i < 30; i++) {
list[i] = "";
}
for (i = 0; i < len; i++) {
if (buf[i] == ',') {
list[index++] = str;
str = "";
continue;
}
str += buf[i];
}
if (list[0] == "$GNGGA") {
list[2] = list[2] + ".";
list[3] = list[3] + ".";
//小数点以下と整数部に分けてそれぞれをlongに変換
index = 0;
str = "";
int len1 = list[2].length();
String lati[30];
for (i = 0; i < 30; i++) {
lati[i] = "";
}
for (i = 0; i < len1; i++) {
if (list[2][i] == '.') {
lati[index++] = str;
str = "";
continue;
}
str += list[2][i];
}//整数部と小数部に分ける。
index = 0;
str = "";
int len2 = list[3].length();
String lngi[30];
for (i = 0; i < 30; i++) {
lngi[i] = "";
}
for (i = 0; i < len2; i++) {
if (list[3][i] == '.') {
lngi[index++] = str;
str = "";
continue;
}
str += list[3][i];
}
latup = lati[0].toInt();
latun = lati[1].toInt();
//この時、下1桁の0だったりは消えてしまうので注意
lngup = lngi[0].toInt();
lngun = lngi[1].toInt();//この時、下1桁の0だったりは消えてしまうので注意
//139XXは通らない
if (3900 < lngup && lngup <13900) {//39XX,40XXを処理
lngup = 10000 + lngup;
}
if (900 < lngup && lngup <960) {//9XXを処理
lngup = 13000 + lngup;
}
if (lngup < 60) {//XXを処理
if (30<lngup) {
lngup = 13900 + lngup;
}
else {
lngup = 14000 + lngup;
}
}
}
}
}
}
if (latupgo == latup && lngupgo == lngup) {
if (0 <= latungo - latun <= 5) {
t++;
}
if (0<latun - latungo <= 5) {
t++;
}
if (0 <= lngungo - lngun <= 5) {
t++;
}
if (0<lngun - lngungo <= 5) {
t++;
}
if (t >= 2) {
f++;
}
}
}
if (f >= 2) {
goal++;
}
}
}//goal判定用