-
Notifications
You must be signed in to change notification settings - Fork 0
/
ControladorSensoresDeFaixa.cpp
208 lines (169 loc) · 5.66 KB
/
ControladorSensoresDeFaixa.cpp
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
#include <Arduino.h>
#include "ControladorSensoresDeFaixa.h"
ControladorSensoresDeFaixa::ControladorSensoresDeFaixa() {
sensor_esquerdo_extremo = SensorDeRefletancia(A1);
sensor_esquerdo_centro = SensorDeRefletancia(A2);
sensor_frontal = SensorDeRefletancia(A3);
sensor_central = SensorDeRefletancia(A4);
sensor_direito_centro = SensorDeRefletancia(A5);
sensor_direito_extremo = SensorDeRefletancia(A6);
sensor_traseiro = SensorDeRefletancia(A7);
}
void ControladorSensoresDeFaixa::lerSensoresPrincipais() {
see = sensor_esquerdo_extremo.ler();
sec = sensor_esquerdo_centro.ler();
sf = sensor_frontal.ler();
sc = sensor_central.ler();
sdc = sensor_direito_centro.ler();
sde = sensor_direito_extremo.ler();
}
int ControladorSensoresDeFaixa::lerSensorFrontal() {
return sensor_frontal.ler();
}
int ControladorSensoresDeFaixa::lerSensorTraseiro() {
return sensor_traseiro.ler();
}
int ControladorSensoresDeFaixa::obterSituacaoAtual() {
lerSensoresPrincipais();
if (sf > 250) {
if (see > _limite and sde > _limite and sc > _limite and sec > _limite and sdc > _limite) {
situacao_atual = CRUZAMENTO_TOTAL;
return CRUZAMENTO_TOTAL;
}
else if (see > _limite and sde <= limite and sc > _limite and sec > _limite) {
delay(5);
see = sensor_esquerdo_extremo.ler();
sde = sensor_direito_extremo.ler();
if (see > _limite and sde > _limite) {
situacao_atual = CRUZAMENTO_TOTAL;
return CRUZAMENTO_TOTAL;
}
situacao_atual = CRUZAMENTO_PARA_ESQUERDA;
return CRUZAMENTO_PARA_ESQUERDA;
}
else if (sde > _limite and see <= limite and sc > _limite and sdc > _limite) {
delay(5);
see = sensor_esquerdo_extremo.ler();
sde = sensor_direito_extremo.ler();
if (see > _limite and sde > _limite) {
situacao_atual = CRUZAMENTO_TOTAL;
return CRUZAMENTO_TOTAL;
}
situacao_atual = CRUZAMENTO_PARA_DIREITA;
return CRUZAMENTO_PARA_DIREITA;
}
else if (see <= limite and sde <= limite and sec > limite and sc > _limite) {
situacao_atual = CURVA_SIMPLES_PARA_ESQUERDA;
return CURVA_SIMPLES_PARA_ESQUERDA;
}
else if (see <= limite and sde <= limite and sdc > limite and sc > _limite) {
situacao_atual = CURVA_SIMPLES_PARA_DIREITA;
return CURVA_SIMPLES_PARA_DIREITA;
}
else if (see <= limite and sde <= limite and sc > _limite and sec <= limite and sdc <= limite) {
situacao_atual = LINHA_RETA;
return LINHA_RETA;
}
}
else {
if (see > _limite and sde > _limite and sc > _limite and sec > _limite and sdc > _limite) {
situacao_atual = T;
return T;
}
else if (see > _limite and sde <= limite and sc > _limite and sec > _limite) {
delay(5);
see = sensor_esquerdo_extremo.ler();
sde = sensor_direito_extremo.ler();
if (see > _limite and sde > _limite) {
situacao_atual = T;
return T;
}
situacao_atual = CURVA_DE_90_GRAUS_PARA_ESQUERDA;
return CURVA_DE_90_GRAUS_PARA_ESQUERDA;
}
else if (sde > _limite and see <= limite and sc > _limite and sdc > _limite) {
delay(5);
see = sensor_esquerdo_extremo.ler();
sde = sensor_direito_extremo.ler();
if (see > _limite and sde > _limite) {
situacao_atual = T;
return T;
}
situacao_atual = CURVA_DE_90_GRAUS_PARA_DIREITA;
return CURVA_DE_90_GRAUS_PARA_DIREITA;
}
else if (see <= limite and sde <= limite and sc > _limite and sec > limite and sdc > limite) {
situacao_atual = ROTATORIA;
return ROTATORIA;
}
else if (see <= limite and sde <= limite and sec > limite and sc > _limite) {
situacao_atual = CURVA_SIMPLES_PARA_ESQUERDA;
return CURVA_SIMPLES_PARA_ESQUERDA;
}
else if (see <= limite and sde <= limite and sdc > limite and sc > _limite) {
situacao_atual = CURVA_SIMPLES_PARA_DIREITA;
return CURVA_SIMPLES_PARA_DIREITA;
}
else if (see <= limite and sde <= limite and sdc <= limite and sc <= _limite) {
situacao_atual = GAP;
return GAP;
}
}
situacao_atual = SITUACAO_NAO_IMPORTANTE;
return SITUACAO_NAO_IMPORTANTE;
}
void ControladorSensoresDeFaixa::mostrarResultados() {
Serial.print(F(" "));
Serial.print(see);
Serial.print(F(" "));
Serial.print(sec);
Serial.print(F(" "));
Serial.print(sf);
Serial.print(F(" "));
Serial.print(sc);
Serial.print(F(" "));
Serial.print(sdc);
Serial.print(F(" "));
Serial.print(sde);
Serial.print(F(" "));
switch (situacao_atual) {
case CRUZAMENTO_TOTAL:
Serial.println(F("CRUZAMENTO_TOTAL"));
break;
case CRUZAMENTO_PARA_ESQUERDA:
Serial.println(F("CRUZAMENTO_PARA_ESQUERDA"));
break;
case CRUZAMENTO_PARA_DIREITA:
Serial.println(F("CRUZAMENTO_PARA_DIREITA"));
break;
case CURVA_SIMPLES_PARA_ESQUERDA:
Serial.println(F("CURVA_SIMPLES_PARA_ESQUERDA"));
break;
case CURVA_SIMPLES_PARA_DIREITA:
Serial.println(F("CURVA_SIMPLES_PARA_DIREITA"));
break;
case LINHA_RETA:
Serial.println(F("LINHA_RETA"));
break;
case CURVA_DE_90_GRAUS_PARA_ESQUERDA:
Serial.println(F("CURVA_DE_90_GRAUS_PARA_ESQUERDA"));
break;
case CURVA_DE_90_GRAUS_PARA_DIREITA:
Serial.println(F("CURVA_DE_90_GRAUS_PARA_DIREITA"));
break;
case T:
Serial.println(F("T"));
break;
case ROTATORIA:
Serial.println(F("ROTATORIA"));
break;
case GAP:
Serial.println(F("GAP"));
break;
case SITUACAO_NAO_IMPORTANTE:
Serial.println(F("SITUACAO_NAO_IMPORTANTE"));
break;
default:
break;
}
}