npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dotstar

v1.0.0

Published

Library to control Adafruit DotStar LED strip

Downloads

31

Readme

dotstar

A javascript library to use the Adafruit DotStar LED strip with raspberry pi.

DotStar LEDs: https://learn.adafruit.com/adafruit-dotstar-leds/overview

Based on: https://github.com/RussTheAerialist/node-adafruit-pixel

No dependencies

This library is not tied to specific implementaiton of Spi bus communication and allows taking any object which implements the dotstar.ISpy interface:

export interface ISpi {
  write(buffer: Buffer, callback: (error: any, data: any) => void): void;
}

This means you can use node pi-spy or node-spi

Usage

import * as dotstar from './dotstar';
const SPI = require('pi-spi');

spi = SPI.initialize('/dev/spidev0.0');
const ledStripLength = 144;

const ledStrip = new dotstar.Dotstar(spi, {
  length: ledStripLength
});

When an instace of Dotstar class is created it will automatically set all LEDs to off/black.

Methods

Set all leds to same color

ledStrip.all(255, 200, 175, 0.8);
ledStrip.sync();

Set single led to a color

ledStrip.set(1, 0, 255, 148, 0.5);
ledStrip.sync();

For both the all and set methods if you don't specify the a (alpha) value it defaults to 1.

Set all leds to off/black

ledStrip.clear();
ledStrip.sync();

Set all leds to off/black without overwriting internal LED color data.

ledStrip.off();

Notes

The DotStar library is simple. It simply manages node 3 different node Buffers.

There is the colorBuffer which holds color data for each LED. From the design sheet you can see that each LED is 4 bytes and must start with first three bits as ones (0b11100000)

There is the ledBuffer which is full buffere which overlaps with the colorBuffer but has the prefix of 4 bytes of 0x00 and suffix of 4 bytes of 0xFF.

There is also another buffer called offBuffer which is like the full ledBuffer but preconfigured to set all LEDs off and can be written over the spi bus without having to update the color buffer.

This means you could alternate between off and red without updating anything in memory. Notice the calls to sync send whatever the current state of the ledBuffer.

ledStrip.all(255,0,0);
ledStrip.sync(); // Set red
ledStrip.off();  // Set off
ledStrip.sync(); // Set red
ledStrip.off();  // Set off
...