Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void flicker() {
- for (int i = 0; i < 100; i++) {
- if (random(2) == 1) {
- //set the colors here
- FastLED.show();
- } else {
- FastLED.clear();
- FastLED.show();
- }
- delay(random(100));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement