Skip to content

Instantly share code, notes, and snippets.

View icodethings's full-sized avatar
🤖

Matthew Vandenbossche icodethings

🤖
View GitHub Profile
@StefanPetrick
StefanPetrick / circular_matrix.ino
Last active March 25, 2024 04:07
A 2d matrix mapped onto a circular led setup
/*
* A FastLED example showing how to
* map a virtual 2d matrix onto a circular led setup
*
* limitations: works so far only up to 255 leds
*
* written by Stefan Petrick 2016
*/
#include "FastLED.h"
@kriegsman
kriegsman / MarqueeOverlay.ino
Created August 20, 2015 21:40
MarqueeOverlay - render marquee-like effects on segments of a display (for YUM cart, Burning Man 2015)
#include "FastLED.h"
// MarqueeOverlay
//
// Code to overlay a 'marquee' effect on top
// of other animations, e.g. to highlight individual
// letters of a sign one after another, while
// still allowing the underlying animations to show through.
//
// Initially designed for the "YUM cart" for Burning Man 2015.