This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <LiquidCrystal_I2C.h> | |
#include <DHT.h> | |
#include "RTClib.h" | |
#include <EEPROM.h> | |
#include <avr/pgmspace.h> | |
#include <avr/wdt.h> | |
#include <SPI.h> | |
#include <MFRC522.h> | |
#include <Servo.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <LiquidCrystal_I2C.h> | |
#include <DHT.h> | |
#include "RTClib.h" | |
#include <EEPROM.h> | |
#include <avr/pgmspace.h> | |
#include <avr/wdt.h> // Watchdog timer | |
// ================ CONFIGURACIÓN DE PINES ================ | |
#define DHTPIN 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Wire.h> | |
#include <LiquidCrystal_I2C.h> | |
#include <DHT.h> | |
#include "RTClib.h" | |
#include <EEPROM.h> | |
#include <avr/pgmspace.h> | |
// ================ CONFIGURACIÓN DE PINES ================ | |
#define DHTPIN 2 | |
#define DHTTYPE DHT22 |