Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 887 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 887 Bytes

yeelight-wifi

Greenkeeper badge CircleCI codecov

The Yeelight WiFi Lib docs are located here.

Using npm:

$ npm i --save yeelight-wifi

In Node.js:

const YeelightSearch = require('yeelight-wifi');

const yeelightSearch = new YeelightSearch();
yeelightSearch.on('found', (lightBulb) => {
  lightBulb.toggle()
    .then(() => {
      console.log('toggled');
    })
    .catch((err) => {
      console.log(`received some error: ${err}`);
    });
});