-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.ino
170 lines (137 loc) · 5.16 KB
/
main.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
#include <ESPAsyncWebServer.h>
#include <WiFi.h>
#include <TinyGPS++.h>
#include <HardwareSerial.h>
#include <SD.h>
#define GPS_SERIAL Serial2
#define QTD_COLUNAS 6
IPAddress enderecoIPestatico(192, 168, 0, 100);
IPAddress gateway(192, 168, 0, 1);
IPAddress mascaraSubrede(255, 255, 255, 0);
AsyncWebServer servidorWeb(80);
TinyGPSPlus gps;
bool dataLoggerAtivo = false;
int posUltimoByteLido = 0;
char dadosInstantaneos[QTD_COLUNAS][20];
int configurarDadosInstantaneos(char dados[QTD_COLUNAS][20], TinyGPSPlus &gps);
void salvarDadosCSV(char dados[QTD_COLUNAS][20], String nomeArquivo);
void setup() {
Serial.begin(9600);
while(!Serial);
GPS_SERIAL.begin(9600);
while(!GPS_SERIAL);
while (!SD.begin(5)) {
Serial.println("Falha ao montar o cartão SD");
}
WiFi.softAPConfig(enderecoIPestatico, gateway, mascaraSubrede);
WiFi.softAP("ElFogueton");
Serial.print("Endereço IP do Ponto de Acesso: ");
Serial.println(WiFi.softAPIP());
servidorWeb.on("/iniciar_gravacao", HTTP_GET, [](AsyncWebServerRequest *request){
dataLoggerAtivo = true;
posUltimoByteLido = 0; // Resetar a posição de leitura ao iniciar a gravação
request->send(200, "text/plain", "Iniciando o Data Logger\n");
});
servidorWeb.on("/parar_gravacao", HTTP_GET, [](AsyncWebServerRequest *request){
dataLoggerAtivo = false;
posUltimoByteLido = 0; // Resetar a posição de leitura ao parar a gravação
request->send(200, "text/plain", "Parando o Data Logger\n");
});
servidorWeb.on("/status_gravacao", HTTP_GET, [](AsyncWebServerRequest *request){
request->send(200, "text/plain", dataLoggerAtivo ? "Ativo\n" : "Inativo\n");
});
servidorWeb.on("/obter_dados", HTTP_GET, [](AsyncWebServerRequest *request){
if(dataLoggerAtivo) {
request->send(404, "text/plain", "Erro: arquivo está sendo escrito!\n");
return;
}
File arquivo = SD.open("/Dados.txt", "r");
if(!arquivo) {
request->send(404, "text/plain", "Erro: arquivo não está disponível!\n");
return;
}
arquivo.seek(posUltimoByteLido);
String linhasConcatenadas = "";
for (int i = 0; i < 50 && arquivo.available(); i++) {
String linhas = arquivo.readStringUntil('\n');
linhasConcatenadas += linhas + "\n";
}
if (linhasConcatenadas.length() > 0) {
request->send(200, "text/plain", linhasConcatenadas);
posUltimoByteLido = arquivo.position();
} else {
request->send(200, "text/plain", "EOF\n");
posUltimoByteLido = 0;
}
arquivo.close();
});
servidorWeb.on("/apagar_dados", HTTP_GET, [](AsyncWebServerRequest *request){
if(dataLoggerAtivo) {
request->send(404, "text/plain", "Erro: arquivo está sendo escrito!\n");
return;
}
if(SD.remove("/Dados.txt")) {
request->send(200, "text/plain", "Arquivo '/Dados.txt' removido com sucesso!\n");
} else {
request->send(404, "text/plain", "Erro ao remover o arquivo '/Dados.txt'\n");
}
});
servidorWeb.on("/tamanho_arquivo", HTTP_GET, [](AsyncWebServerRequest *request){
if(dataLoggerAtivo) {
request->send(404, "text/plain", "Erro: arquivo está sendo escrito!\n");
return;
}
File arquivo = SD.open("/Dados.txt", "r");
if(!arquivo) {
request->send(404, "text/plain", "Erro: arquivo não está disponível!\n");
return;
}
request->send(200, "text/plain", "Tamanho do arquivo: " + String(arquivo.size()) + " bytes\n");
arquivo.close();
});
servidorWeb.on("/reiniciar_esp32", HTTP_GET, [](AsyncWebServerRequest *request){
request->send(200, "text/plain", "Reiniciando ESP32...\n");
ESP.restart();
});
servidorWeb.on("/quantidade_satelites", HTTP_GET, [](AsyncWebServerRequest *request){
request->send(200, "text/plain", "Quantidade de Satélites: " + String(gps.satellites.value()) + "\n");
});
servidorWeb.begin();
}
void loop() {
if (dataLoggerAtivo) {
int dadosConfigurados = configurarDadosInstantaneos(dadosInstantaneos);
if(dadosConfigurados) {
salvarDadosCSV(dadosInstantaneos, "/Dados.txt");
}
}
}
int configurarDadosInstantaneos(char dados[QTD_COLUNAS][20]) {
if (GPS_SERIAL.available() > 0) {
if (gps.encode(GPS_SERIAL.read())) {
if (gps.location.isValid() && gps.altitude.isValid() && gps.speed.isValid() && gps.date.isValid() && gps.time.isValid()) {
snprintf(dados[0], 20, "%f\0", gps.location.lat());
snprintf(dados[1], 20, "%f\0", gps.location.lng());
snprintf(dados[2], 20, "%f\0", gps.altitude.meters());
snprintf(dados[3], 20, "%f\0", gps.speed.mps());
snprintf(dados[4], 20, "%02d/%02d/%04d\0", gps.date.day(), gps.date.month(), gps.date.year());
snprintf(dados[5], 20, "%02d:%02d:%02d\0", gps.time.hour(), gps.time.minute(), gps.time.second());
return 1;
}
}
}
return 0;
}
void salvarDadosCSV(char dados[QTD_COLUNAS][20], String nomeArquivo) {
File arquivo = SD.open(nomeArquivo.c_str(), FILE_APPEND);
if (arquivo) {
for (int i = 0; i < QTD_COLUNAS; ++i) {
arquivo.print(dados[i]);
if (i < QTD_COLUNAS - 1) {
arquivo.print(",");
}
}
arquivo.println();
}
arquivo.close();
}