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

upb

v2.0.1

Published

Generate and decode UPB (Universal Powerline Bus) commands

Downloads

29

Readme

node-upb Gitter chat

npm npm bower david Travis Coveralls license

A NodeJS, Bower, browser, AMD, and CommonJS (that includes RequireJS) library that generates and decodes UPB (Universal Powerline Bus) commands. If you are looking for the CLI program that uses this, then please see upb-cli.

This has only been tested with Simply Automated switches! While probably won't harm your device (it is sending control commands, not core commands), I'm not sure what will happen when this is used with other branded switches (like PCS).

Installation

Node

Install it to your project folder:

npm install upb

Then include it in your file:

var upb = require("upb");

Browser

Either download the package via Bower (package named upb) or download the latest release and include it in your page:

<script type="text/javascript" src="upb.js"></script>

Use it with the upb object. The examples below should work fine. There is a minified version in the /dist/ folder or available for download from the releases page.

Usage

generate(command)

The function takes a JSON object input as command and returns a promise withg a new JSON object with more data (including the generated command) as the first argument of the callback function.

If you plan on making your own serial implementation using this, remember to put the PIM in message mode first and to proceed each UPB command with the ASCII #20 character and to end it with the ASCII #13 character. Also, the PIM will automatically send the correct number of commands based on sendx. So, sendTime is only useful for displaying commands and not sending them.

Example:

upb.generate({
  network: 21, 				// Required - Set Network ID. Use 0 for the global network (controls all devices)
  id: 4,					// Required - Set link or device ID
  type: "device",			// Required - Set whether to control a link or device
  source: 255,				// Optional - Set PIM source ID. Defaults to 255, which is almost always fine.
  cmd: "goto",				// Required - Set the command to send. You may also use the command numbers associated with those commands.
  level: 75,				// Optional - Set the level (percent). Accepts values 0 through 100. Required with goto and fade start. Only applies to goto, fadeStart, fadeStop, and toggle. Otherwise this will be ignored.
  rate: 5,					// Optional - Set the fade rate (seconds). Use false for instant on. Only applies to goto, fadeStart, and toggle. Otherwise  this will be ignored. Defaults to device settings.
  channel: false, 			// Optional - Set the channel to use. Use false for default. Only applies to goto, fadeStart, blink, and toggle. Otherwise this will be ignored. Only works on some devices. Defaults to off (command not sent).
  sendx: 2,					// Optional - Set the number of times to send the command. Accepts numbers 1 through 4. Defaults to 1.
  sendTime: 1,				// Optional - Send the number of time this command is sent out of the total (sendx). NOTE: THE PIM WILL AUTOMATICALLY SEND THE CORRECT NUMBER OF COMMANDS! So, this is only useful for displaying commands and not sending them. Accepts numbers 1 through 4. Cannot be greater than sendx. Defaults to 1.
  ackPulse: false,			// Optional - Request an acknowledge pulse. Defaults to false.
  idPulse: false, 			// Optional - Request an ID pulse. Defaults to false.
  ackMsg: true,  			// Optional - Request an acknowledge message. Defaults to false.
  powerlineRepeater: false,	// Optional - Request for the command to go through a powerline repeater. Set or numbers 1, 2, 4, or false. Defaults to false.
  blinkRate: 255,			// Optional - Set the blink rate (unknown unit). USE CAUTION WITH LOW NUMBERS! I am not sure what unit this is in. Accepts values 1 through 255. Required for blink. Only applies to blink. Otherwise this will be ignored.
  toggleCount: 0,			// Optional - Set the toggle count. Required for toggle. Only applies to toggle. Otherwise this will be ignored.
  toggleRate: 5				// Optional - Set the toggle rate. Only applies to toggle. Otherwise this will be ignored. Defaults to 0.5.
}).then(function(commandNew) {
  console.log(commandNew.generated);			// 09441504FF224B0529
  console.log(JSON.stringify(commandNew));
  // {"source":255,"sendx":"2","ackPulse":false,"idPulse":false,"ackMsg":true,"powerlineRepeater":false,"sendTime":1,"network":"21","id":"4","type":"device","cmd":"goto","level":"75","rate":"5","ctrlWord":{"byte1":0,"byte2":9,"byte3":4,"byte4":4},"words":9,"hex":{"network":"15","id":"4","source":"ff","msg":"22","level":"4b","rate":"5","ctrlWord":{"byte1":"0","byte2":"9","byte3":"4","byte4":"4","fullByte1":"09","fullByte2":"44"}},"msg":22,"generated":"09441504FF224B0529","checksum":"29"}
}, function(err) {
  throw err;
});

decode(command, callback)

The function takes a string input as command and returns a JSON object with data (including the original command) as the first argument of the callback function. The second argument of the callback function is for errors. This does not verify the checksum. However, it will throw errors for other problems in the command.

Example:

upb.decode('09441504FF224B0529').then(function(commandNew) {
  console.log(JSON.stringify(commandNew));
  // {"source":255,"sendx":2,"sendTime":1,"ackPulse":false,"idPulse":false,"ackMsg":true,"powerlineRepeater":0,"hex":{"ctrlWord":{"fullByte1":"09","fullByte2":"44","byte1":"0","byte2":"9","byte3":"4","byte4":"4"},"network":"15","id":"04","source":"FF","msg":"22","level":"4B","rate":"05"},"generated":"09441504FF224B0529","ctrlWord":{"byte1":0,"byte2":9,"byte3":4,"byte4":4},"type":"device","words":9,"network":21,"id":4,"msg":"22","cmd":"goto","checksum":"29","level":75,"rate":5}
}, function(err) {
  throw err;
});

validCommands

An array of valid commands

Example:

console.log(JSON.stringify(upb.validCommands));
// [20,"20","activate",21,"21","deactivate",22,"22","goto",23,"23","fadeStart",24,"24","fadeStop",25,"25","blink",26,"26","indicate",27,"27","toggle",30,"30","reportState",31,"31","storeState",80,"80","ackResponse",85,"85","setupTimeReport",86,"86","deviceStateReport",87,"87","deviceStatusReport",90,"90","registerValuesReport",91,"91","RAMvaluesReport",92,"92","rawDataReport",93,"93","heartbeatReport",143,"143","deviceSignatureReport"]

commands

An object of all commands

Example:

console.log(upb.commands);
/* { activate: 20,
     deactivate: 21,
     goto: 22,
     fadeStart: 23,
     fadeStop: 24,
     blink: 25,
     indicate: 26,
     toggle: 27,
     reportState: 30,
     storeState: 31,
     ackResponse: 80,
     setupTimeReport: 85,
     deviceStateReport: 86,
     deviceStatusReport: 87,
     registerValuesReport: 90,
     RAMvaluesReport: 91,
     rawDataReport: 92,
     heartbeatReport: 93,
     deviceSignatureReport: 143 } */

defaultCommand

An object with the optional defaults.

Example:

console.log(JSON.stringify(upb.defaultCommand));
// {"source":255,"sendx":1,"sendTime":1,"ackPulse":false,"idPulse":false,"ackMsg":false,"powerlineRepeater":0}

More Information

I got most of the information the last three items listed on this Simply Automated page: Tech Specs. I also experimented with my serial terminal to see responses of other switches.

  • UPB System Description - This PDF describes all parts of the UPB protocol.
  • UPB Command Wizard - Software - This program lets you build commands with a wizard/GUI and see the result. It does not actually send the command, but it is very valuable for understanding the commands without reading too much of the above PDF.
  • UPB Powerline Interface Module (PIM) - Description - This PDF contains information about the PIM. It shows serial specifications (4800 baud 8-n-1) and PIM responses. It look me a while to figure out that the PIM always responds with PE whenever a command is not prefixed by the #20 character.