rutgerkirkels / domoticz-php
Library for connecting to Domoticz
v0.1.1-alpha
2018-02-07 22:44 UTC
Requires
- guzzlehttp/guzzle: ^6.3
- mustangostang/spyc: 0.6.*
Requires (Dev)
- phpunit/phpunit: 4.0.*
This package is auto-updated.
Last update: 2024-12-28 08:36:01 UTC
README
PHP Library for connecting to Domoticz
With this library you can control lights, switches, thermostats and other home automation devices with PHP by connecting to Domoticz, the open-source Home Automation System.
Installation
php composer.phar require rutgerkirkels/domoticz-php
Basic usage
// Initialize the Domoticz library with the hostname of the Domoticz machine. // If you didn't set login credentials, you can leave the username and password // attributes empty. $client = new \rutgerkirkels\DomoticzPHP\Client('http://YOUR_DOMOTICZ_MACHINE:PORT', <USERNAME>, <PASSWORD>); // Get all lights and switches $lightsAndSwitches = $client->getDevices('light'); // Get the status of a device $device = $client->getDeviceByIdx(<idx>); echo $device->getStatus(); // When the device is a dimmer, get the current set level in percentages (return false of not a dimmer) $level = $device->getLevel(); // Initiate a controller for this dimmer $dimmerController = (new \rutgerkirkels\DomoticzPHP\Factories\ControllerFactory($device))->get(); // and turn it on... $dimmerController->turnOn(); // and off again... $dimmerController->turnOff();