#include "RTC.h"
DS1307_RTC MiReloj;
#include "Sensor.h"
sensores SEN;
#include "Actuator.h"
actuadores ACT;
#include "Task.h"
millis_tasks TSK;
void setup() {
SEN.config();
ACT.config();
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
TSK.actualizar_tareas();
TSK.tarea1();
TSK.tarea_pot();
TSK.tarea_lcd();
TSK.tarea_rtc();
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
}