amc2022:groupz:start
Differences
This shows you the differences between two versions of the page.
amc2022:groupz:start [2022/09/11 23:12] – [Table] ziad001 | amc2022:groupz:start [2023/01/05 14:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 210: | Line 210: | ||
<code c++> | <code c++> | ||
- | / | ||
* AMC Group Z | * AMC Group Z | ||
* Monitoring Drought Effects | * Monitoring Drought Effects | ||
- | */ | + | |
- | #include < | + | #include < |
- | #include < | + | #include < |
- | #include < | + | #include < |
- | #include < | + | #include < |
- | #include < | + | #include < |
- | DFRobot_DHT11 DHT; | + | DFRobot_DHT11 DHT; //6 |
- | #define AOUT_PIN 36 | + | #define AOUT_PIN 36 //7 |
- | #define DHT11_PIN 14 | + | #define DHT11_PIN 14 //8 |
- | #define EEPROM_BYTES 2 | + | #define EEPROM_BYTES 2 //9 |
- | //#define RestartPin 27 | + | //#define RestartPin 27 //10 |
- | #define uS_TO_S_FACTOR 1000000 | + | #define uS_TO_S_FACTOR 1000000 |
- | #define TIME_TO_SLEEP | + | #define TIME_TO_SLEEP |
- | RTC_DATA_ATTR int bootCount = 0; | + | RTC_DATA_ATTR int bootCount = 0; //12 |
- | Adafruit_MLX90614 mlx = Adafruit_MLX90614(); | + | Adafruit_MLX90614 mlx = Adafruit_MLX90614(); |
- | int dry = 2677; | + | int dry = 2677; //14 |
- | int wet = 977; | + | int wet = 977; //15 |
// WiFi | // WiFi | ||
- | const char *ssid = " | + | const char *ssid = " |
- | const char *password = " | + | const char *password = " |
// MQTT Broker | // MQTT Broker | ||
- | const char *mqtt_broker = " | + | const char *mqtt_broker = " |
- | const char *topic_1 = " | + | const char *topic_1 = " |
- | const char *topic_2 = " | + | const char *topic_2 = " |
- | const char *topic_3 = " | + | const char *topic_3 = " |
- | const char *topic_4 = " | + | const char *topic_4 = " |
- | const char *topic_5 = " | + | const char *topic_5 = " |
- | //const char *topic_down = " | + | |
- | const int mqtt_port = 1883; | + | |
- | WiFiClient espClient; | + | const int mqtt_port = 1883; //24 |
- | PubSubClient client(espClient); | + | |
- | void callback(char *topic, byte *payload, unsigned int length) { | + | WiFiClient espClient; //25 |
- | | + | PubSubClient client(espClient); |
- | | + | |
+ | void callback(char *topic, byte *payload, unsigned int length) { //27 | ||
+ | | ||
+ | | ||
| | ||
- | for (int i = 0; i < length; i++) { | + | for (int i = 0; i < length; i++) { |
| | ||
} | } | ||
Line 265: | Line 264: | ||
} | } | ||
- | void print_wakeup_reason(){ | + | void print_wakeup_reason(){ |
esp_sleep_wakeup_cause_t wakeup_reason; | esp_sleep_wakeup_cause_t wakeup_reason; | ||
Line 276: | Line 275: | ||
} | } | ||
| | ||
- | void setup() { | + | void setup() { //29 |
EEPROM.begin(EEPROM_BYTES); | EEPROM.begin(EEPROM_BYTES); | ||
- | Serial.begin(115200); | + | Serial.begin(115200); |
- | while (!Serial); | + | while (!Serial); |
- | if (!mlx.begin()) { | + | if (!mlx.begin()) { //32 |
Serial.println(" | Serial.println(" | ||
while (1); | while (1); | ||
}; | }; | ||
- | delay(1000); | + | delay(1000); |
| | ||
- | ++bootCount; | + | ++bootCount; |
Serial.println(" | Serial.println(" | ||
- | print_wakeup_reason(); | + | print_wakeup_reason(); |
- | esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); | + | esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); |
Serial.println(" | Serial.println(" | ||
" Seconds" | " Seconds" | ||
- | Serial.println(" | + | Serial.println(" |
delay(1000); | delay(1000); | ||
- | WiFi.begin(ssid, | + | WiFi.begin(ssid, |
- | while (WiFi.status() != WL_CONNECTED) { | + | while (WiFi.status() != WL_CONNECTED) { //39 |
- | delay(1000); | + | delay(1000); |
- | Serial.println(" | + | Serial.println(" |
- | Serial.println(" | + | Serial.println(" |
| | ||
// | // | ||
- | client.setServer(mqtt_broker, | + | client.setServer(mqtt_broker, |
client.setCallback(callback); | client.setCallback(callback); | ||
| | ||
- | while (!client.connected()) { | + | while (!client.connected()) { //42 |
String client_id = " | String client_id = " | ||
client_id += String(WiFi.macAddress()); | client_id += String(WiFi.macAddress()); | ||
Serial.printf(" | Serial.printf(" | ||
| | ||
- | if (client.connect(client_id.c_str())) { | + | if (client.connect(client_id.c_str())) { //43 |
Serial.println(" | Serial.println(" | ||
} | } | ||
- | else { | + | else { //44 |
Serial.print(" | Serial.print(" | ||
Serial.print(client.state()); | Serial.print(client.state()); | ||
Line 325: | Line 324: | ||
} | } | ||
- | void loop() { | + | void loop() { //45 |
- | char soil_moisture_value[3]; | + | char soil_moisture_value[3]; |
char air_temperature[3]; | char air_temperature[3]; | ||
char air_humidity[3]; | char air_humidity[3]; | ||
Line 333: | Line 332: | ||
char ground_temperature[3]; | char ground_temperature[3]; | ||
| | ||
- | int value = analogRead(AOUT_PIN); | + | int value = analogRead(AOUT_PIN); |
- | int percHumidity = map(value, dry, wet, 0, 100); | + | int percHumidity = map(value, dry, wet, 0, 100); //48 |
delay(2000); | delay(2000); | ||
- | if ((percHumidity > -5) && (percHumidity < 105)) { | + | if ((percHumidity > -5) && (percHumidity < 105)) { //49 |
- | | + | |
| | ||
- | dtostrf(percHumidity, | + | dtostrf(percHumidity, |
- | client.publish(topic_1, | + | client.publish(topic_1, |
} | } | ||
delay(2000); | delay(2000); | ||
Line 383: | Line 382: | ||
delay(1000); | delay(1000); | ||
| | ||
- | Serial.flush(); | + | Serial.flush(); |
esp_deep_sleep_start(); | esp_deep_sleep_start(); | ||
Serial.println(" | Serial.println(" | ||
Line 517: | Line 516: | ||
Node-RED is suitable for making data control applications for web applications and [[https:// | Node-RED is suitable for making data control applications for web applications and [[https:// | ||
- | ^ {{ : | + | ^ {{ : |
- | | //**Figure 8**// Setup on Node-RED explaining how the MQTT messages are received and sent to InfluxDB, '' | + | | //**Figure 8**// Setup on Node-RED explaining how the MQTT messages are received and sent to InfluxDB |
Line 552: | Line 551: | ||
The system consists of 3 sensors, ESP32, breadboard, and wires.\\ | The system consists of 3 sensors, ESP32, breadboard, and wires.\\ | ||
{{ : | {{ : | ||
- | **//Figure 9//** [[|Full setup of connections with ESP32 of all sensors involved]], '' | + | **//Figure 9//** [[|Full setup of connections with ESP32 of all sensors involved]], '' |
All the components used are not waterproof, except the capacitive soil moisture sensor from the lower part of the sensor, | All the components used are not waterproof, except the capacitive soil moisture sensor from the lower part of the sensor, | ||
- | ^ {{ : | + | ^ {{ : |
- | |**//Figure 10//** Sensors being covered with protective material | + | | **//Figure 10//** Sensors being covered with protective material, '' |
To connect the DHT11 and the GY-906, we made an 8 inches hole in the bottom of the plastic box using an electric screwdriver to pass the wires to the outside, make them hang from the box, and protect them from the rain.\\ | To connect the DHT11 and the GY-906, we made an 8 inches hole in the bottom of the plastic box using an electric screwdriver to pass the wires to the outside, make them hang from the box, and protect them from the rain.\\ | ||
Taking into consideration that water might be percolating from the bottom sides of the box to the sensors during the rain, or a windy rain that might be spraying water to the sensors, a small plastic food container is attached from the bottom so the sensors can be protected from the sides.\\ | Taking into consideration that water might be percolating from the bottom sides of the box to the sensors during the rain, or a windy rain that might be spraying water to the sensors, a small plastic food container is attached from the bottom so the sensors can be protected from the sides.\\ | ||
- | ^ {{ : | + | ^ {{ : |
- | | **//Figure 11//** First phase of building the box | | + | | **//Figure 11//** First phase of building the box, '' |
We placed the ESP32, wires, and breadboard inside a waterproof plastic box.\\ | We placed the ESP32, wires, and breadboard inside a waterproof plastic box.\\ | ||
To prevent damage to our system when droplets of water enter the box from the sides after a heavy rain, we made four small openings from the bottom of the plastic box so it can drain the water and prevent any accumulation.\\ | To prevent damage to our system when droplets of water enter the box from the sides after a heavy rain, we made four small openings from the bottom of the plastic box so it can drain the water and prevent any accumulation.\\ | ||
The box must be protected from the sun radiation to prevent the high temperature inside it that might affect the battery. For that reason, a small plastic sheet is attached to the top of the box to give shading.\\ | The box must be protected from the sun radiation to prevent the high temperature inside it that might affect the battery. For that reason, a small plastic sheet is attached to the top of the box to give shading.\\ | ||
- | ^ {{ : | + | ^ {{ : |
- | | **//Figure 12//** Second phase of placing the components altogether | + | | **//Figure 12//** Second phase of placing the components altogether, '' |
To place the capacitive soil moisture sensor in the ground at a 50 cm depth, a 1-meter cable is soldered with the sensor and connected to the breadboard.\\ | To place the capacitive soil moisture sensor in the ground at a 50 cm depth, a 1-meter cable is soldered with the sensor and connected to the breadboard.\\ | ||
Line 594: | Line 593: | ||
Powering ESP32 directly with a 9v battery is not recommended [29]. Therefore we need to use a voltage regulator to supply the ESP32 with 5 volts only. Using the Pololu voltage regulator and a voltmeter, we regulated the voltage to 5.39 Volts, as shown in the picture below, so the voltage that was reaching the ESP32 was 5.39 Volts. | Powering ESP32 directly with a 9v battery is not recommended [29]. Therefore we need to use a voltage regulator to supply the ESP32 with 5 volts only. Using the Pololu voltage regulator and a voltmeter, we regulated the voltage to 5.39 Volts, as shown in the picture below, so the voltage that was reaching the ESP32 was 5.39 Volts. | ||
- | ^{{ : | + | ^ {{ : |
- | |//**Figure 14**// Voltage values reaching the ESP32 when connected with a voltage regulator| | + | | //**Figure 14**// Voltage values reaching the ESP32 when connected with a voltage regulator, '' |
amc2022/groupz/start.1662930758.txt.gz · Last modified: 2023/01/05 14:38 (external edit)