Boa tarde.
Estou tentando ligar sensores DTH11 ao Arduino Uno. Criei um tópico hoje de manhã mas foi muito genérico, tentei deleta-lo mas não consegui, esse no entanto contém bastante informação do que fiz até agora.
Conexão Física:
Código usado:
// Example testing sketch for various DHT humidity/temperature sensors
// Written by ladyada, public domain
#include "DHT.h"
#define DHTPIN01 2 // what pin we're connected to
#define DHTPIN02 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 dht01(DHTPIN01, DHTTYPE);
DHT dht02(DHTPIN02, DHTTYPE);
void setup() {
Serial.begin(9600);
Serial.println("DHTxx test!");
dht01.begin();
dht02.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 h01 = dht01.readHumidity();
float t01 = dht01.readTemperature();
float h02 = dht02.readHumidity();
float t02 = dht02.readTemperature();
// check if returns are valid, if they are NaN (not a number) then something went wrong!
if (isnan(t01) || isnan(h01) || isnan(t02) || isnan(h02)) {
Serial.println("Failed to read from DHT");
} else {
Serial.print("Humidity 01: ");
Serial.print(h01);
Serial.print(" %\t");
Serial.print("Temperature 01: ");
Serial.print(t01);
Serial.println(" *C");
Serial.print("Humidity 02: ");
Serial.print(h02);
Serial.print(" %\t");
Serial.print("Temperature 02: ");
Serial.print(t02);
Serial.println(" *C");
}
}
Saída:
Já testei vários códigos e não os resultados são sempre esses. Se alguém puder dizer onde posso estar errando dou meus sinceros agradecimentos.