Paso 3: DHT11 Sensor. ¿Cómo usar?
¿Como leer templature y humedad?
Por ejemplo:
#include dht11 DHT11; #define DHT11PIN 3 void setup() { Serial.begin(9600); } void loop() { DHT11.read(DHT11PIN); // This method is reading new humidity and temperature. Serial.print(DHT11.humidity, 1); Serial.println(DHT11.temperature, 1); delay(1000); }