a15lam/php-iot

PHP library for controlling household IoT devices.

0.1.3 2017-07-02 04:46 UTC

This package is auto-updated.

Last update: 2024-04-29 03:50:28 UTC


README

PHP library to control Wemo devices and Sonoff with custom firmware found here.

Currently supports...

  1. Wemo light bulb - on/off/dimming/status
  2. Wemo light switch - on/off/status
  3. Wemo switch (socket) - on/off/status
  4. Wemo insight switch - on/off/params/status
  5. Sonoff switch (custom firmware) - on/off/status
  6. Grouped devices under wemo bridge
  7. Device discovery

Getting started:

git clone https://github.com/a15lam/php-iot.git
cd php-iot
composer install
php example/console.php   // An example command line app to control your wemo devices.

Usage:

$lightSwitch = \a15lam\PhpIot\Discovery::getDeviceByName('Bed Room Light'); // Use your wemo device name as they show on your wemo app. Supports grouped devices
$lightSwitch->On();
sleep(2); // Allow a moment to see the light turning on.
$lightSwitch->Off();
// Get switch status
echo $lightSwitch->status();

Check the example directory for more usage. Run example/console.php from command line to control your devices.