DHT11/DHT22 (ВЛАЖНОСТЬ И ТЕМПЕРАТУРА)

ОПИСАНИЕ

These DHTXX sensors are very popular among the Arduino Tinkerers. The DHT sensors are relative cheap sensors for measuring temperature and humidity.

These sensors inside contain a chip that does analog to digital conversion and spits out a digital signal with the temperature and humidity.

With any microcontroller(MCU) these signals are easy to ready.

SPECIFICATIONS DHT11 VS DHT22

You have to two versions of the DHT sensor.

DHT11

  • Диапазон: 20-90%
  • Абсолютная точность: ±5%
  • Стабильность: ±1%
  • Долговременная стабильность: ±1% за год

DHT22

  • Диапазон: 0-100%
  • Absolute accuracy: ±2%
  • Стабильность: ±1%
  • Долговременная стабильность: ±0.5% за год

As you can see from the specs above, the DHT22 is a little more accurate.

ARDUINO WITH DHT11 TEMPERATURE AND HUMIDITY SENSOR

Для схемы требуются следующие компоненты:

  • Arduino
  • DHT11
  • Макетная плата
  • 10K резистор

Here’s how to connect the DHT11 to an Arduino:

Контакты:

  1. VCC (от 3 В до 5 В)
  2. Вывод данных
  3. не подсоединен
  4. GND

ИСХОДНЫЙ КОД

Here’s the code you need for this project:

  1. Загрузите DHT11 library here
  2. Unzip the DHT library
  3. Rename the extracted folder and remove the “-“. Otherwise your Arduino IDE won’t recognize your library
  4. Install the DHT11 in your Arduino IDE
  5. Перезапустите Arduino IDE
  6. Go to Files / Examples / DHT_SENSOR_LIB / DHT Tester
  7. Выгрузите код

Результаты

In this project the Arduino is measuring the temperature and humidity. Those two measures are being displayed in the serial monitor. Here’s what you should see in your Arduino IDE serial monitor.

I hope you found this guide useful.

Вам может также понравиться...