PHP code example of phlak / lifx-client

1. Go to this page and download the library: Download phlak/lifx-client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

phlak / lifx-client example snippets


use PHLAK\LIFX;

$lifx = new LIFX\Client('YOUR_APP_TOKEN');

$lifx->listLights($selector = 'all');

$lifx->setState($selector, array $params);

$lifx->setStates(array $states, array $defaults = []);

$lifx->togglePower($selector, $duration = 1);

$lifx->breatheEffect($selector, $color, array $params = []);

$lifx->pulseEffect($selector, $color, array $params = []);

$lifx->cycle($selector, array $states, array $params = []);

$lifx->listScenes();

$lifx->activateScene($sceneUuid, $duration = 1.0);

$lifx->validateColor($string);

use GuzzleHttp\Exception\ClientException;

try {
    $lifx->togglePower('id:123456789abcd');
} catch (ClientException $exception) {
    // Handle this exception here...
}