Skip to content

Commit b26b77c

Browse files
committed
Rename examples
1 parent 241f5e9 commit b26b77c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

examples/Standby_Example/Standby_Example.ino renamed to examples/Standby/Standby.ino

+3-4
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,12 @@ void setup() {
121121
#endif
122122

123123
#if defined CORE_CM7
124-
LowPower.standbyM7(LowPowerStandbyType::untilPinActivity | LowPowerStandbyType::untilTimeElapsed, 2_s);
124+
LowPower.standbyM7(LowPowerStandbyType::untilPinActivity | LowPowerStandbyType::untilTimeElapsed, 10_s);
125125
// The following is an alternative way to go into standby for 10 seconds
126-
// LowPower.standbyM7(LowPowerStandbyType::untilTimeElapsed, RTCWakeupDelay(0, 0, 10));
126+
// LowPower.standbyM7(LowPowerStandbyType::untilTimeElapsed, RTCWakeupDelay(0, 0, 10));
127127
#else
128128
LowPower.standbyM4();
129129
#endif
130130
}
131131

132-
void loop() {
133-
}
132+
void loop() {}

0 commit comments

Comments
 (0)