-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModoManual.ino
183 lines (167 loc) · 4.79 KB
/
ModoManual.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
int modoManual(int X, char *titulo)
{
comando = INICIAR;
menu = MANUALL;
encoder.setPosition(1);
pos = encoder.getPosition();
showTelaModoManual(X, titulo);
ShowOpcoes();
DadosEnsaio.distanciaAcumulada = 0.0;
DadosEnsaio.velocidade = 0;
DadosEnsaio.tempo = 0;
DadosEnsaio.config_velocidade = 0.5;
primeiravez_showDistancia = true; //Flag primeiravez
primeiravez_showVelocidadeReal = true;
primeiravez_showVelocidadeDefinida = true;
primeiravez_ShowTempoConfig = true;
primeiravez_ShowTempo = true;
showVelocidadeReal(322, 95, DadosEnsaio.velocidade);
tft.fillRoundRect(386, 56, 78, 53, 8, LGREEN);
showVelocidadeDefinida(402, 95, DadosEnsaio.config_velocidade);
showDistancia(DadosEnsaio.distanciaAcumulada);
timerStop(timer);
ZeraTimer();
ShowTempo(DadosEnsaio.tempo);
unsigned long periodoControle = 0;
unsigned long periodoToShow = 0;
Serial.println("Tempo(s), Velocidade Definida(km/h),Velocidade Real (km/h),Distancia percorrida (m)");
do
{
escolheComandoManual();
switch (comando)
{
case INICIAR:
flagFuncionamento = true;
flagOn = true;
onOff();
comando = PARAR;
ShowOpcoes();
timerRestart(timer);
periodoToShow = millis();
periodoControle = millis();
// Inicialização do controle da esteira
do
{
DadosEnsaio.tempo = DadosEnsaio.config_tempo + interruptCounter1s;
// atualiza o controle da velocidade a cada 50 ms
// esse valor foi determinado experimentalmente. Nao mexa.
// a velocidade é medida a cada 100ms pelo timer1
if ((millis()-periodoControle)>50)
{
updateVelocidadeEsteira();
periodoControle = millis();
}
if ((millis()-periodoToShow)>300)
{
ShowTempo(DadosEnsaio.tempo);
showVelocidadeReal(322, 95, DadosEnsaio.velocidade);
showDistancia(DadosEnsaio.distanciaAcumulada);
showVelocidadeDefinida(402, 95, DadosEnsaio.config_velocidade);
periodoToShow = millis();
PrintDataSERIAL4Debug();
}
encoder.tick();
newPos = encoder.getPosition();
if (pos != newPos)
{
configVelocidade();
//showVelocidadeDefinida(402, 95, DadosEnsaio.config_velocidade);
}
} while ((enterPressed == false && comando != VOLTAR));
// Fim do controle
flagOn = false;
onOff();
timerStop(timer);
enterPressed = false;
DadosEnsaio.tempo = DadosEnsaio.config_tempo + interruptCounter1s;
ShowTempo(DadosEnsaio.tempo);
comando = PARAR;
ZeraTimer();
break;
case VOLTAR:
flagFuncionamento = false;
flagOn = false;
onOff();
ZeraTimer();
return 1;
break;
case PARAR:
flagFuncionamento = false;
flagOn = false;
onOff();
timerStop(timer);
break;
}
} while (comando != VOLTAR);
enterPressed = false;
}
void escolheComandoManual()
{
while (true)
{
//Lê a posição do encoder e compara com a anterior
encoder.tick();
newPos = encoder.getPosition();
if (pos != newPos)
{
//Limite maximo menu
if (newPos > 3)
{
encoder.setPosition(1);
newPos = 1;
}
//Limite minimo menu
if (newPos < 1)
{
encoder.setPosition(3);
newPos = 3;
}
pos = newPos;
if (pos == 1)
comando = INICIAR;
else if (pos == 2)
comando = PARAR;
else
comando = VOLTAR;
ShowOpcoes();
}
if (enterPressed)
break;
}
enterPressed = false;
}
void configVelocidade()
{
static int primeiravez =0;
float newvelo = DadosEnsaio.config_velocidade;
static RotaryEncoder::Direction lastMovementDirection = RotaryEncoder::Direction::NOROTATION;
//Lê a posição do encoder e compara com a anterior
if (primeiravez == 0) {
tft.drawRoundRect(385, 55, 80, 55, 10, tft.color565(0, 0, 0)); // (x, y, largura, altura, arredondamento)
tft.fillRoundRect(386, 56, 78, 53, 8, LGREEN);
showVelocidadeDefinida(402, 95, newvelo);
primeiravez = 1;
}
encoder.tick();
RotaryEncoder::Direction currentDirection = encoder.getDirection();
if (currentDirection == RotaryEncoder::Direction::CLOCKWISE)
{
newvelo = newvelo + 0.1;
if (newvelo >= 5)
{
newvelo = 0.5;
}
//showVelocidadeDefinida(402, 95, newvelo);
}
if (currentDirection == RotaryEncoder::Direction::COUNTERCLOCKWISE)
{
newvelo = newvelo - 0.1;
if (newvelo < 0.5 || newvelo == -0.1)
{
newvelo = (5);
}
//showVelocidadeDefinida(402, 95, newvelo);
}
DadosEnsaio.config_velocidade = newvelo;
showVelocidadeDefinida(402, 95, DadosEnsaio.config_velocidade);
}