0.9.1 • Published 7 years ago

telldus-queue v0.9.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Build Status License: MIT

telldus-queue

Telldus-queue is a wrapper for the node-telldus module, providing command repetition and debouncing while maintaining the API from node-telldus.

Why do I need this?

433 Mhz communication tend to be one-way; devices contain only a receiver or a transmitter. If you send a signal to turn a plug on and the signal gets lost in space, the plug won't turn on. The simple way to deal with this is to send the same command multiple times and hope that at least one signal reaches the intended target.

Consequently, if something else is trying to talk to us and is sending the same command multiple times, we probably want to ignore any repetitions beyond the first one.

This library will perform those tasks for you transparently. It'll also maintain a queue so that it doesn't repeat a command that has since been countermanded: if you turn the switch on, then off again, you don't want to repeat the on command since you know the switch is supposed to be in the off state already.

Installation

npm install telldus-queue

Basic usage

var telldus = require('telldus-queue');
telldus.turnOn(1, () => { console.log("Done"); });

API documentation

See node-telldus for the API reference.

The following methods are trapped by telldus-queue but should be 100% call compatible with node-telldus. Anything not on this list will be passed along transparently. Callbacks are fired after the command has been transmitted the first time.

  • turnOn
  • turnOff
  • dim
  • up
  • down
  • stop
  • bell
  • execute
  • addDeviceEventListener

This really only makes sense for the async versions of the node-telldus commands. The async commands passed along to node-telldus, but they do not get any of the queueing benefits.

Only the addDeviceEventListener() function is debounced. If you use the addSensorEventListener() or addRawDeviceEventListener() functions, you're on your own. (That said, I'm yet to see a compatible sensor repeat itself within a very short time frame)

Credits

Inspired by node-telldus and node-red-contrib-tellstick.