ESP32 Weather Monitoring System Using DHT11 Sensor and LCD Display
by mansiramteke139 in Circuits > Sensors
137 Views, 1 Favorites, 0 Comments
ESP32 Weather Monitoring System Using DHT11 Sensor and LCD Display
In this project, I build Weather Monitoring System using ESP32 & DHT11 Sensor. The DHT11 Sensor measures the temperature and humidity of the surrounding environment.
[Connection of DHT11 Sensor with ESP32, Which is already posted here.
https://www.instructables.com/ESP32DHT11-Temperature-Humidity-Sensor-Project/ ]
The measured values are displayed in real time on a 16*2 LCD Display.
Supplies
[Connection of DHT11 Sensor with ESP32, Which is already posted here.]
https://www.instructables.com/ESP32DHT11-Temperature-Humidity-Sensor-Project/
Components list:
- LCD Display
- DHT11 Sensor Module
- I2C Module
- Jumper wires
- ESP32 Dev Module
- USB Cable
Pin Connection
[Connection of DHT11 Sensor with ESP32, Which is already posted here.]
https://www.instructables.com/ESP32DHT11-Temperature-Humidity-Sensor-Project/
LCD - ESP32
VCC - 5V
GND - GND
SDA - GPIO 14
SCL - GPIO 13
DHT11 - ESP32
+ - GND
Out - GPIO4
_ - 3V3
Code
Downloads
Important
Install Required Libraries:
- DHT11 Sensor Library (Adafruit)
- Adafruit Unified Sensor
- LiquidCrystal_I2C
Output
Here I uploaded the video of Output.
Downloads
Working
- The DHT11 Sensor measures temperature and humidity from the surrounding environment
- Then sends this data to the ESP32 through its data pin.
- The ESP32 processes the sensor reading using the DHT library.
- After reading the value, it displays the temperature and room status on the LCD display.
- This process repeats continuously, allowing real-time monitoring of environmental conditions.
Conclusion
This project demonstrates how to interface ESP32 with a DHT11 sensor and LCD display to create a simple weather monitoring system.