Skip to content

Instantly share code, notes, and snippets.

View Jerware's full-sized avatar

Jeremy Williams Jerware

View GitHub Profile
#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;
@Jerware
Jerware / matrixEffect.ino
Last active January 16, 2022 19:15
Matrix LED Effect using FastLED
// 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