I have a number of Flora Neopixels (v2). Everyone of them blinks green with the sketch listed below. If instead I set color.green=255 and color.red=0;, it blinks red. Blue works as expected.
Is there a problem with the pixels? the libraries? am I using the wrong library?
#include "Adafruit_FloraPixel.h"
Adafruit_FloraPixel strip = Adafruit_FloraPixel(1);
RGBPixel color;
void setup() {
strip.begin();
strip.show();
}
void loop() {
color.red=255;
color.green=0;
color.blue=0;
strip.setPixelColor(0, color);
strip.show();
delay(500);
color.red=0;
color.green=0;
color.blue=0;
strip.setPixelColor(0, color);
strip.show();
delay(500);
}

