Skip to content

Commit 6254475

Browse files
committed
Fixed some more typos
1 parent 41096d9 commit 6254475

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

examples/Inkplate6COLOR/Advanced/DeepSleep/Inkplate6COLOR_RTC_Alarm_With_Deep_Sleep/Inkplate6COLOR_RTC_Alarm_With_Deep_Sleep.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ void setup()
4848
// Enable wakup from deep sleep on gpio 39 where RTC interrupt is connected
4949
esp_sleep_enable_ext0_wakeup(GPIO_NUM_39, 0);
5050

51-
52-
5351
// Start deep sleep (this function does not return). Program stops here.
5452
esp_deep_sleep_start();
5553
}

examples/Inkplate6COLOR/Advanced/DeepSleep/Inkplate6COLOR_Wake_Up_Button/Inkplate6COLOR_Wake_Up_Button.ino

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ void setup()
4747
// Enable wakeup from deep sleep on gpio 36 (wake button)
4848
esp_sleep_enable_ext0_wakeup(GPIO_NUM_36, 0);
4949

50-
51-
5250
// Start deep sleep (this function does not return). Program stops here.
5351
esp_deep_sleep_start();
5452
}

examples/Inkplate6COLOR/Advanced/DeepSleep/Inkplate6COLOR_Wake_Up_On_Touchpads/Inkplate6COLOR_Wake_Up_On_Touchpads.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ void setup()
5555
esp_sleep_enable_timer_wakeup(TIME_TO_SLEEP * uS_TO_S_FACTOR);
5656
esp_sleep_enable_ext0_wakeup(GPIO_NUM_34, LOW);
5757

58-
// Go to sleep
59-
60-
6158
// Start deep sleep (this function does not return). Program stops here.
6259
esp_deep_sleep_start();
6360
}

0 commit comments

Comments
 (0)