Skip to content

Commit

Permalink
ESP32 syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PaintYourDragon committed Oct 20, 2022
1 parent 6eca162 commit aad03ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/tlc59711test/tlc59711test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void rainbow(uint8_t wait) {

for(j=0; j<65535; j+=10) {
for(i=0; i<4*NUM_TLC59711; i++) {
Wheel(i, i+j & 65535);
Wheel(i, (i+j) & 65535);
}
tlc.write();
delay(wait);
Expand Down

0 comments on commit aad03ab

Please sign in to comment.