We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ddcb8 commit c365226Copy full SHA for c365226
README.md
@@ -1,2 +1,12 @@
1
# lifxlan
2
-LifxLan protocol.
+LifxLan protocol. (Work in progress)
3
+
4
+Note: This library is not ready for use in production. And does not cover all API capabilities. I just built it for my self to
5
6
+**Setting light color by name:**
7
+```
8
+$light_ip = '192.168.1.x';
9
+$Light = new Light($light_ip);
10
+$brightness = 40;
11
+$Light->setColorByName('white_warm', $brightness);
12
0 commit comments