ambilight
Version:
An API library for Node.js that interacts with a Philips Ambilight TV.
18 lines (13 loc) • 357 B
JavaScript
var ambilight = require('../');
var showResult = function (result) {
console.log(JSON.stringify(result));
};
var host = "192.168.0.11",
api = new ambilight.AmbilightApi(host);
// Using a Promise
api.getTopology().then(showResult).done();
// Using a Callback
api.getTopology(function (err, result) {
if (err) throw err;
showResult(result);
});