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

nixiepipe

v1.0.2

Published

Nixie Pipe Node.js module

Downloads

8

Readme

Module for control of the Nixie Pipe Master over USB

Install

npm install nixiepipe

Usage

var NixiePipe = require('nixiepipe');

var pipes = new NixiePipe();

pipes.once("connected", function() {
  pipes.setNumber(9999); // Set array number 9999
  pipes.setColour(0,0,255); // Set blue
  pipes.show(); // Write and set new settings
  pipes.getNumber( function() { console.log(pipes.number); }); // Return display number
});

Classes

NixiePipe ⇐ EventEmitter.

NixiePipe is a Nixie Pipe Master connected via USB

Kind: global class
Extends: EventEmitter.
Properties

| Name | Type | Description | | --- | --- | --- | | _queue | | Packet buffer to maintain syncronous serial communication. | | _busy | | If queue is active. | | debug | | Output debugging logs. | | connected | | Status of connection. | | version | | Version of Nixie Pipe firmware. | | number | | Current display number (must be updated using getNumber). | | packet | | Last data packet recieved. | | Serial | SerialPort | object used by class. |

new NixiePipe(port, callback)

| Param | Type | Description | | --- | --- | --- | | port | string | Serial port Nixie Pipe Master connected to. If not passed, will auto-detect using device descriptor. | | callback | function | Function to be called once handshake connection is confirmed. |

nixiePipe.setNumber(value)

Set new number to Nixie Pipe array.

Kind: instance method of NixiePipe

| Param | Type | Description | | --- | --- | --- | | value | int | New value to be displayed. |

nixiePipe.setPipeNumber(pipe, value)

Set new individual pipe number.

Kind: instance method of NixiePipe

| Param | Type | Description | | --- | --- | --- | | pipe | int | Index of Nixie Pipe to set. | | value | int | New value to be displayed (0-9). |

nixiePipe.setColour(r, g, b)

Set new Nixie Pipe array RGB colour.

Kind: instance method of NixiePipe

| Param | Type | Description | | --- | --- | --- | | r | int | Red colour saturation. | | g | int | Green colour saturation. | | b | int | Blue colour saturation. |

nixiePipe.setPipeColour(pipe, r, g, b)

Set individual Nixie Pipe RGB colour

Kind: instance method of NixiePipe

| Param | Type | Description | | --- | --- | --- | | pipe | int | Index of Nixie Pipe to set. | | r | int | Red colour saturation. | | g | int | Green colour saturation. | | b | int | Blue colour saturation. |

nixiePipe.show()

Write and show display changes. Changes to the display are not visable until this is called. Firmware must disable ISR to write LED updates so serial transmission will be disabled. Syncronous serial buffer will manage this by enforcing a wait until Nixie Pipe indicats LED update is complete

Kind: instance method of NixiePipe

nixiePipe.clear()

Clear Nixie Pipe array (set black)

Kind: instance method of NixiePipe

nixiePipe.clearPipe()

Clear single Nixie Pipe in array (set black)

Kind: instance method of NixiePipe

nixiePipe.setBrightness(value)

Set array brightness.

Kind: instance method of NixiePipe

| Param | Type | Description | | --- | --- | --- | | value | int | 0-255 intensity - 0 off/255 full |

nixiePipe.getNumber(callback) ⇒ int

Update this.number with value reported by firmware.

Kind: instance method of NixiePipe
Returns: int - Number being displated on Nixie Pipe array.

| Param | Type | Description | | --- | --- | --- | | callback | function | Function to call when firmware replies with value. |