Arduino Smart Garden System
  • Intro
  • BOM (Bill Of Materials)
    • Arduino Board
    • Sensor Shield V5
    • Soil Moisture Sensor
    • DHT11
    • LCD 16x2 (I2C)
    • Relay Module:
    • Water Pump
  • Arduino IDE
  • Codes
    • Reading Soil Moisture Sensor in Serial
      • Auto-Mapping
    • Connecting and Displaying Messages on LCD
    • Reading Temperature and Humidity with DHT Sensor
    • Displaying DHT Sensor Values on LCD
    • Controlling Water Pump with Soil Moisture Threshold
    • Smart Garden Automation with Arduino
Powered by GitBook
On this page
  1. BOM (Bill Of Materials)

DHT11

PreviousSoil Moisture SensorNextLCD 16x2 (I2C)

Last updated 1 year ago

The DHT11 is a basic, low-cost temperature and humidity sensor module widely used in various Arduino projects and other electronic applications. It provides accurate measurements of ambient temperature and relative humidity, making it suitable for climate monitoring and control systems, weather stations, and indoor environmental monitoring.

The DHT11 sensor module contains a calibrated digital sensor with a built-in analog-to-digital converter and a communication interface. It consists of a humidity sensing component and a thermistor for temperature measurement. The sensor is capable of measuring humidity in the range of 20% to 90% with a ±5% accuracy and temperature in the range of 0°C to 50°C with a ±2°C accuracy.

The sensor operates on a single-wire communication protocol, making it easy to interface with microcontrollers like Arduino. It provides a digital output signal that can be read directly by the microcontroller. The communication with the DHT11 sensor involves sending a request signal and receiving a response containing the temperature and humidity data.

The DHT11 is a cost-effective solution for basic temperature and humidity monitoring needs. Its simplicity and affordability make it popular among hobbyists, students, and DIY enthusiasts. However, it's important to note that the DHT11 has limited accuracy and may not be suitable for applications that require high precision measurements. For more precise measurements, advanced sensors like the DHT22 or other specialized sensors may be preferred.