-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
227 lines (176 loc) · 5 KB
/
main.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
#include <Arduino.h>
#include <SerialESP8266wifi.h>
#include <WiFiClient.h>
#include "index.h" // guarda o html
String s = MAIN_page; // guarda o codigo para ser enviado para o browser
//const char s = MAIN_page;
//Dados do router
const char* ssid;
const char* password;
#define RL 2//PT:Pino do LED vermelho;
#define YeL 3//PT:Pino do LED amarelo;
#define GL 4//PT:Pino do LED verde;
#define B_IN 11//PT:Pino para o butão de entrada;
#define B_OUT 6//PT:Pino para o butão de saída;
float room_size; //PT:Dimensões da sala em m^2;
float pm2; //PT:Número de pessoas por metro quadrado;
//PT: Valores predifinidos para o pm2;
#define muito_afastado 0.05
#define afastado 0.6
#define proximo 1
unsigned int room_capacity;
unsigned int n;
unsigned int max;
float perc;
float dist;
int time = millis();
int refresh_rate = 1000;
/*
PT:
Retorna o número máximo de pessoas que podem estar em uma sala.
Esta função leva em consideração as dimensões da sala em m^2 (room_size) e o número máximo de pessoas por metro quadrado (pm2).
Por razões práticas, o resultado é arredondado para baixo por padrão.
*/
int capacity(float room_size, float pm2) {return (int)room_size*pm2;}
void LEDS(float perc)
{
if (perc < 33)
{
digitalWrite(YeL, LOW);
digitalWrite(GL, HIGH);
}
else if (perc < 66)
{
digitalWrite(RL, HIGH);
digitalWrite(YeL, LOW);
digitalWrite(GL, LOW);
}
else
{
digitalWrite(YeL, LOW);
digitalWrite(GL, HIGH);
}
}
void GPIO_SETUP()
{
pinMode(RL, OUTPUT);
pinMode(YeL, OUTPUT);
pinMode(GL, OUTPUT);
pinMode(B_IN, INPUT_PULLUP);
pinMode(B_OUT, INPUT_PULLUP);
//teste de LEDS
digitalWrite(RL, HIGH);
digitalWrite(YeL, HIGH);
digitalWrite(GL, HIGH);
delay(1000);
digitalWrite(RL, LOW);
digitalWrite(YeL, LOW);
digitalWrite(GL, LOW);
}
void htmlHandler()
{
String s = MAIN_page; //Read HTML contents
server.send(200, "text/html", s); //Envia webpage para o cliente AJAX
}
void nHandler(int n)
{
server.send(200, "text/plane", String(n)); //Envia número de pessoas para o cliente AJAX
}
void webInputHandler(String query, float* value)
{
String str_value = server.arg(query); //xhttp.open("GET", id +"?q=" + getValue(id), true);
Serial.println(str_value);
*value = (int)str_value;
return value;
}
void SendToESP(String command, const int timeout, boolean debug)
{
// Envio dos comandos AT para o modulo
String resposta = "";
Serial.print(command);
//Serial1.print(command);
long int time = millis();
while ( (time + timeout) > millis())
{
while (Serial1.available())
{
char c = Serial1.read();
resposta += c;
}
}
if (debug) Serial.println(resposta);
}
void CheckESP()
{
Serial.println("Verifica conexão");
SendToESP("AT\r\n", 2000, 1);
delay(1000);
Serial.println("Versão Firmware");
SendToESP("AT+GMR\r\n", 2000, 1);
Serial.println();
}
void conectarWIFI(int tentativas)
{
ESP8266WebServer server(80); //abre servidor na porta 80 (https)
int n = 0;
WiFi.begin(ssid, password);
Serial.println("");
// Wait for connection
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
if (n > tentativas) break;
n++;
}
//Informações do IP da rede
Serial.println("Rede: ");
Serial.println(ssid);
Serial.println("");
Serial.println("");
Serial.println("")("IP address: ");
Serial.println(WiFi.localIP());
}
void IniciarServidor(int n, float *room_size, float *pm2)
{
//Envia pedidos AJAX
server.on("/", htmlHandler()); //envia pagina web page
server.on("/numb", nHandler(n)); //envia dados do número de pessoas
server.on("/tam", webInputHandler("TamSala", &room_size); //recebe dados; SendValue('tam', 'TamSala')
server.on("/pm2_max", webInputHandler("np")); //recebe dados; SendValue('pm2_max', 'np')
server.begin(); // inicializa o servidor
Serial.println("HTTP server started");
}
void setup()
{
GPIO_SETUP();
Serial.begin(9600); //comunicação UART com o computador
Serial1.begin(115200); //comunicação UART com o ESP8266
void CheckESP();
conectarWIFI(10);
IniciarServidor();
max = 0;
n = 0;
while(!max) //espera o input do utilizador no browser
{
server.handleClient(); //Cliente AJAX para o troca de informações
max = capacity(room_size, pm2);
}
}
void loop()
{
if (millis() - time > refresh_rate)
{
Serial.println("Valor de n:");
Serial.println(n);
Serial.println("Maximo de pessoas");
Serial.println(max);
perc = ((float)n/(float)max)*100;
Serial.println("Percentagem de ocupação:");
Serial.println(perc);
time += refresh_rate;
}
if (n < max && digitalRead(B_IN)) n++;
if (n > 0 && digitalRead(B_OUT)) n--;
server.handleClient(); //Cliente AJAX para o troca de informações
}