• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

image/11-Mar-2024-

main/11-Mar-2024-10361

CMakeLists.txtD11-Mar-2024248 75

MakefileD11-Mar-2024190 92

README.mdD11-Mar-20242.9 KiB7244

example_test.pyD11-Mar-20241.9 KiB5938

sdkconfig.defaultsD11-Mar-202435 21

README.md

1# Light Sleep Example
2
3(See the README.md file in the upper level 'examples' directory for more information about examples.)
4
5This example illustrates usage of light sleep mode. Unlike deep sleep mode, light sleep preserves the state of the memory, CPU, and peripherals. Execution of code on both CPUs is stopped when `esp_light_sleep_start()` function is called. When the chip exits light sleep mode, execution continues at the point where it was stopped, and `esp_light_sleep_start()` function returns.
6
7The example enables the following wakeup sources:
8
9- Timer: wake up the chip in 2 seconds
10- EXT0: wake up the chip if a button attached to GPIO0 is pressed (i.e. if GPIO0 goes low)
11
12The example also prints time spent in light sleep mode to illustrate that timekeeping continues while the chip is in light sleep.
13
14## How to Use Example
15
16### Hardware Required
17
18This example can be used with any ESP32 development board. Most boards have a button attached to GPIO0, often labelled `BOOT`. If the board does not have such button, an external button can be connected, along with a 10k pull-up resistor, and a 100nF capacitor to ground for debouncing.
19
20### Configure the project
21
22```
23idf.py menuconfig
24```
25
26### Build and Flash
27
28Build the project and flash it to the board, then run monitor tool to view serial output:
29
30```
31idf.py -p PORT flash monitor
32```
33
34(Replace PORT with the name of the serial port to use.)
35
36(To exit the serial monitor, type ``Ctrl-]``.)
37
38See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.
39
40## Example Output
41
42```
43Entering light sleep
44Returned from light sleep, reason: timer, t=2014 ms, slept for 2000 ms
45Entering light sleep
46Returned from light sleep, reason: timer, t=4023 ms, slept for 2000 ms
47Entering light sleep
48Returned from light sleep, reason: pin, t=5297 ms, slept for 1266 ms
49Waiting for GPIO0 to go high...
50Entering light sleep
51Returned from light sleep, reason: timer, t=10072 ms, slept for 2000 ms
52Entering light sleep
53Returned from light sleep, reason: timer, t=12080 ms, slept for 2000 ms
54Entering light sleep
55```
56
57In the scenario above, the button attached to GPIO0 was pressed and held for about 3 seconds, after the 2nd wakeup from light sleep. The program has indicated the wakeup reason after each sleep iteration.
58
59## Current Consumption
60
61In this example, current consumption in light sleep mode is in the range of 0.8 — 1.1 mA. Current consumption in active mode is 28 — 32 mA. Average current consumption is 1.1 - 1.3 mA.
62
63![Current consumption overview graph](image/light_sleep_scope.png)
64
65![Current consumption in active mode](image/light_sleep_scope_zoom.png)
66
67
68## Troubleshooting
69
70If pressing the button attached to GPIO0 does not affect program behavior, check DTR/RTS configuration in the serial monitor. This is not necessary for IDF monitor, but for other tools it might be necessary to set DTR and RTS line state to "disabled" or "de-asserted".
71
72