NeoPixel Mini 3535

Was wondering if anybody had luck using the NeoPixel Mini (SK6812MINI) with our ported NeoPixel library.

In the product description:

The LEDs basically have a WS2811, but fixed at the 800KHz 'high speed' setting.

Looks like they've refactored the official Adafruit NeoPixel library to allow this so our port may be out of date.

I was able to use the SK6812MINI with the Particle NeoPixel library port by setting PIXEL_TYPE to ‘WS2812B’.

#define PIXEL_TYPE WS2812B
#define PIXEL_COUNT 1
#define PIXEL_PIN D1
Adafruit_NeoPixel strip = Adafruit_NeoPixel(PIXEL_COUNT, PIXEL_PIN, PIXEL_TYPE);