Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brevex/greenhouse-monitoring-system

System made using esp-32 for monitoring the environment in a greenhouse using MQTT
https://github.com/brevex/greenhouse-monitoring-system

esp32 iot java spring-boot thymeleaf

Last synced: 22 days ago
JSON representation

System made using esp-32 for monitoring the environment in a greenhouse using MQTT

Awesome Lists containing this project

README

        

Greenhouse Monitoring System


๐Ÿ” About the project


A simple greenhouse monitoring system made with ESP32. The system detects possible risks for plants, such as: temperature, humidity and light. The
user will be warned whenever one of the conditions is inappropriate. The system also sends the data to a full stack application via an MQTT connection.


๐Ÿ”ฎ Technologies Used







๐Ÿ’ป Website

The website displays a table that breaks down the data received by the system, updating its value in real time. To improve scalability, the table will grow dynamically as new sensors are added to the system.



circuit


๐Ÿ’ก How it Works?



circuit



  • The system has 2 sensors: DHT22 for monitoring temperature and humidity and the Photoresistor (LDR) sensor for measuring luminosity;

  • The buzzer will sound whenever the system enters an alarm situation;

  • Alarm situations:





    1. Temperature < 10ยบ or Temperature > 20ยบ

    2. Humidity > 60%

    3. Luminosity < 500





  • If the system enters any alarm situation, the blue button next to the buzzer can be activated so the buzzer stops sounding;

  • The button can also be pressed at any time to disable the alarm system if the user does not wish to be notified.


๐Ÿ”ง Circuit Assembly


Using ESP32 devkit-c-v4



| Compenent | Component Pin | ESP32 Pin |
|:-------------------:|:-------------:|:---------:|
| Photoresistor (LDR) | ldr1:AO | esp:34 |
| Photoresistor (LDR) | ldr1:GND | esp:GND.2 |
| Photoresistor (LDR) | ldr1:VCC | esp:VN |
| DHT22 | dht1:VCC | esp:3V3 |
| DHT22 | dht1:SDA | esp:23 |
| DHT22 | dht1:GND | esp:GND.2 |
| LCD 20x4 (I2C) | lcd1:GND | esp:GND.3 |
| LCD 20x4 (I2C) | lcd1:VCC | esp:5V |
| LCD 20x4 (I2C) | lcd1:SDA | esp:21 |
| LCD 20x4 (I2C) | lcd1:SCL | esp:22 |
| Buzzer | bz1:1 | esp:GND.1 |
| Buzzer | bz1:2 | esp:12 |
| Pushbutton | btn1:2.r | esp:GND.1 |
| Pushbutton | btn1:1.r | esp:14 |


- By Breno -