Skip to content

Commit 5ca3c24

Browse files
committed
Eliminate extra white space
1 parent 424e3fd commit 5ca3c24

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Diff for: examples/Standby_WakeFromRTC_C33/Standby_WakeFromRTC_C33.ino

-3
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,13 @@ void blinkLed(int ledPin, int delayTime = 1000){
1414
}
1515

1616
void setup() {
17-
18-
1917
pinMode(LEDR, OUTPUT); // Used to indicate errors
2018
digitalWrite(LEDR, HIGH); // Turn off the red LED
2119
pinMode(LED_BUILTIN, OUTPUT);
2220
digitalWrite(LED_BUILTIN, LOW); // Turn on the built-in LED
2321
delay(1000);
2422
digitalWrite(LED_BUILTIN, HIGH); // Turn off the built-in LED
2523
pinMode(LEDB, OUTPUT); // Used to indicate that the board is awake
26-
2724

2825
if(!board.begin()){
2926
while (true){

Diff for: examples/Standby_WakeFromRTC_H7/Standby_WakeFromRTC_H7.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ void setup() {
6868
}
6969

7070
delay(10000); // keep the board awake for 10 seconds, so we can se it working
71-
7271
board.shutDownFuelGauge();
72+
7373
// The LED should go off when the board goes to sleep
7474
board.setAllPeripheralsPower(false);
7575

0 commit comments

Comments
 (0)