Skip to content

Commit d67fa53

Browse files
another attempt for travis style_check
1 parent ab7204c commit d67fa53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/esp8266/examples/SigmaDeltaDemo/SigmaDeltaDemo.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ void loop() {
2727

2828
Serial.println("dimming builtin led...\n");
2929
for (iRepeat = 0; iRepeat < 10; iRepeat++) {
30-
for (duty=0; duty < 255; duty = duty + 5) {
30+
for (duty = 0; duty < 255; duty = duty + 5) {
3131
sigmaDeltaWrite(0, duty);
3232
delay(10);
3333
}
3434

35-
for (duty= 255; duty > 0; duty = duty - 5) {
35+
for (duty = 255; duty > 0; duty = duty - 5) {
3636
sigmaDeltaWrite(0, duty);
3737
delay(10);
3838
}

0 commit comments

Comments
 (0)