samaphp / lifxlan
LIFX LAN协议库
0.1.4
2019-12-13 21:46 UTC
Requires
- php: >=7.1
README
LifxLan协议。(工作中)
注意:此库尚未准备好用于生产环境。并且不涵盖所有API功能。我只是为了自己构建它
通过名称设置灯光颜色
$light_ip = '192.168.1.x'; $Light = new Light($light_ip); $brightness = 40; $Light->setColorByName('white_warm', $brightness); // Set light power on. $Light->setPowerStatus('on'); // Set light power off. $Light->setPowerStatus('off');
高级使用
// Set a custom value for the connection timeout. $Light->setTimeout(2); // Custom timeout per method. $Light->setTimeout(1)->setColorByName('white_cool', 10);