2017 © Pedro Peláez
 

library yeelight-api-client

Client library for Yeelight API

image

elberth90/yeelight-api-client

Client library for Yeelight API

  • Sunday, July 29, 2018
  • by elberth90
  • Repository
  • 1 Watchers
  • 17 Stars
  • 93 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 2 Open issues
  • 4 Versions
  • 22 % Grown

The README.md

yeelight-api-client

Build Status Scrutinizer Code Quality, (*1)

Yeelight-api-client is a PHP client that makes it easy to manage and handle Yeelight bulbs., (*2)

Installation

Installation is possible using Composer., (*3)

Then install the library:, (*4)

composer require elberth90/yeelight-api-client

Getting started

Create YeelightClient instance, (*5)

use Yeelight\YeelightClient;
$client = new \Yeelight\YeelightClient();

Search for bulbs in your local network, (*6)

$bulbList = $client->search();

Once you have list of available bulbs, you can perform on each bulb some actions like for example getting property of each bulb, (*7)

foreach ($bulbList as $bulb) {
    $promise = $bulb->getProp([\Yeelight\Bulb\BulbProperties::COLOR_TEMPERATURE]);
}

Each action performed on bulb return Promise, so you can perform on it then() or done() operation., (*8)

$promise->done(function (\Yeelight\Bulb\Response $response) {
    // do something with response
}, function (\Yeelight\Bulb\Exceptions\Exception $exception) {
    // log exception or whatever...
});

Full documentation for an API can be found here, (*9)

Contributing

See CONTRIBUTING.md for more information about contributing and developing yeelight-api-client., (*10)

The Versions

29/07 2018

dev-master

9999999-dev http://www.yeelight.com/en_US/developer

Client library for Yeelight API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arkadiusz Gac

29/07 2018

1.0.0

1.0.0.0 http://www.yeelight.com/en_US/developer

Client library for Yeelight API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arkadiusz Gac

24/01 2017

v0.5.0-beta

0.5.0.0-beta http://www.yeelight.com/en_US/developer

Client library for Yeelight API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arkadiusz Gac

24/01 2017

v0.5.0

0.5.0.0 http://www.yeelight.com/en_US/developer

Client library for Yeelight API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Arkadiusz Gac