0.4.4 • Published 8 years ago

node-raumfeld v0.4.4

Weekly downloads
40
License
SEE LICENSE IN LI...
Repository
github
Last release
8 years ago

node-raumfeld

This is a node module for Raumfeld. It maps upnp commands to usage-friendly method calls.

Installation

Install for node.js npm:

$ npm install node-raumfeld

Example

var RaumfeldManager = require('node-raumfeld');

var manager = new RaumfeldManager();

// starts discovering devices asynchronously
manager.discover();

// fetch a device and do something with it. Method calls on a device return a promise object
manager.on("rendererFound", function(renderer) {
    renderer.getVolume().then(function(value) {
        console.log(renderer.name + " volume is " + value);
    });
});
0.4.4

8 years ago

0.4.3

8 years ago

0.4.2

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago

0.0.1

8 years ago