-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.h
103 lines (90 loc) · 2.5 KB
/
Main.h
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
#ifndef __MAIN__HEADER__
#define __MAIN__HEADER__
#include "stdlib.h"
#include "stdio.h"
#include <esp_task_wdt.h>
#include "MenuPrincipal.h"
#include "Medidas.h"
#include "Display.h"
#include "ModoManual.h"
#include "ModoTCFM.h"
#include "ModoTFA.h"
#define DESL_TITULO_DISPLAY_MODO_MANUAL -2
#define DESL_TITULO_DISPLAY_MODO_TFA 40
#define DESL_TITULO_DISPLAY_MODO_TCFM 25
/****************************************************************
* a estrutura de dados é global e pertence a todo o projeto *
* mudanças aqui implicam em mudanças globais *
* *
* 1) menu --> Indicação do menu atual *
* 2) comando --> Indicação comando selecionado *
* 3) DadosEnsaio --> Estrutura que mantém os dados atuais *
* 4) enterPressed --> atualizado na int quando for ENTER *
* 5) velocidade --> indica se deve aumentar, diminuir ou *
* manter a velocidade *
* **************************************************************/
enum menus
{
PRINCIPAL,
MANUALL,
TCFM,
TFAA
};
enum menus menu;
enum comandos
{
INICIAR,
PARAR,
VOLTAR,
CONFIRMAR
};
enum comandos comando;
enum comandovelocidade
{
aumentarVelocidade,
diminuirVelocidade,
mesmaVelocidade
};
enum comandovelocidade Velocidade;
struct Dados
{
float velocidade;
float distanciaAcumulada;
float distancia1s;
long tempo;
float config_velocidade;
long config_tempo;
};
struct Dados DadosEnsaio;
struct Dados *pDadosEnsaio = &DadosEnsaio;
bool enterPressed = false;
bool flagFuncionamento = false;
bool pulsoAtivo = false;
bool flagOn = false;
// task handler
TaskHandle_t updateTaskOption;
/* **************************************************************
* FIM DA ESTRUTURA DE DADOS GLOBAIS *
*****************************************************************/
/* Interrupção ao selecionar o botão Enter*/
void IRAM_ATTR isr_enter()
{
detachInterrupt(digitalPinToInterrupt(ENTER));
enterPressed = false;
if (digitalRead(ENTER) == LOW)
{
for (int x = 0; x < 5000; x++)
;
if (digitalRead(ENTER) == LOW)
enterPressed = true;
else
enterPressed = false;
}
attachInterrupt(ENTER, isr_enter, FALLING);
}
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
#endif