elberth90 / yeelight-api-client
Client library for Yeelight API
1.0.0
2018-07-29 19:13 UTC
Requires
- php: >=7.0.0
- ext-json: *
- clue/socket-raw: ~1.2
- react/promise: ^2.5
Requires (Dev)
- friendsofphp/php-cs-fixer: ^1.12
- humbug/humbug: ~1.0@dev
- phpunit/phpunit: ^5.6
This package is auto-updated.
Last update: 2025-03-09 04:34:48 UTC
README
Yeelight-api-client is a PHP client that makes it easy to manage and handle Yeelight bulbs.
Installation
Installation is possible using Composer.
Then install the library:
composer require elberth90/yeelight-api-client
Getting started
Create YeelightClient
instance
use Yeelight\YeelightClient; $client = new \Yeelight\YeelightClient();
Search for bulbs in your local network
$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
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.
$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
Contributing
See CONTRIBUTING.md for more information about contributing and developing yeelight-api-client.