Improvement: The "Basic usage" Page of FastLED Github site has an typo in example:

Improvement: The “Basic usage” Page of FastLED Github site has an typo in example: “Changing an led”

void loop() {
// Turn the first led red for 1 second
leds[0] = CRGB::Red;
FastLED.show();
delay(1000);
// Set the first led back to black for 1 second

leds[0] = CRGB::Black;
FastLED.show();
delay(1000:
}

The last two lines should be:

delay(1000);
}

Best regards
Kris

Thanks, fixed! (In the future, site and code related bug reports should go through the github issue tracker - vs. general questions/support/troubleshooting/showing off what you do, etc… which is here :slight_smile:

Hey Daniel,

wow you are very quick :wink:

Okay, sorry, the next time I will post that directly at github!

I’m just learning at the moment and especially read the FastLED site very carefully :wink: Great Work!

Just struggling with some code, but it`s very very basic (so I think :wink: )

Best regards and thank you very much!

Kris