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

@theatersoft/zwave

v1.6.0

Published

Bus service module for Z-Wave devices

Downloads

2

Readme

@theatersoft/zwave

zwave is a Theatersoft bus service module that encapsulates the OpenZWave library to provide consistent device APIs for Z-Wave device control and state management. It also exports client components for Z-Wave service and device configuration.

Installation

  1. Install Theatersoft Home.

  2. Connect a USB Z-Wave controller supported by OpenZWave.

  3. Add a ZWave service configuration object to your site config.json to the services array of a hosts object. E.g:

    {
        "module": "@theatersoft/zwave",
        "export": "ZWave",
        "name": "ZWave",
        "config": {
            "port": "/dev/ttyACM0",
            "options": {
                "NetworkKey": "0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x10,0x11,0x12,0x13,0x14,0x15,0x16",
                "Logging": true,
                "ConsoleOutput": true,
                "SaveLogLevel": 5
            }
        }
    }    

    NetworkKey is the secret 16 byte value used for secure communication with security devices.

  4. npm run config deploy to complete zwave service installation.

Operation

The zwave service settings will appear in the Settings/Services UI.

Use Add device and Remove device to perform include and exclude controller operations.

Once a device is added, it appears in the Device menu under its detected type. Additional ZWave device details and settings are available with a hold press.

API

zwave implements device types and interfaces common to all Theatersoft device services. All low level Z-Wave details (Command Class implementation, configuration, etc.) are hidden and managed internally.

State

Device state is published on the service bus object as a Device. E.g.:

    "ZWave.26" : {
        name: "Office",
        value: false,
        type: "Switch",
        id: "ZWave.26",
        time: 1516389670608
    }

Control

Actions control devices through the servicedispatch (action :Action) API. A typical action for a Switch would be on, exported from device as on = id => ({type: ON, id}).

REPL demo

Start node using an installed NPM script to set the BUS environment:

cd /opt/theatersoft && npm explore @theatersoft/zwave npm run BUS -- node

Start the bus and create a zwave service proxy:

const {bus, proxy} = require('@theatersoft/bus')
bus.start()
const zwave = proxy('ZWave')

Then get the service state and check the devices:

zwave.getState().then(state => devices = state.devices)
devices // show the returned devices

Let's find the devices that are on:

Object.values(devices).find(({value}) => value)

Suppose that returned { name: 'Kitchen outlet', value: true, type: 'Switch', id: '5' }. Then we could turn it off:

zwave.dispatch({type: 'OFF', id: '5' })

Discussion

Join the Theatersoft Community.