Skip to content

Commit 64aec3a

Browse files
committed
More format reversions
1 parent bcf0e7b commit 64aec3a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

libraries/Ticker/examples/Blinker/Blinker.ino

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ void toggle() {
2323
if (isBlinking) {
2424
blinker.detach();
2525
isBlinking = false;
26-
} else {
26+
}
27+
else {
2728
blinker.attach(blinkerPace, blink);
2829
isBlinking = true;
2930
}
@@ -37,5 +38,5 @@ void setup() {
3738
}
3839

3940
void loop() {
40-
41+
4142
}

libraries/Ticker/src/Ticker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class Ticker
123123
void detach();
124124
bool active() const;
125125

126-
protected:
126+
protected:
127127
static void _static_callback(void* arg);
128128

129129
callback_function_t _callback_function = nullptr;

0 commit comments

Comments
 (0)