Ref. 108.MD9071

AM2301 / DTH21 SENSOR DIGITAL DE TEMPERATURA Y HUMEDAD

Stock: 12  
Ref. 108.MD9071
Precio (IVA incluido) 9,03 €
Envío Gratis a partir de 150 €

Espacificaciones:
1. Tipo: AM2301
2. Resolución de la precisión: 0.1
3. Rango de medición: 0-100% RH
4. Rango de medición de temperatura: -40 ° ~ + 80 °
5. Precisión de medición de humedad: ± 3% RH
6. Precisión de la medida de temperatura: ± 0.5 °

Sample code:
// Example testing sketch for various DHT humidity/temperature sensors

#include "DHT.h"

#define DHTPIN 5 // what pin we're connected to

// Uncomment whatever type you're using!
#define DHTTYPE DHT11 // DHT 11
//#define DHTTYPE DHT22 // DHT 22 (AM2302)
//#define DHTTYPE DHT21 // DHT 21 (AM2301)

// Connect pin 1 (on the left) of the sensor to +5V
// Connect pin 2 of the sensor to whatever your DHTPIN is
// Connect pin 4 (on the right) of the sensor to GROUND
// Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor

DHT dht(DHTPIN, DHTTYPE);

void setup() {
Serial.begin(9600);
Serial.println("DHTxx test!");

dht.begin();
}

void loop() {
// Reading temperature or humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
float h = dht.readHumidity();
float t = dht.readTemperature();

// check if returns are valid, if they are NaN (not a number) then something went wrong!
if (isnan(t) || isnan(h)) {
Serial.println("Failed to read from DHT");
} else {
Serial.print("Humidity: ");
Serial.print(h);
Serial.print(" %\t");
Serial.print("Temperature: ");
Serial.print(t);
Serial.println(" *C");
}
}

Información adicional

Reciba las novedades en su email
  • Periféricos de Cabo Vilán S.L. - C.I.F.: ESB70364260
  • Sofía Rivas, 1 - 15123 - Camariñas - A Coruña - España.