-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunciones.ino
277 lines (257 loc) · 5.3 KB
/
funciones.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
void forward(byte speed, byte speed2)
{
robotmotor.M1move(speed, 1);
robotmotor.M2move(speed2, 1);
}
void back(byte speed, byte speed2)
{
robotmotor.M1move(speed, 0);
robotmotor.M2move(speed2, 0);
}
void left(byte speed, byte speed2)
{
robotmotor.M1move(speed, 0);
robotmotor.M2move(speed2, 1);
}
void right(byte speed, byte speed2)
{
robotmotor.M1move(speed, 1);
robotmotor.M2move(speed2, 0);
}
void stop(bool i)
{
robotmotor.M1stop();
robotmotor.M2stop();
if (i){
beep(1);
}
}
void toggle(bool i)
{
if (i){
if (automove){
automove = false;
digitalWrite(LED_BUILTIN, LOW);
stop(1);
}
else{
automove = true;
beep(0);
}
}
else if (!i)
{
if (follow){
follow = false;
digitalWrite(LED_BUILTIN, LOW);
stop(1);
}
else{
follow = true;
beep(0);
}
}
}
void BlueControl()
{
byte bluedata;
bluedata = Serial.read();
switch (bluedata)
{
case '8'://Forward
forward(speed, speed - OFFSET_SPEED);
Serial.println();
break;
case '4'://left
left(speed, speed);
Serial.println();
break;
case '2'://bacK
back(speed, speed - OFFSET_SPEED);
Serial.println();
break;
case '6'://right
right(speed, speed);
Serial.println();
break;
case '5'://stop
stop(1);
Serial.println();
break;
case '0'://switch auto mode
toggle(1);
Serial.println();
break;
case '9':
Serial.print(F("ROBOT VERSION: ")); Serial.println(RVER);
break;
case '1':
toggle(0);
Serial.println();
break;
case '3':
pingDebug();
break;
#ifdef SERVOS
case '7':
if (pos >= 10){
myservo.write(pos -= 10);
Serial.println();
break;
}
Serial.println(F("servo limit reached"));
break;
case '9':
if (pos <= 170){
myservo.write(pos += 10);
Serial.println();
break;
}
Serial.println(F("servo limit reached"));
break;
case '1':
if (pos >= 10){
myservo2.write(pos -= 10);
Serial.println();
break;
}
Serial.println(F("servo2 limit reached"));
break;
case '3':
if (pos <= 170){
myservo2.write(pos += 10);
Serial.println();
break;
}
Serial.println(F("servo2 limit reached"));
break;
#endif
default: return;
}
}
void SonarControl()
{
unsigned int distance_L = sonar_L.convert_cm(sonar_L.ping_median()); // Send ping, get distance in cm, 0 if > MAX_DISTANCE.
unsigned int distance_R = sonar_R.convert_cm(sonar_R.ping_median());
//unsigned int distance_F = sonar_F.convert_cm(sonar_F.ping_median());
#ifdef DEBUG_M
/*Serial.print(F("Ping_F: "));
Serial.print(distance_F);*/
Serial.println(F("cm"));
Serial.print(F("Ping_L: "));
Serial.print(distance_L);
Serial.println(F("cm"));
Serial.print(F("Ping_R: "));
Serial.print(distance_R);
Serial.println(F("cm"));
#endif
/*if (distance_F <= OBSTACLE)
{
stop();
while (sonar_F.convert_cm(sonar_F.ping_median()) <= OBSTACLE)
{
back(speed, speed);
}
return;
}*/
if (distance_L <= OBSTACLE && distance_L > STUCK && distance_R >= OBSTACLE)
{
if (firstrun)
{
firstrun = false;
stop(1);
return;
}
tone(TONE_PIN, 700, 200);
digitalWrite(LED_BUILTIN, HIGH);
while (sonar_L.convert_cm(sonar_L.ping_median()) < OBSTACLE)
{
right(speed, speed);
}
return;
}
if (distance_R <= OBSTACLE && distance_R > STUCK && distance_L >= OBSTACLE)
{
if (firstrun)
{
firstrun = false;
stop(1);
return;
}
tone(TONE_PIN, 500, 200);
digitalWrite(LED_BUILTIN, HIGH);
while (sonar_R.convert_cm(sonar_R.ping_median()) < OBSTACLE)
{
left(speed, speed);
}
return;
}
if (distance_L <= STUCK && distance_L != 0 || distance_R <= STUCK && distance_R != 0)
{
back(speed, speed - OFFSET_SPEED);
delay(700);
return;
}
digitalWrite(LED_BUILTIN, LOW);
forward(speed, speed - OFFSET_SPEED);
}
void Follow()
{
unsigned int distance_L = sonar_L.convert_cm(sonar_L.ping_median()); // Send ping, get distance in cm, 0 if > MAX_DISTANCE.
unsigned int distance_R = sonar_R.convert_cm(sonar_R.ping_median());
#ifdef DEBUG_M
/*Serial.print(F("Ping_F: "));
Serial.print(distance_F);*/
Serial.println(F("cm"));
Serial.print(F("Ping_L: "));
Serial.print(distance_L);
Serial.println(F("cm"));
Serial.print(F("Ping_R: "));
Serial.print(distance_R);
Serial.println(F("cm"));
#endif
if (distance_L > 18 && distance_R > 18 || distance_L < 5 && distance_R < 5) //if both sensors read more than 18 cm or less than 5 cm, brake both motors
{
stop(0);
}
if (distance_L <= 18 && distance_R <= 18 && (distance_L >= 5 && distance_R >= 5)) //if both sensors read less than 18 cm, go forward
{
forward(speed, speed - OFFSET_SPEED);
}
if (distance_L < 18 & distance_R > 18) //if only something is in front of the left ultrasonic sensor, turn left
{
left(speed, speed);
}
if (distance_L > 18 & distance_R < 18) //if only something is in front of the right ultrasonic sensor, turn right
{
right(speed, speed);
}
}
void beep(bool i)
{
if (i)
{
tone(TONE_PIN, 700, 200);
delay(200);
tone(TONE_PIN, 1000, 200);
}
else
{
tone(TONE_PIN, 1000, 200);
delay(200);
tone(TONE_PIN, 700, 200);
}
}
void pingDebug()
{
delay(50);
unsigned int d = sonar_L.convert_cm(sonar_L.ping_median()); // Send ping, get distance in cm, 0 if > MAX_DISTANCE.
unsigned int d2 = sonar_R.convert_cm(sonar_R.ping_median());
Serial.println();
Serial.print(F("Ping_L: "));
Serial.print(d);
Serial.println(F("cm"));
Serial.print(F("Ping_R: "));
Serial.print(d2);
Serial.println(F("cm"));
}