domingo, 27 de novembro de 2011

DHT-22 Sensor de Umidade e Temperatura no Arduino

Hoje resolvi iniciar a implementação prática da minha estação Climaduino e Monitora Cerrado através do sensor DHT-22. Segue o esquema de pinagem e esquema de ligação do sensor.

1-Vcc
2-Dados
3-N/C
4-GND



Existem várias maneiras de se capturar os dados, inclusive usando a biblioteca do DHT-22.

http://arduino.cc/playground/Main/DHTLib


  1. // Example testing sketch for various DHT humidity/temperature sensors
  2. // Written by ladyada, public domain
  3. #include "DHT.h"
  4. #define DHTPIN 2     // what pin we're connected to
  5. // Uncomment whatever type you're using!
  6. //#define DHTTYPE DHT11   // DHT 11
  7. #define DHTTYPE DHT22   // DHT 22  (AM2302)
  8. //#define DHTTYPE DHT21   // DHT 21 (AM2301)
  9. // Connect pin 1 (on the left) of the sensor to +5V
  10. // Connect pin 2 of the sensor to whatever your DHTPIN is
  11. // Connect pin 4 (on the right) of the sensor to GROUND
  12. // Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor
  13. DHT dht(DHTPIN, DHT22);
  14. void setup() {
  15.   Serial.begin(9600);
  16.   Serial.println("DHTxx test!");
  17.   dht.begin();
  18. }
  19. void loop() {
  20.   // Reading temperature or humidity takes about 250 milliseconds!
  21.   // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
  22.   float h = dht.readHumidity();
  23.   float t = dht.readTemperature();
  24.   // check if returns are valid, if they are NaN (not a number) then something went wrong!
  25.   if (isnan(t) || isnan(h)) {
  26.     Serial.println("Failed to read from DHT");
  27.   } else {
  28.     Serial.print("Humidity: ");
  29.     Serial.print(h);
  30.     Serial.print(" %\t");
  31.     Serial.print("Temperature: ");
  32.     Serial.print(t);
  33.     Serial.println(" *C");
  34.   }
  35. }





É importante fazer o download da biblioteca e colocar na pasta librarie do Arduino.
https://github.com/adafruit/DHT-sensor-library

Segunda opção:
https://github.com/ringerc/Arduino-DHT22


http://arduino.cc/playground/Interfacing/Java

http://www.ladyada.net/learn/sensors/dht.html

http://paulo.blog.br/blog/climaduino-projeto-monitoracerrado/




Nenhum comentário:

Postar um comentário