Alarma IOT con ESP32 y Rainmaker
CODIGO ARDUINO - PLACA ESP32 - 38 PINES /********************************************************************************** * Preferences--> Aditional boards Manager URLs : * http://arduino.esp8266.com/stable/package_esp8266com_index.json,https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json * * Download Board ESP32 (2.0.3): **********************************************************************************/ #include <Wire.h> #include <LiquidCrystal_I2C.h> //Downlaod the library: http://www.electronoobs.com/eng_arduino_liq_crystal.php LiquidCrystal_I2C lcd ( 0x 27 , 16 , 2 ) ; #include <RTClib.h> // for the RTC RTC_DS3231 rtc; // crea objeto del tipo RTC_DS3231 char daysOfTheWeek [ 7 ][ 12 ] = { "Domin" , "Lunes" , "Mart" , "Mierc" , "Juev" , "Viern" , "Sabad" } ; #include "RMaker.h" #include "WiFi.h" #include ...