iotdb

3.0.12 • Public • Published

node-iotdb

A Node.JS platform for semantically control all your Things. 100% test coverage.

Node.JS 6 or higher is required!

Hello, World

Install IOTDB

$ npm install iotdb

Turn WeMo on or off

const iotdb = require("iotdb");
iotdb.use("homestar-wemo");

things = iotdb.connect("WeMoSocket");
things.set(":on", true)
things.set(":on", false)

N.B.

  • you must have installed the NPM package homestar-wemo
  • :on is the "semantic" term that universally means "turn/is something on or off". It expands to iot-purpose:on which in turn expands to the URL https://iotdb.org/pub/iot-purpose#on.

Wait for a WeMo to change state

const iotdb = require("iotdb");
iotdb.use("homestar-wemo");

things = iotdb.connect("WeMoSocket");
things.on("istate", thing => {
	console.log("istate", thing.state("istate"));
	console.log("on", thing.get(":on"));
})

N.B.

  • istate is the actual current state of the Thing. In IOTDB a Thing may have many states associated with it, called bands.

Documentation

We are in the process of collecting all the documents into this project.

Start here:

/iotdb/

    Package Sidebar

    Install

    npm i iotdb

    Weekly Downloads

    27

    Version

    3.0.12

    License

    Apache-2.0

    Last publish

    Collaborators

    • dpjanes