fibaro-api

0.1.1 • Public • Published

node-fibaro-api

Interact with Fibaro Home Center API

How it works

Instantiate a new client :

var Fibaro = require('fibaro-api');
var fibaro = new Fibaro('xxx.xxx.xxx.xxx', 'username', 'password');

Alternatively, to attempt auto discovery :

Fibaro.discover(function(info) {
    var fibaro = new Fibaro(info.ip, 'username', 'password');
});

Make your calls :

fibaro.call(action, params, callback);

Shortcuts

There is some shortcuts too :

fibaro.api.devices.list(callback)

fibaro.api.devices.get(deviceId, callback)

fibaro.api.devices.turnOn(deviceId, callback)

fibaro.api.devices.turnOff(deviceId, callback)

fibaro.api.devices.toggleValue(deviceId, callback)

I will add shortcuts as needed, don't hesitate to add yours and send me a pull request. :-)

Bitdeli Badge

Readme

Keywords

Package Sidebar

Install

npm i fibaro-api

Weekly Downloads

1

Version

0.1.1

License

MIT

Last publish

Collaborators

  • leeroy