pxt-calliope/libs/neopixel
2016-06-07 10:53:44 -07:00
..
neopixel.ts making neopixels block friendly 2016-04-12 22:09:03 -07:00
neotest.ts making neopixels block friendly 2016-04-12 22:09:03 -07:00
pxt.json updated yotta settings for neopixel package 2016-06-07 10:53:44 -07:00
README.md making neopixels block friendly 2016-04-12 22:09:03 -07:00
sendbuffer.asm Neopixel seems to work 2016-04-03 17:49:35 -07:00

NeoPixel driver

This library provides a driver for various Neo Pixel LED strips, see https://www.adafruit.com/category/168

NeoPixels consist of a number of RGB LEDs, every one of them controlled separately.

Basic usage

// Create a NeoPixel driver - specify the number of LEDs:
let strip = neopixel.create(DigitalPin.P0, 24)

// set pixel colors
strip.setPixelColor(0, 255, 255, 255) // white
strip.setPixelColor(1, 255, 0, 0)     // red
strip.setPixelColor(2, 0, 255, 0)     // green
strip.setPixelColor(3, 0, 0, 255)     // blue

// send the data to the strip
strip.show()

Use strip.setBrigthness() to lower the brightness (it's maxed out by default).

Use strip.shift() or strip.rotate() to shift the lights around.

Example: Using accelerometer to control colors

This little program will let the position of the microbit control the color of the first LED. This first LED will then get shifted further away every 100ms.

let strip = neopixel.create(DigitalPin.P0, 24)
while (true) {
    let x = input.acceleration(Dimension.X) / 2
    let y = input.acceleration(Dimension.Y) / 2
    let z = input.acceleration(Dimension.Z) / 2
    strip.setPixelColor(0, x, y, -z);
    strip.shift(1);
    strip.show();
    basic.pause(100);
}