0.4.4 • Published 10 years ago

node-raumfeld v0.4.4

Weekly downloads
40
License
SEE LICENSE IN LI...
Repository
github
Last release
10 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

10 years ago

0.4.3

10 years ago

0.4.2

10 years ago

0.4.1

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago

0.1.0

10 years ago

0.0.1

10 years ago