mirror of
https://github.com/processing/processing4.git
synced 2026-04-21 03:34:24 +02:00
I/O: Comment fix
This commit is contained in:
@@ -19,7 +19,7 @@ void setup() {
|
||||
}
|
||||
|
||||
void draw() {
|
||||
// make the leds count in binary
|
||||
// make the LEDs count in binary
|
||||
for (int i=0; i < leds.length; i++) {
|
||||
if ((frameCount & (1 << i)) != 0) {
|
||||
leds[i].set(1.0);
|
||||
|
||||
Reference in New Issue
Block a user