// INCLUIMOS LA LIBRERIA NECESARIA
#include <DHT.h>
#define DHTPIN 2
#define SWTPIN 3
#define SW1TPIN 4
// Definimos tipo de DHT en la simulacion tenemos un DHT22
#define DHTTYPE DHT22
#define TIMEDHT 1000
unsigned long timerDHT=0;
DHT dht(DHTPIN,DHTTYPE);
void setup() {
// put your setup code here, to run once:
pinMode(SWTPIN, INPUT_PULLUP);
pinMode(SW1TPIN, INPUT_PULLUP);
dht.begin()
}
void loop() {
// put your main code here, to run repeatedly:
}