Skip to content

Instantly share code, notes, and snippets.

@pchinjr
Created September 11, 2020 02:59
Show Gist options
  • Save pchinjr/894f0f3bdf7283db56d651e1d5ccf559 to your computer and use it in GitHub Desktop.
Save pchinjr/894f0f3bdf7283db56d651e1d5ccf559 to your computer and use it in GitHub Desktop.
void loop() {
int i = 0;
// Put DigDug first frame
for(int passtime = 0; passtime < 50; passtime++) {
FastLED.clear();
for(i; i < NUM_LEDS; i++) {
leds[i] = pgm_read_dword(&(Fire01[i]));
}
FastLED.show();
delay(250);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment