yeelight-led

1.2.0 • Public • Published

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);
});

Readme

Keywords

Package Sidebar

Install

npm i yeelight-led

Weekly Downloads

1

Version

1.2.0

License

MIT

Last publish

Collaborators

  • clanfei