This file contains hidden or 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
#include <Adafruit_TiCoServo.h> | |
#include <SPI.h> | |
#include <Adafruit_VS1053.h> | |
#include <SD.h> | |
int16_t servoHeadMin = 0; | |
int16_t servoHeadMax = 90; | |
int16_t servoHeadIntervalMin = 2000; | |
int16_t servoHeadIntervalMax = 6000; | |
long servoHeadActivate = 0; |
This file contains hidden or 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 | |
// Designed for Game Frame | |
// http://www.ledseq.com | |
#include <FastLED.h> | |
// LED setup | |
#define kMatrixWidth 16 | |
#define kMatrixHeight 16 | |
#define DATA_PIN 2 |