You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[`LowPower`](#class_low_power_1a096a38a40767b27b681330a514fd4e48)| Constructor for [LowPower](#class_low_power) class. Initializes the low power and sleep configurations. |
|[`sleep`](#class_low_power_1a351563f87f8d1f118e9d77201fd59a55)| Puts the device into a standard sleep mode. The device can be woken up by predefined interrupts or conditions. |
20
-
|[`deepSleep`](#class_low_power_1ada3410c10d04970e0898eb5f7f36ce55)| Puts the device into a deep sleep mode. The device consumes the least power in this mode but requires specific conditions to wake up. |
21
-
|[`enableWakeupFromPin`](#class_low_power_1a9ee83fbc2b670ac9490cd179b2e08138)| Enables wake-up of the device from a specified pin. |
18
+
|[`sleep`](#class_low_power_1a351563f87f8d1f118e9d77201fd59a55)| Puts the device into a standard sleep mode. This sleep mode consumes less power than the active mode but more than the deep sleep mode. The device will resume execution from the point where it entered the sleep mode. |
19
+
|[`deepSleep`](#class_low_power_1ada3410c10d04970e0898eb5f7f36ce55)| Puts the device into a deep sleep mode. The device consumes the least power in this mode but will reset when it wakes up effectively running the setup() function again. |
20
+
|[`enableWakeupFromPin`](#class_low_power_1a9ee83fbc2b670ac9490cd179b2e08138)| Enables wake-up of the device from a specified pin (A0, A1, A2, A3, A4, A5, D4, D7 ) |
22
21
|[`enableWakeupFromRTC`](#class_low_power_1a91d86cab239a56506bf15e9d2139c097)| Enables wake-up of the device based on the Real-Time Clock (RTC). |
23
22
24
23
## Members
@@ -32,21 +31,13 @@ public LowPower()
32
31
Constructor for [LowPower](#class_low_power) class. Initializes the low power and sleep configurations.
Puts the device into a standard sleep mode. The device can be woken up by predefined interrupts or conditions.
40
+
Puts the device into a standard sleep mode. This sleep mode consumes less power than the active mode but more than the deep sleep mode. The device will resume execution from the point where it entered the sleep mode.
@@ -55,7 +46,7 @@ Puts the device into a standard sleep mode. The device can be woken up by predef
55
46
public voiddeepSleep()
56
47
```
57
48
58
-
Puts the device into a deep sleep mode. The device consumes the least power in this mode but requires specific conditions to wake up.
49
+
Puts the device into a deep sleep mode. The device consumes the least power in this mode but will reset when it wakes up effectively running the setup() function again.
0 commit comments