|
| 1 | +/* |
| 2 | + * This sketch tests the deep sleep functionality of the ESP32 |
| 3 | + */ |
| 4 | + |
| 5 | +#include <Arduino.h> |
| 6 | + |
| 7 | +// Timer |
| 8 | +#define uS_TO_S_FACTOR 1000000ULL /* Conversion factor for micro seconds to seconds */ |
| 9 | +#define TIME_TO_SLEEP 5 /* Time ESP32 will go to sleep (in seconds) */ |
| 10 | + |
| 11 | +// Touchpad |
| 12 | +#if CONFIG_IDF_TARGET_ESP32 |
| 13 | +#define THRESHOLD 1000 /* Greater the value, more the sensitivity */ |
| 14 | +#else |
| 15 | +#define THRESHOLD 0 /* Lower the value, more the sensitivity */ |
| 16 | +#endif |
| 17 | + |
| 18 | +// External wakeup |
| 19 | +#define BUTTON_PIN_BITMASK(GPIO) (1ULL << GPIO) // 2 ^ GPIO_NUMBER in hex |
| 20 | +#define WAKEUP_GPIO GPIO_NUM_33 // Only RTC IO are allowed - ESP32 Pin example |
| 21 | + |
| 22 | +RTC_DATA_ATTR int bootCount = 0; |
| 23 | + |
| 24 | +void print_wakeup_reason() { |
| 25 | + esp_sleep_wakeup_cause_t wakeup_reason; |
| 26 | + |
| 27 | + wakeup_reason = esp_sleep_get_wakeup_cause(); |
| 28 | + |
| 29 | + Serial.print("Wakeup reason: "); |
| 30 | + |
| 31 | + switch (wakeup_reason) { |
| 32 | + case ESP_SLEEP_WAKEUP_EXT0: Serial.println("rtc_io"); break; |
| 33 | + case ESP_SLEEP_WAKEUP_EXT1: Serial.println("rtc_cntl"); break; |
| 34 | + case ESP_SLEEP_WAKEUP_TIMER: Serial.println("timer"); break; |
| 35 | + case ESP_SLEEP_WAKEUP_TOUCHPAD: Serial.println("touchpad"); break; |
| 36 | + case ESP_SLEEP_WAKEUP_ULP: Serial.println("ulp"); break; |
| 37 | + default: Serial.println("power_up"); break; |
| 38 | + } |
| 39 | +} |
| 40 | + |
| 41 | +void setup_timer() { |
| 42 | + esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR); |
| 43 | +} |
| 44 | + |
| 45 | +void setup_touchpad() { |
| 46 | + #if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3 |
| 47 | + touchSleepWakeUpEnable(T1, THRESHOLD); |
| 48 | + #else |
| 49 | + esp_sleep_enable_timer_wakeup(10); |
| 50 | + #endif |
| 51 | +} |
| 52 | + |
| 53 | +void setup_rtc_io() { |
| 54 | + #if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3 |
| 55 | + esp_sleep_enable_ext0_wakeup(WAKEUP_GPIO, 1); |
| 56 | + rtc_gpio_pullup_en(WAKEUP_GPIO); |
| 57 | + rtc_gpio_pulldown_dis(WAKEUP_GPIO); |
| 58 | + #else |
| 59 | + esp_sleep_enable_timer_wakeup(10); |
| 60 | + #endif |
| 61 | +} |
| 62 | + |
| 63 | +void setup_rtc_cntl() { |
| 64 | + #if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3 |
| 65 | + esp_sleep_enable_ext1_wakeup_io(BUTTON_PIN_BITMASK(WAKEUP_GPIO), ESP_EXT1_WAKEUP_ANY_HIGH); |
| 66 | + rtc_gpio_pulldown_dis(WAKEUP_GPIO); |
| 67 | + rtc_gpio_pullup_en(WAKEUP_GPIO); |
| 68 | + #else |
| 69 | + esp_sleep_enable_timer_wakeup(10); |
| 70 | + #endif |
| 71 | +} |
| 72 | + |
| 73 | + |
| 74 | + |
| 75 | +void setup() { |
| 76 | + Serial.begin(115200); |
| 77 | + while (!Serial) { |
| 78 | + delay(10); |
| 79 | + } |
| 80 | + |
| 81 | + //Increment boot number and print it every reboot |
| 82 | + ++bootCount; |
| 83 | + Serial.println("Boot number: " + String(bootCount)); |
| 84 | + |
| 85 | + //Print the wakeup reason for ESP32 |
| 86 | + print_wakeup_reason(); |
| 87 | + Serial.flush(); |
| 88 | + |
| 89 | + if (bootCount == 1) { |
| 90 | + // Timer |
| 91 | + setup_timer(); |
| 92 | + } else if (bootCount == 2) { |
| 93 | + // Touchpad |
| 94 | + setup_touchpad(); |
| 95 | + } else if (bootCount == 3) { |
| 96 | + // rtc_io |
| 97 | + setup_rtc_io(); |
| 98 | + } else if (bootCount == 4) { |
| 99 | + // rtc_cntl |
| 100 | + setup_rtc_cntl(); |
| 101 | + } |
| 102 | + else { |
| 103 | + return; |
| 104 | + } |
| 105 | + |
| 106 | + esp_deep_sleep_start(); |
| 107 | + Serial.println("This will never be printed"); |
| 108 | + |
| 109 | +} |
| 110 | + |
| 111 | +void loop() { |
| 112 | + //This is not going to be called |
| 113 | +} |
0 commit comments