Skip to content

Instantly share code, notes, and snippets.

@focalintent
Created February 17, 2016 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save focalintent/4ba1367b249f31893d9a to your computer and use it in GitHub Desktop.
Save focalintent/4ba1367b249f31893d9a to your computer and use it in GitHub Desktop.
...
// swap b and g for leds 64-92.
for(int i = 64; i < NUM_LEDS; i++) {
uint8_t tmp = leds[i].b;
leds[i].b = leds[i].g;
leds[i].g = tmp;
}
FastLED.show()
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment