Skip to content

Instantly share code, notes, and snippets.

View jacobrossi's full-sized avatar

Jacob Rossi jacobrossi

View GitHub Profile
@kriegsman
kriegsman / SmartMatrixSwirl.ino
Created November 13, 2014 03:15
SmartMatrix + FastLED v3.1 demo
#include <SmartMatrix.h>
#include <FastLED.h>
const uint8_t kMatrixWidth = 32;
const uint8_t kMatrixHeight = 32;
const uint8_t kBorderWidth = 2;
#define NUM_LEDS (kMatrixWidth*kMatrixHeight)
CRGB leds[NUM_LEDS];