a15lam/php-wemo
Composer 安装命令:
composer require a15lam/php-wemo
包简介
PHP library for Wemo devices.
关键字:
README 文档
README
PHP library to control Wemo devices.
Currently supports...
- Wemo light bulb - on/off/dimming
- Wemo light switch - on/off
- Wemo switch (socket) - on/off
- Wemo insight switch - on/off/params
- Device discovery
- Grouped devices under wemo bridge
Getting started:
git clone https://github.com/a15lam/php-wemo.git cd php-wemo composer update php example/console.php // An example command line app to control your wemo devices.
Usage:
$lightSwitch = \a15lam\PhpWemo\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.
统计信息
- 总下载量: 285
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 4
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2016-03-12