Skip to content

Commit

Permalink
garland: fix Stars animation with more than 255 leds
Browse files Browse the repository at this point in the history
  • Loading branch information
ElderJoy authored and mcspr committed Feb 26, 2021
1 parent 7434ea3 commit 660ae13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/espurna/garland/animations/anim_stars.h
Expand Up @@ -23,7 +23,7 @@ class AnimStars : public Anim {
}

void Run() override {
for (byte i = 0; i < numLeds; i++) {
for (int i = 0; i < numLeds; i++) {
byte phi = seq[i];
if (phi < 254) {
Color col = ledstmp[i];
Expand Down

0 comments on commit 660ae13

Please sign in to comment.