This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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 | |
* |