apuntes_Arduino/sensores/DHT11-Temp-hum/test/test.ino

56 lines
1.4 KiB
Arduino
Raw Normal View History

2021-01-05 00:15:16 -03:00
// Incluimos librería
#include <DHT.h>
// Definimos el pin digital donde se conecta el sensor
#define DHTPIN 4
// Dependiendo del tipo de sensor
#define DHTTYPE DHT11
// Inicializamos el sensor DHT11
DHT dht(DHTPIN, DHTTYPE);
void setup() {
// Inicializamos comunicación serie
Serial.begin(9600);
// Comenzamos el sensor DHT
dht.begin();
}
void loop() {
// Esperamos 5 segundos entre medidas
delay(2000);
// Leemos la humedad relativa
float h = dht.readHumidity();
// Leemos la temperatura en grados centígrados (por defecto)
float t = dht.readTemperature();
// Leemos la temperatura en grados Fahrenheit
//float f = dht.readTemperature(true);
// Comprobamos si ha habido algún error en la lectura
if ( isnan(h) || isnan(t) ) {
Serial.println("Error obteniendo los datos del sensor DHT11");
return;
}
/*
// Calcular el índice de calor en Fahrenheit
float hif = dht.computeHeatIndex(f, h);
// Calcular el índice de calor en grados centígrados
float hic = dht.computeHeatIndex(t, h, false);
*/
Serial.print("Humedad: ");
Serial.print(h);
Serial.println(" %");
Serial.print("Temperatura: ");
Serial.print(t);
Serial.println(" *C ");/*
Serial.print(f);
Serial.println(" *F");
Serial.print("Indice de calor: ");
Serial.print(hic);
Serial.print(" *C ");
Serial.print(hif);
Serial.println(" *F\n");*/
}