Skip to content

Commit

Permalink
fixed closing bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
thexmanxyz committed Nov 24, 2019
1 parent 7b526c8 commit e4a97e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CUBE/CUBE.ino
Expand Up @@ -82,7 +82,7 @@ void loop() {
uint64_t currentTime = millis();
randomTimer++;

if (digitalRead(BUTTON_PIN) == LOW || (currentTime - lastEffectChange >= effectDuration && autoRotate) {
if (digitalRead(BUTTON_PIN) == LOW || (currentTime - lastEffectChange >= effectDuration && autoRotate)) {
lastEffectChange = millis();
clearCube();
loading = true;
Expand Down

0 comments on commit e4a97e9

Please sign in to comment.