Skip to content

Instantly share code, notes, and snippets.

View mrrees's full-sized avatar

Chris Rees mrrees

View GitHub Profile
@mrrees
mrrees / matrixEffect.ino
Last active October 21, 2018 03:14 — forked from Jerware/matrixEffect.ino
Matrix LED Effect using FastLED
// Matrix effect by Jeremy Williams Modified by crees for use with multiple 8x8 tiles and columns
// Designed for Game Frame
// http://www.ledseq.com
#include <FastLED.h>
// LED setup
#define kMatrixWidth 16 // add all tiles pixels H & V
#define kMatrixHeight 32
#define DATA_PIN 2 // First Pixel Pin 2 on Teensy 3.2
/*
* Ethernet_FastLED.ino - Simple sketch to listen for E1.31 data on an
* UNO Ethernet shield and drive WS2811 LEDs.
*
* == Requires FastLED - http://github.com/FastLED/FastLED
*
* Project: E131 - E.131 (sACN) library for Arduino
* Copyright (c) 2015 Shelby Merrick
* http://www.forkineye.com
*