-
Notifications
You must be signed in to change notification settings - Fork 3
/
SumoTradicionalSensorIV.ino
327 lines (224 loc) · 7.29 KB
/
SumoTradicionalSensorIV.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
// Projeto robo sumô com sensor de detecção de linha (luz)
// Data da última mofificação: 14/08/2015
// NÃO utilizado na competição
/* OBS: definir o tempo de delay nas fugas */
#include <Ultrasonic.h>
#include <QTRSensors.h>
#define LIMITE_BRANCO 3500
#define LIMITE_BRANCO_FRENTE 400
#define LUZ_FRENTE_1 18
#define LUZ_FRENTE_2 19
#define LUZ_ESQUERDA_1 16
#define LUZ_ESQUERDA_2 17
#define LUZ_DIREITA_1 14
#define LUZ_DIREITA_2 15
#define SOM_FRENTE_ECHO 12
#define SOM_FRENTE_TRIG 13
#define SOM_DIREITA_ECHO 11
#define SOM_DIREITA_TRIG 10
#define MOTOR_E_F 3
#define MOTOR_E_T 2
#define MOTOR_D_F 4
#define MOTOR_D_T 5
int limiarEsquerda1,limiarEsquerda2, limiarDireita1, limiarDireita2, limiarFrente1, limiarFrente2;
QTRSensorsRC sensorLuzFrente((unsigned char[]) {LUZ_FRENTE_1, LUZ_FRENTE_2}, 2);
QTRSensorsRC sensorLuzDireita((unsigned char[]) {LUZ_DIREITA_1, LUZ_DIREITA_2}, 2);
QTRSensorsRC sensorLuzEsquerda((unsigned char[]) {LUZ_ESQUERDA_1, LUZ_ESQUERDA_2}, 2);
Ultrasonic sensorSomFrente(SOM_FRENTE_TRIG, SOM_FRENTE_ECHO);
Ultrasonic sensorSomDireita(SOM_DIREITA_TRIG, SOM_DIREITA_ECHO);
boolean luzEsquerdo, luzDireito, luzFrente; // apenas dizem se detectou algo ou nao
boolean somFrente, somDireito;
/* Vetores que guardam o valor dos sensores de luz */
unsigned int readLuzFrente[2];
unsigned int readLuzEsquerda[2];
unsigned int readLuzDireita[2];
void giraHorario() {
//Serial.print("-------------Horario\n");
/* Motor esquerdo pra frente*/
digitalWrite(MOTOR_E_F, HIGH);
digitalWrite(MOTOR_E_T, LOW);
/* Motor direito pra tras */
digitalWrite(MOTOR_D_T, HIGH);
digitalWrite(MOTOR_D_F, LOW);
//Perigoso
//delay(1000);
}
void giraAntiHorario() {
//Serial.print("-------------AntiHorario\n");
/* Motor esquerdo pra tras */
digitalWrite(MOTOR_E_T, HIGH);
digitalWrite(MOTOR_E_F, LOW);
/* Motor direito pra frente */
digitalWrite(MOTOR_D_F, HIGH);
digitalWrite(MOTOR_D_T, LOW);
//Perigoso
// delay(1000);
}
void fugaDireita() {
//Serial.print("-------------FugaDireita\n");
/* Motor esquerdo parado */
digitalWrite(MOTOR_E_F, LOW);
digitalWrite(MOTOR_E_T, LOW);
/* Motor direito pra frente */
digitalWrite(MOTOR_D_F, HIGH);
digitalWrite(MOTOR_D_T, LOW);
//Perigoso
//delay(1000);
}
void fugaEsquerda() {
//Serial.print("------------Fuga Esquerda\n");
/* Motor esquerdo pra frente */
digitalWrite(MOTOR_E_F, HIGH);
digitalWrite(MOTOR_E_T, LOW);
/* Motor direito parado */
digitalWrite(MOTOR_D_F, LOW);
digitalWrite(MOTOR_D_T, LOW);
//Perigoso
//delay(1000);
}
void avanca() {
//Serial.print("-------------Avanca\n");
/* Motor esquerdo pra frente */
digitalWrite(MOTOR_E_F, HIGH);
digitalWrite(MOTOR_E_T, LOW);
/* Motor direito pra frente */
digitalWrite(MOTOR_D_F, HIGH);
digitalWrite(MOTOR_D_T, LOW);
//delay(1000);
}
void volta() {
// Serial.print("--------------Volta\n");
/* Motor esquerdo pra tras */
digitalWrite(MOTOR_E_F, LOW);
digitalWrite(MOTOR_E_T, HIGH);
/* Motor direito tras */
digitalWrite(MOTOR_D_F, LOW);
digitalWrite(MOTOR_D_T, HIGH);
//Perigoso
//delay(1000);
}
//Explicacao sobre a periculosidade do delay, este delay de 1000 significa que vcs sempre irao se deslocar em intervalos de 1s, o que talvez seja muito para o ajuste que o robo deve fazer
boolean testaLuzEsquerdo() {
boolean retorno = false;
sensorLuzEsquerda.read(readLuzEsquerda); // atualiza a leitura dos sensores de cor
// Serial.println(readLuzEsquerda[0]);
// Serial.println(readLuzEsquerda[1]);
if(readLuzEsquerda[0] > (float)limiarEsquerda1 * (float)1.5 || readLuzEsquerda[1] > (float)limiarEsquerda2 * (float)1.5) {
retorno = true;
// Serial.print("Preto Esquerda\n");
}
// Serial.print("Branco Esquerda\n");
//delay(1000);
return retorno;
}
boolean testaLuzDireito() {
boolean retorno = false;
sensorLuzDireita.read(readLuzDireita); // atualiza a leitura dos sensores de cor
//Serial.println(readLuzDireita[0]);
//Serial.println(readLuzDireita[1]);
if(readLuzDireita[0] > (float)limiarDireita1 * (float) 1.5 || readLuzDireita[1] > (float)limiarDireita2 * (float) 1.5) {
retorno = true;
//Serial.print("Preto Direita\n");
}
// else
//Serial.print("Branco Direita\n");
// delay(1000);
return retorno;
}
boolean testaLuzFrente() {
boolean retorno = false;
sensorLuzFrente.read(readLuzFrente); // atualiza a leitura dos sensores de cor
// Serial.println(readLuzFrente[0]);
// Serial.println(readLuzFrente[1]);
if(readLuzFrente[0] > (float)limiarFrente1* (float) 1.5 || readLuzFrente[1] > (float)limiarFrente2 * (float)1.5) {
retorno = true;
// Serial.print("Preto Frente\n");
}
// else
// Serial.print("Branco Frente\n");
//delay(1000);
return retorno;
}
int testaSomDireito() {
boolean retorno = false;
int dist = sensorSomDireita.Ranging(CM);/* Valor analogico do pino do sensor*/;
if(dist <= 100) {
retorno = true;
// Serial.print("achei Direito\n");
}
// else
// Serial.print("Nao Direito\n");
//delay(1000);
return retorno;
}
int testaSomFrente() {
boolean retorno = false;
int dist = sensorSomFrente.Ranging(CM);/* Valor analogico do pino do sensor*/;
if(dist <= 10) {
retorno = true;
// Serial.println("achei Frente\n" + dist);
}
//else
// Serial.print("Nao Frente\n");
//delay(1000);
return retorno;
}
void setup() {
Serial.begin(9600);
// put your setup code here, to run once:
pinMode(MOTOR_D_F, OUTPUT);
pinMode(MOTOR_D_T, OUTPUT);
pinMode(MOTOR_E_F, OUTPUT);
pinMode(MOTOR_E_T, OUTPUT);
pinMode(LUZ_DIREITA_1, INPUT);
pinMode(LUZ_DIREITA_2, INPUT);
pinMode(LUZ_ESQUERDA_1, INPUT);
pinMode(LUZ_ESQUERDA_2, INPUT);
pinMode(LUZ_FRENTE_1, INPUT);
pinMode(LUZ_FRENTE_2, INPUT);
pinMode(SOM_FRENTE_ECHO, INPUT);
pinMode(SOM_FRENTE_TRIG, OUTPUT);
pinMode(SOM_DIREITA_ECHO, INPUT);
pinMode(SOM_DIREITA_TRIG, OUTPUT);
sensorLuzEsquerda.read(readLuzEsquerda);
limiarEsquerda1 = readLuzEsquerda[0];
limiarEsquerda2 = readLuzEsquerda[1];
sensorLuzFrente.read(readLuzFrente);
limiarFrente1 = readLuzFrente[0];
limiarFrente2 = readLuzFrente[1];
sensorLuzDireita.read(readLuzDireita);
limiarDireita1 = readLuzDireita[0];
limiarDireita2 = readLuzDireita[1];
}
void loop() {
//delay(1000);
/* Testa os sensores de luz pra detectar o chão */
luzEsquerdo = testaLuzEsquerdo();
luzDireito = testaLuzDireito();
luzFrente = testaLuzFrente();
/* Se for detectada alguma luz - MODULO DE FUGA*/
if(luzEsquerdo || luzDireito || luzFrente) {
if(luzEsquerdo && !luzDireito)
fugaEsquerda();
else if(!luzEsquerdo && luzDireito)
fugaDireita();
else if(luzDireito && luzEsquerdo)
avanca();
else if(luzFrente)
volta();
}
else { //caso nao detecte nenhuma luz
/* Procura o inimigo */
somFrente = testaSomFrente();
if(somFrente)
avanca();
else {
somDireito = testaSomDireito();
if(somDireito) // Talvez colocar um while aqui dentro até quando encontrar o inimigo no sensor da frente
giraHorario();
else // Talvez colocar while ate encontrar algo no sensor da frente ou no sensor lateral
giraAntiHorario();
}
}
delay(10);
}