From aad03ab9fd138d45eedb9e381185d37c0b11a4a0 Mon Sep 17 00:00:00 2001 From: Phillip Burgess Date: Thu, 20 Oct 2022 14:10:13 -0700 Subject: [PATCH] ESP32 syntax fix --- examples/tlc59711test/tlc59711test.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tlc59711test/tlc59711test.ino b/examples/tlc59711test/tlc59711test.ino index 0dbbf5f..7207033 100644 --- a/examples/tlc59711test/tlc59711test.ino +++ b/examples/tlc59711test/tlc59711test.ino @@ -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);