How about trying the simple FastLED bllink example, testing with various values for NUM_LEDS. Following works for me with 8-LED neopixel stick on pin 11 with 3.3v and GND from T3.2.
Code:
#include <FastLED.h>
// How many leds in your strip?
#define NUM_LEDS 4
// For led chips like Neopixels, which have a data line, ground, and power, you just
// need to define DATA_PIN. For led chipsets that are SPI based (four wires - data, clock,
// ground, and power), like the LPD8806 define both DATA_PIN and CLOCK_PIN
#define DATA_PIN 11
// Define the array of leds
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<WS2812B, DATA_PIN, GRB>(leds, NUM_LEDS);
}
void loop() {
// Turn the LEDs on, then pause
for (int i = 0; i < NUM_LEDS; i++)leds[i] = CRGB::Red;
FastLED.show();
delay(500);
// Now turn the LEDs off, then pause
for (int i = 0; i < NUM_LEDS; i++)leds[i] = CRGB::Black;
FastLED.show();
delay(500);
}
also works with pin 11, 5V, GND