#include "LedChain.h"
#define DATA_PIN 5
#define NUM_LEDS 16
LedChain led_chain;
void UnitTestLedChain(){
led_chain.Setup(NUM_LEDS);
while (1){
for (int i=0; i<NUM_LEDS+1; i++){
led_chain.SetLeds(i, CRGB::Blue);
delay(200);
}
for (int i=0; i<NUM_LEDS+1; i++){
led_chain.SetLeds(NUM_LEDS-i, CRGB::Blue);
delay(200);
}
}
}
void setup() {
UnitTestLedChain();
}
void loop() {
}