Skip to content

Commit e4a97e9

Browse files
committed
fixed closing bracket
1 parent 7b526c8 commit e4a97e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CUBE/CUBE.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ void loop() {
8282
uint64_t currentTime = millis();
8383
randomTimer++;
8484

85-
if (digitalRead(BUTTON_PIN) == LOW || (currentTime - lastEffectChange >= effectDuration && autoRotate) {
85+
if (digitalRead(BUTTON_PIN) == LOW || (currentTime - lastEffectChange >= effectDuration && autoRotate)) {
8686
lastEffectChange = millis();
8787
clearCube();
8888
loading = true;

0 commit comments

Comments
 (0)