amc2020:group_n:deepsleep
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
amc2020:group_n:deepsleep [2020/07/27 17:11] – [Setup of the DS3231 with the ESP32] jonas001 | amc2020:group_n:deepsleep [2023/01/05 14:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | < | ||
+ | < | ||
+ | <a href=" | ||
+ | <span style=" | ||
+ | ↩ Back to the main page | ||
+ | </ | ||
+ | </a> | ||
+ | </ | ||
+ | </ | ||
+ | |||
====== ESP32 Deep Sleep Mode ====== | ====== ESP32 Deep Sleep Mode ====== | ||
+ | |||
+ | ===== 1. About ESP32 Deep Sleep ===== | ||
In this project the ESP32 is idle for more than 95% of the time because it is supposed to take measurements only once an hour, transmit the data and wait again. However, the ESP32 has the possibility to be run in different power modes. Besides the active mode where all peripherals are powered, there are also the modem-sleep mode, light-sleep mode, deep-sleep mode, hibernation mode and power-off mode. | In this project the ESP32 is idle for more than 95% of the time because it is supposed to take measurements only once an hour, transmit the data and wait again. However, the ESP32 has the possibility to be run in different power modes. Besides the active mode where all peripherals are powered, there are also the modem-sleep mode, light-sleep mode, deep-sleep mode, hibernation mode and power-off mode. | ||
Line 9: | Line 21: | ||
- | ===== Setup of the DS3231 with the ESP32 ===== | + | ===== 2. Setup of the DS3231 with the ESP32 ===== |
As the DS3231 is an open drain device, the SQW pin connected to one of the RTC_GPIO pins needs to be pulled to high voltage using a pullup resistor. In the case of the Arduino UNO sketch, the Arduino' | As the DS3231 is an open drain device, the SQW pin connected to one of the RTC_GPIO pins needs to be pulled to high voltage using a pullup resistor. In the case of the Arduino UNO sketch, the Arduino' | ||
Line 25: | Line 37: | ||
|**//Figure 2//** Setup of DS3231 and ESP32.| | |**//Figure 2//** Setup of DS3231 and ESP32.| | ||
+ | ===== 3. Programming ===== | ||
+ | |||
+ | After setting up the module with the ESP32, the programming for the deep sleep is very simple. For the following test, the DS3231 was programmed to trigger an interrupt once a minute, i.e. the setting was changed to < | ||
+ | |||
+ | ==== 3.1 Code ==== | ||
+ | |||
+ | <file c++ ESP32_DS3231_Deep_Sleep_test.ino> | ||
+ | //ESP32 DS3231 Deep Sleep Test | ||
+ | |||
+ | #include < | ||
+ | #define DS3231RTC_I2C_ADDRESS 0x68 | ||
+ | #define I2C_SDA 21 //1 | ||
+ | #define I2C_SCL 22 | ||
+ | |||
+ | void clearAlarm1(){ | ||
+ | Wire.beginTransmission(DS3231RTC_I2C_ADDRESS); | ||
+ | Wire.write(0x0F); | ||
+ | Wire.write(B00000000); | ||
+ | Wire.endTransmission(); | ||
+ | } | ||
+ | |||
+ | void setup() { | ||
+ | Wire.begin(I2C_SDA, | ||
+ | clearAlarm1(); | ||
+ | Serial.begin(115200); | ||
+ | delay(1000); | ||
+ | Serial.println(" | ||
+ | for(int i=3; | ||
+ | Serial.print(" | ||
+ | Serial.println(i); | ||
+ | delay(1000); | ||
+ | } | ||
+ | esp_sleep_enable_ext0_wakeup(GPIO_NUM_13, | ||
+ | esp_deep_sleep_start(); | ||
+ | Serial.println(" | ||
+ | } | ||
+ | |||
+ | void loop() { | ||
+ | //This is not going to be called. | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ==== 3.2 The Code Explained ==== | ||
+ | |||
+ | < | ||
+ | <ol> | ||
+ | <li> | ||
+ | After including the < | ||
+ | </li> | ||
+ | <li> | ||
+ | The function < | ||
+ | </li> | ||
+ | <br> | ||
+ | <li> | ||
+ | When using the < | ||
+ | </li> | ||
+ | <li> | ||
+ | After waking up, the alarm flag 1 of the DS3231' | ||
+ | </li> | ||
+ | <li> | ||
+ | The serial connection is started to test whether the sketch is working. After waking up, the ESP32 prints some data to the monitor. Then a counter is counting down from 3 to 0 and the ESP32 goes back into deep sleep. | ||
+ | </li> | ||
+ | <li> | ||
+ | The function < | ||
+ | </li> | ||
+ | <li> | ||
+ | The function < | ||
+ | </li> | ||
+ | <li> | ||
+ | When the deep sleep is activated, the rest of the program code is just not executed. After resetting, the ESP32 starts again with the < | ||
+ | </li> | ||
+ | </ol> | ||
+ | </ | ||
+ | |||
+ | ==== 3.3 Results ==== | ||
+ | |||
+ | Apart from the timestamps on the left, the result in the serial monitor should look like this. In the data that the ESP32 prints by itself, it can be seen that the reset occured due to waking up from deep sleep (1). Furthermore, | ||
+ | |||
+ | When comparing the time stamps (1, 3 and 4) it becomes visible that the wake up from deep sleep occurred always 1 minute after the last wake up. However, the milliseconds are always varying a little bit. This might be due to the temperature compensation of the DS3231 through which the capacitance and therefore the frequency of the oscillator are changed. So, there might be very small inaccuracies, | ||
+ | |||
+ | < | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | 18: | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <a href=" | ||
+ | <span style=" | ||
+ | Back to the top ⤴ | ||
+ | </ | ||
+ | </a> | ||
+ | </ | ||
+ | </ | ||
+ | </ |
amc2020/group_n/deepsleep.1595862665.txt.gz · Last modified: 2023/01/05 14:38 (external edit)