-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget-request.h
47 lines (31 loc) · 1001 Bytes
/
get-request.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
#include <WiFi.h>
#include <HTTPClient.h>
const char* ssid = "nombre-red";
const char* password = "contraseña-red";
void setup() {
Serial.begin(115200);
delay(4000);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Conectando a WiFi...");
}
Serial.println("Conectado a la red WiFi");
}
void loop() {
if ((WiFi.status() == WL_CONNECTED)) { // Verifica que se encuentre conectado a WiFi
HTTPClient http;
http.begin("http://localhost:3000/smoke-alert"); // Especifica URL de la petición
int httpCode = http.GET(); // Realiza la petición
if (httpCode > 0) { // Verifica el código de estado
String payload = http.getString();
Serial.println(httpCode);
Serial.println(payload);
}
else {
Serial.println("Error al realizar la petición.");
}
http.end(); // Libera los recursos
}
delay(10000);
}