homebridge-lifx-plugin 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -1
- package/homebridge-lifx-icon.png +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://github.com/calvarium/homebridge-lifx-plugin"><img alt="homebridge-lifx-plugin" src="homebridge-lifx-icon.png" width="200px"></a>
|
|
3
|
+
</p>
|
|
4
|
+
<span align="center">
|
|
5
|
+
|
|
1
6
|
# homebridge-lifx-plugin
|
|
2
7
|
|
|
3
|
-
|
|
8
|
+
[](https://www.npmjs.com/package/homebridge-lifx-plugin)
|
|
9
|
+
[](https://www.npmjs.com/package/homebridge-lifx-plugin)
|
|
4
10
|
[](https://www.npmjs.com/package/homebridge-lifx-plugin)
|
|
5
11
|
[](https://github.com/calvarium/homebridge-lifx-plugin)
|
|
6
12
|
|
|
@@ -13,6 +19,9 @@ This plugin will be updated regularly in the future, because I see it as a small
|
|
|
13
19
|
The reason to create this plugin was the use of several published already existing lifx-plugins for homebridge. Unfortunately, all the plugins I tested slowed down homebridge so I couldn't access my devices from outside my network.
|
|
14
20
|
This plugin should fix that problem and add some extra functionality
|
|
15
21
|
|
|
22
|
+
Also, lights that were not connected to the power were marked as "not responding".
|
|
23
|
+
This plugin automatically sets the status of these lights to offline as soon as the light can no longer be reached.
|
|
24
|
+
|
|
16
25
|
I appreciate anyone who would like to use my plugin and welcome comments of any kind.
|
|
17
26
|
|
|
18
27
|
Of course, sometimes no error is left out, so forgive me if you might have problems and stay tuned. Updates will follow as soon as possible!
|
|
@@ -20,11 +29,17 @@ Of course, sometimes no error is left out, so forgive me if you might have probl
|
|
|
20
29
|
|
|
21
30
|
## Installation
|
|
22
31
|
|
|
32
|
+
```console
|
|
23
33
|
npm i homebridge-lifx-plugin
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
or use the awesome [Homebridge Config Ui X plugin](https://www.npmjs.com/package/homebridge-config-ui-x)
|
|
24
37
|
|
|
25
38
|
## ToDo
|
|
26
39
|
|
|
27
40
|
- [x] Dim settings for brightness, color and On/Off
|
|
28
41
|
- [x] Add lights individually
|
|
42
|
+
- [x] Listen for new states of the light
|
|
43
|
+
- [x] Mark bulb as offline if it could not be reached
|
|
29
44
|
- [ ] Separate dim settings for brightness, color and On/Off
|
|
30
45
|
- [ ] Configure lights individually
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"private": false,
|
|
3
3
|
"displayName": "Lifx Plugin",
|
|
4
4
|
"name": "homebridge-lifx-plugin",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.8",
|
|
6
6
|
"description": "This plugin is a bridge between lifx smart bulbs and your apple homekit",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|