Back to Parent

// This #include statement was automatically added by the Particle IDE.
#include <neopixel.h>

// IMPORTANT: Set pixel COUNT, PIN and TYPE
#define PIXEL_COUNT 60
#define PIXEL_PIN D2
#define PIXEL_TYPE WS2812B
Adafruit_NeoPixel strip(PIXEL_COUNT, PIXEL_PIN, PIXEL_TYPE);
// IMPORTANT: To reduce NeoPixel burnout risk, add 1000 uF capacitor across
// pixel power leads, add 300 - 500 Ohm resistor on first pixel's data input
// and minimize distance between Arduino and first pixel.  Avoid connecting
// on a live circuit...if you must, connect GND first.
void setup() {
  strip.begin();
  strip.show(); // Initialize all pixels to 'off'
}
void loop() {
  int r = random(120)+135;
  for( int i = 0 ; i < strip.numPixels(); i++  ){
    if( i % 3 == 0 ){
      strip.setPixelColor( i, strip.Color( r,r/20,0 ) );
    }else{
      strip.setPixelColor( i, strip.Color( r,r/5,0 ) );
    }
    
  }
  strip.show();
  delay(random(100));

}
Click to Expand

Content Rating

Is this a good/useful/informative piece of content to include in the project? Have your say!

0