We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7204c commit d67fa53Copy full SHA for d67fa53
libraries/esp8266/examples/SigmaDeltaDemo/SigmaDeltaDemo.ino
@@ -27,12 +27,12 @@ void loop() {
27
28
Serial.println("dimming builtin led...\n");
29
for (iRepeat = 0; iRepeat < 10; iRepeat++) {
30
- for (duty=0; duty < 255; duty = duty + 5) {
+ for (duty = 0; duty < 255; duty = duty + 5) {
31
sigmaDeltaWrite(0, duty);
32
delay(10);
33
}
34
35
- for (duty= 255; duty > 0; duty = duty - 5) {
+ for (duty = 255; duty > 0; duty = duty - 5) {
36
37
38
0 commit comments