#include "sensor.h"
sensors sen;
#include <ArduinoJson.h>
#include "JSONFactory.h"
JSON_Fac JSON_F;
#include "MQTT.h"
MQTT _mqtt;
#include "tasks.h"
millis_tasks TSK;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
TSK.tarea_pot();
TSK.actualizar_tareas();
TSK.tarea_MQTT();
}