technobly / Particle-DotStar

An Implementation of Adafruit's DotStar Library for the Spark Core
GNU General Public License v3.0
8 stars 14 forks source link

Particle-DotStar

A library for manipulating DotStar RGB LEDs for the Spark Core, Particle Photon, P1, Electron, and RedBear Duo.

Implementation based on Adafruit's DotStar Library.

DotStar LED's are APA102: Datasheet

Components Required

Example Usage

Adafruit_DotStar strip = Adafruit_DotStar(NUMPIXELS, DATAPIN, CLOCKPIN);
void setup() {
  strip.begin();
  strip.show();
}
void loop() {
  // change your pixel colors and call strip.show() again
}

Nuances

Useful Links