// A basic everyday NeoPixel strip test program.
// NEOPIXEL BEST PRACTICES for most reliable operation:
// - Add 1000 uF CAPACITOR between NeoPixel strip's + and - connections.
// - MINIMIZE WIRING LENGTH between microcontroller board and first pixel.
// - NeoPixel strip's DATA-IN should pass through a 300-500 OHM RESISTOR.
// - AVOID connecting NeoPixels on a LIVE CIRCUIT. If you must, ALWAYS
// connect GROUND (-) first, then +, then data.
// - When using a 3.3V microcontroller with a 5V-powered NeoPixel strip,
// a LOGIC-LEVEL CONVERTER on the data line is STRONGLY RECOMMENDED.
// (Skipping these may work OK on your workbench but can fail in the field)
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h> // Required for 16 MHz Adafruit Trinket
#endif
// Which pin on the Arduino is connected to the NeoPixels?
// On a Trinket or Gemma we suggest changing this to 1:
#define LED_PIN 10
// How many NeoPixels are attached to the Arduino?
#define LED_COUNT 27
// Declare our NeoPixel strip object:
Adafruit_NeoPixel strip(LED_COUNT, LED_PIN, NEO_GRB + NEO_KHZ800);
// Argument 1 = Number of pixels in NeoPixel strip
// Argument 2 = Arduino pin number (most are valid)
// Argument 3 = Pixel type flags, add together as needed:
//NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
// NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
// NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products)
// NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
// NEO_RGBW Pixels are wired for RGBW bitstream (NeoPixel RGBW products)
// setup() function -- runs once at startup --------------------------------
void setup() {
// These lines are specifically to support the Adafruit Trinket 5V 16 MHz.
// Any other board, you can remove this part (but no harm leaving it):
#if defined(__AVR_ATtiny85__) && (F_CPU == 16000000)
clock_prescale_set(clock_div_1);
#endif
// END of Trinket-specific code.
strip.begin(); // INITIALIZE NeoPixel strip object (REQUIRED)
strip.show(); // Turn OFF all pixels ASAP
strip.setBrightness(50); // Set BRIGHTNESS to about 1/5 (max = 255)
startup();
}
// loop() function -- runs repeatedly as long as board is on ---------------
void loop() {
}
void startup() {
strip.clear(); // Set all pixels in RAM to 0 (off)
strip.show();
int b = 0;
for(int i =50; i<100; i+= 5){
//fall
for(; b>=0; b-= 10){
colorWipe(strip.Color((0), (0), b), 0, 24, 26); // Blue
delay((3000/i) -(i/10));
}
//rise
for(; b<i; b+= 10){
colorWipe(strip.Color((0), (0), b), 0, 24, 26); // Blue
delay((3000/i) -(i/10));
}
}
b = 0;
//rise
for(; b<250; b+= 10){
colorWipe(strip.Color((0), (0), b), 0, 0, 11); // Blue
delay(200);
}
b = 0;
//rise
for(; b<250; b+= 10){
colorWipe(strip.Color((0), (0), b), 0, 12, 23); // Blue
delay(200);
}
b = 0;
//rise
for(; b<100; b+= 1){
colorWipe(strip.Color((b), (b), 255), 0, 0, 26); // Blue
delay(20);
}
delay(10000);
b = 100;
//rise
for(; b<255; b+= 1){
colorWipe(strip.Color((b), (b), 255), 0, 0, 26); // Blue
delay(20);
}
}
void colorWipe(uint32_t color, int wait, int startp, int endp) {
for(int i=startp-1; i<=endp-1; i++) { // For each pixel in strip...
strip.setPixelColor(i, color); // Set pixel's color (in RAM)
strip.show(); // Update strip to match
delay(wait); // Pause for a moment
}
}