Skip to content

Instantly share code, notes, and snippets.

@ChrisWoody
ChrisWoody / LightBox.ino
Created December 19, 2020 06:51
Source code for Light Box project, utilizing an Adafruit board NeoPixel LED strip.
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h> // Required for 16 MHz Adafruit Trinket
#endif
#define LED_STRIP_PIN 6
#define LED_STRIP_COUNT 30
#define ANALOG_INPUT_0 0
#define ANALOG_INPUT_1 1
#define ANALOG_INPUT_2 2