项目作者: song940

项目描述 :
:bulb: A Node.js Library for the Yeelight smart bulb
高级语言: JavaScript
项目地址: git://github.com/song940/node-yeelight.git
创建时间: 2017-01-08T16:41:00Z
项目社区:https://github.com/song940/node-yeelight

开源协议:MIT License

下载


" class="reference-link">Yeelight Yeelight2

A Node.js lib for the yeelight bulb

Installation

  1. $ npm i yeelight2 --save

Simple example

  1. const Yeelight = require('yeelight2');
  2. (async () => {
  3. const light = await Yeelight.find();
  4. console.log(light.name);
  5. light.toggle();
  6. })();

Discover all devices in the network.

  1. const Yeelight = require('yeelight2');
  2. Yeelight.discover(function(light){
  3. console.log(light.name);
  4. function blink(){
  5. light.toggle();
  6. }
  7. setInterval(blink, 2000);
  8. // `Yeelight.discover` can discover multiple devices untill the ssdp close.
  9. // So you need to close it manually. DO NOT FORGET IT.
  10. // Here is an example to close it after find the first device.
  11. // const discover = this;
  12. // discover.close(); // stop searching
  13. });

Here is an example to close it after 10 seconds.

  1. const discover = Yeelight.discover(light => {
  2. console.log(light.name);
  3. });
  4. setTimeout(() => {
  5. discover.close(); // stop searching
  6. }, 10000);

For a complete example look at .

Debug

  1. NODE_DEBUG=yeelight

Then start your app.

Documentation

see https://lsong.org/node-yeelight

Contributing

  • Fork this Repo first
  • Clone your Repo
  • Install dependencies by $ npm install
  • Checkout a feature branch
  • Feel free to add your features
  • Make sure your features are fully tested
  • Publish your local branch, Open a pull request
  • Enjoy hacking <3

Golang Implementation

Golang API for Yeelight

https://github.com/song940/yeelight-go

MIT

Copyright (c) 2016 Lsong song940@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.