amc2022:grouph:start
Differences
This shows you the differences between two versions of the page.
amc2022:grouph:start [2022/09/08 05:27] – [10.Extra: Python Code for subscription to MQTT] jude001 | amc2022:grouph:start [2023/01/05 14:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 38: | Line 38: | ||
+ | {{ : | ||
+ | | //**figure 1.1**// Schematics | | ||
Line 48: | Line 49: | ||
For our purposes we initiated this project with the DHT-22 sensor because it was simple to install and program, but we also believe that for any upgrading of the system or expansion to a more complicated set-up in the field of ambiental measuring, the temperature and humidity are a must. Additionally the ability to save the data collected and to be represented in Grafana allows the user to have a better understanding of things that could be done in order to improve the Air quality of the room or apartment, for instance the user can see in detail how closing the curtains on hot summer days can help maintain the space cooler, or how high humidity in closed spaces can have negative consequences such as the proliferation of mold which both causes damages to the property and has negative health risks. A great place to have the Air Quality station would be a basement or an attic, where lack of moving air tends to create a setting where polluting particles and gasses can accumulate without the owner or user of the space being aware. | For our purposes we initiated this project with the DHT-22 sensor because it was simple to install and program, but we also believe that for any upgrading of the system or expansion to a more complicated set-up in the field of ambiental measuring, the temperature and humidity are a must. Additionally the ability to save the data collected and to be represented in Grafana allows the user to have a better understanding of things that could be done in order to improve the Air quality of the room or apartment, for instance the user can see in detail how closing the curtains on hot summer days can help maintain the space cooler, or how high humidity in closed spaces can have negative consequences such as the proliferation of mold which both causes damages to the property and has negative health risks. A great place to have the Air Quality station would be a basement or an attic, where lack of moving air tends to create a setting where polluting particles and gasses can accumulate without the owner or user of the space being aware. | ||
+ | <wrap em> | ||
+ | Description of how the DHT22 sensor works can be found [[amc2022: | ||
- | How we implemented the DHT-22 sensor into our device is described here[[amc2022: | + | </ |
+ | ==== 3.2 Air Particles Measurement ==== | ||
+ | Particle Matter are small solid particles and water droplets that are found in air. The size of those particles vary greatly, some we can see with our naked eye, such as pollen, dirt and smoke, while others we need tools like microscopes to detect them. The significance that the presence of those particles have on our health depend on such factors as type of particle, quantity and duration of exposure((https:// | ||
+ | Due to industrialization and all that it entitles in terms of development, | ||
+ | Determining the quality of the air we breath is directly related to knowing how many and what type of those particles are present in the air. Therefore, we have used the MQ2 sensor which not only detects certain types of particle matter but also its concentration. | ||
- | ==== 3.2 Air Particles Measurement ==== | + | Listed below are limit threshold amounts for different particulate matter in the air at which the health risks are moderate. There are many sources and depending on where you obtain your source the number may vary. |
+ | ^Particle ^ Concentration on ppm ^ | ||
+ | |LPG((www.cdc.gov)) | ||
+ | |CO((https:// | ||
+ | |Alcohol((https:// | ||
+ | |CH4((https:// | ||
+ | |Propane((https:// | ||
+ | |||
+ | |||
+ | |||
+ | <wrap em> | ||
+ | For an explanation of how the sensor works and how we implemented it in our Air quality device please follow this link [[amc2022: | ||
+ | |||
+ | </ | ||
==== 3.3 MQTT Database and WiFi Connection ==== | ==== 3.3 MQTT Database and WiFi Connection ==== | ||
+ | |||
+ | In other to connect ESP32 to the MQTT Broker, the ESP32 must be connected to the internet. Since ESP32 supports wifi, it could easily be connected to the local wifi by writing some lines of code on the Arduino IDE. | ||
+ | |||
To start we use the ESP-32 micro-controller that has very important features, WiFi capabilities to transmit information digitally over any network connection which almost everyone has access to in their houses or workplaces. Additionally, | To start we use the ESP-32 micro-controller that has very important features, WiFi capabilities to transmit information digitally over any network connection which almost everyone has access to in their houses or workplaces. Additionally, | ||
Line 83: | Line 106: | ||
| **//Figure 3//** setup on node-red showing data from mqtt being stored in a data base (influxdb)| | | **//Figure 3//** setup on node-red showing data from mqtt being stored in a data base (influxdb)| | ||
- | ==== code and explanation ==== | ||
- | ==== Wifi Connection ==== | ||
- | |||
- | In other to connect ESP32 to the MQTT Broker, the ESP32 must be connected to the internet. Since ESP32 supports wifi, it could easily be connected to the local wifi by writing some lines of code on the Arduino IDE. | ||
Line 126: | Line 145: | ||
+ | <wrap em> | ||
Description and Results can be found on this [[link]]. | Description and Results can be found on this [[link]]. | ||
+ | </ | ||
==== 3.5 Deep Sleep Mode and Power Saving ==== | ==== 3.5 Deep Sleep Mode and Power Saving ==== | ||
Line 142: | Line 161: | ||
* Hibernation | * Hibernation | ||
* Deep-Sleep | * Deep-Sleep | ||
+ | |||
+ | <wrap em> | ||
The specifications for the power consumption of each of the Sleep modes can be found on this [[datasheet]]. | The specifications for the power consumption of each of the Sleep modes can be found on this [[datasheet]]. | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
For the purposes of this project we have selected Deep-Sleep mode. In it only the Real Time Clock **(RTC)** module, which keeps track of time and date in the absence of an external power supply, and the Ultra-Light Co-processor **(ULP)** module which purpose is to perform readings through the __ADC__ and __I2C__ pins, remain active while the main processor is in Deep-Sleep mode as shown in Figure 5. | For the purposes of this project we have selected Deep-Sleep mode. In it only the Real Time Clock **(RTC)** module, which keeps track of time and date in the absence of an external power supply, and the Ultra-Light Co-processor **(ULP)** module which purpose is to perform readings through the __ADC__ and __I2C__ pins, remain active while the main processor is in Deep-Sleep mode as shown in Figure 5. | ||
Line 161: | Line 186: | ||
+ | <wrap em> | ||
Complete description of the set-up procedure can be found [[here]]. | Complete description of the set-up procedure can be found [[here]]. | ||
+ | </ | ||
- | |||
- | |||
- | The specifications for the power consumption of each of the Sleep modes can be found on this [[datasheet]]. | ||
Line 174: | Line 198: | ||
=====4. Materials===== | =====4. Materials===== | ||
+ | <WRAP center round tip 60%> | ||
+ | |||
- [[ESP 32]] | - [[ESP 32]] | ||
Line 179: | Line 205: | ||
- [[DHT22 HUMIDITY & TEMPERATURE SENSOR]] | - [[DHT22 HUMIDITY & TEMPERATURE SENSOR]] | ||
| | ||
+ | </ | ||
+ | |||
===== 5 Codes and explanation ===== | ===== 5 Codes and explanation ===== | ||
<code c++> | <code c++> | ||
Line 301: | Line 329: | ||
# | # | ||
# | # | ||
- | # | + | # |
- | # | + | # |
//are to be done using non linear curve equations | //are to be done using non linear curve equations | ||
Line 531: | Line 559: | ||
/ | / | ||
- | /****** The mqtt client calls a callback method on seperate | + | /****** The mqtt client calls a callback method on separate |
void callback(char *topic, byte *payload, unsigned int length) { | void callback(char *topic, byte *payload, unsigned int length) { | ||
Line 601: | Line 629: | ||
| | ||
| | ||
- | | + | |
- | The Rs changes as the sensor is in the different | + | The Rs changes as the sensor is in the different |
gas. The sample times and the time interval between samples could be configured | gas. The sample times and the time interval between samples could be configured | ||
by changing the definition of the macros. | by changing the definition of the macros. | ||
Line 683: | Line 711: | ||
=== Serialboard === | === Serialboard === | ||
- | ^{{ : | + | ^ {{ : |
- | |// | + | | // |
=== Grafana === | === Grafana === | ||
- | ^{{ : | + | ^ {{ : |
- | |// | + | | // |
Line 704: | Line 732: | ||
=====7. Conclusion===== | =====7. Conclusion===== | ||
+ | |||
+ | Using a low cost Arduino Kit and integrating the ESP32 micro controller, we were able to accomplish three tasks. The first was to measure different Air Quality parameters such as temperature, | ||
+ | Secondly we were able to transmit data using a publish-subscribe broker. By using MQTT we were able to create topics that contained the data received by the Arduino sensors, later with the help of the Node Red software, we created a flow chart in which the data input from the topic and utilizing the JSON format, was sent to Grafana where the data was ultimately transformed visually for easy interpretation. We decided to keep one topic containing all the data, because the idea is to have multiple Air Quality devices running simultaneously but each having its own independent topic. That would help us identify easier any issues with any of the devices. | ||
+ | Lastly we successfully operated the device using a 9V battery and integrated the following components and features for improved performance: | ||
+ | A linear voltage regulator that lowered the voltage to within the 5V usability of the ESP32 micro controller. | ||
+ | A voltage divider that allowed us to measure the battery' | ||
+ | And ESP32' | ||
+ | However, we found that the 9V battery was not the best option for this project, but we kept it because it made us integrate components and features that we would not have otherwise thought about using if we have had a more robust and capable battery. | ||
+ | |||
+ | We thus demonstrate that devices with the purpose of monitoring air quality can be built easily and cheaply. In addition, we explained the steps taken by us in this project and expanded on how the components work. We hope that his work can help inspire new students and hobbyists in their pursue of producing devices that have the following characteristics: | ||
+ | * Collection of data | ||
+ | * Programming software | ||
+ | * Transmission of data and usage of brokers | ||
+ | * Electronics | ||
+ | * Reporting through wikis | ||
+ | * FUN! | ||
Line 724: | Line 768: | ||
- | =====11. References===== | + | =====10. References===== |
Measuring the Temperature, | Measuring the Temperature, |
amc2022/grouph/start.1662607639.txt.gz · Last modified: 2023/01/05 14:38 (external edit)