yeelight-led
v1.2.0
Published
A lightweight SDK to control Yeelight smart LED devices.
Downloads
1
Readme
yeelight-led
A lightweight SDK to control Yeelight smart LED devices.
Documentation
Example
var yeelight = require('yeelight-led');
yeelight.discover(function (device) {
console.log('Device found:', device.id);
device.sendCommand('get_prop', 'name', function (err, result) {
console.log('Device name:', result[0]);
});
device.sendCommand('toggle');
setTimeout(function () {
device.sendCommand('toggle');
}, 1000);
});