homebridge-lifx-plugin 0.1.3 → 0.1.7
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 +21 -2
- package/dist/bulb.d.ts +0 -2
- package/dist/bulb.d.ts.map +1 -1
- package/dist/bulb.js +0 -12
- package/dist/bulb.js.map +1 -1
- package/dist/platform.d.ts +9 -11
- package/dist/platform.d.ts.map +1 -1
- package/dist/platform.js +51 -45
- package/dist/platform.js.map +1 -1
- package/dist/platformAccessory.d.ts +18 -7
- package/dist/platformAccessory.d.ts.map +1 -1
- package/dist/platformAccessory.js +126 -60
- package/dist/platformAccessory.js.map +1 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -1,11 +1,30 @@
|
|
|
1
1
|
# homebridge-lifx-plugin
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/homebridge-lifx-plugin)
|
|
4
|
+
[](https://www.npmjs.com/package/homebridge-lifx-plugin)
|
|
5
|
+
[](https://github.com/calvarium/homebridge-lifx-plugin)
|
|
4
6
|
|
|
5
7
|
LIFX plugin for [Homebridge](https://github.com/homebridge/homebridge).
|
|
6
8
|
|
|
7
|
-
|
|
9
|
+
A plugin that adds lifx-lights in the network automatically to the homebridge, also single lights can be added manually.
|
|
10
|
+
|
|
11
|
+
This plugin will be updated regularly in the future, because I see it as a small heart task and use it personally.
|
|
12
|
+
|
|
13
|
+
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
|
+
This plugin should fix that problem and add some extra functionality
|
|
15
|
+
|
|
16
|
+
I appreciate anyone who would like to use my plugin and welcome comments of any kind.
|
|
17
|
+
|
|
18
|
+
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!
|
|
19
|
+
|
|
8
20
|
|
|
9
21
|
## Installation
|
|
10
22
|
|
|
11
23
|
npm i homebridge-lifx-plugin
|
|
24
|
+
|
|
25
|
+
## ToDo
|
|
26
|
+
|
|
27
|
+
- [x] Dim settings for brightness, color and On/Off
|
|
28
|
+
- [x] Add lights individually
|
|
29
|
+
- [ ] Separate dim settings for brightness, color and On/Off
|
|
30
|
+
- [ ] Configure lights individually
|
package/dist/bulb.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
export default class Bulb {
|
|
2
|
-
static KELVIN_SCALE: number;
|
|
3
2
|
static getStates(light: any, callback: any, errorFallback: any): void;
|
|
4
3
|
static getHardwareInformation(light: any, callback: any, errorFallback: any): void;
|
|
5
4
|
static getFirmwareVersion(light: any, callback: any, errorFallback: any): void;
|
|
6
5
|
static update(light: any, state: any, duration: any): void;
|
|
7
|
-
private static bulbWrapper;
|
|
8
6
|
static getColorTemperatur(kelvin: any): number;
|
|
9
7
|
static getKelvin(value: any): number;
|
|
10
8
|
}
|
package/dist/bulb.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bulb.d.ts","sourceRoot":"","sources":["../src/bulb.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,IAAI;IACvB,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"bulb.d.ts","sourceRoot":"","sources":["../src/bulb.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,OAAO,OAAO,IAAI;IACvB,MAAM,CAAC,SAAS,CAAC,KAAK,KAAA,EAAE,QAAQ,KAAA,EAAE,aAAa,KAAA;IAS/C,MAAM,CAAC,sBAAsB,CAAC,KAAK,KAAA,EAAE,QAAQ,KAAA,EAAE,aAAa,KAAA;IAS5D,MAAM,CAAC,kBAAkB,CAAC,KAAK,KAAA,EAAE,QAAQ,KAAA,EAAE,aAAa,KAAA;IASxD,MAAM,CAAC,MAAM,CAAC,KAAK,KAAA,EAAE,KAAK,KAAA,EAAE,QAAQ,KAAA;IAIpC,MAAM,CAAC,kBAAkB,CAAC,MAAM,KAAA;IAIhC,MAAM,CAAC,SAAS,CAAC,KAAK,KAAA;CAIvB"}
|
package/dist/bulb.js
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
class Bulb {
|
|
4
4
|
static getStates(light, callback, errorFallback) {
|
|
5
|
-
// this.bulbWrapper(light.getState, callback, errorFallback);
|
|
6
5
|
light.getState((err, value) => {
|
|
7
6
|
if (err) {
|
|
8
7
|
errorFallback(err);
|
|
@@ -11,7 +10,6 @@ class Bulb {
|
|
|
11
10
|
});
|
|
12
11
|
}
|
|
13
12
|
static getHardwareInformation(light, callback, errorFallback) {
|
|
14
|
-
// this.bulbWrapper(light.getHardwareVersion, callback, errorFallback);
|
|
15
13
|
light.getHardwareVersion((err, value) => {
|
|
16
14
|
if (err) {
|
|
17
15
|
errorFallback(err);
|
|
@@ -20,7 +18,6 @@ class Bulb {
|
|
|
20
18
|
});
|
|
21
19
|
}
|
|
22
20
|
static getFirmwareVersion(light, callback, errorFallback) {
|
|
23
|
-
// this.bulbWrapper(light.getFirmwareVersion, callback, errorFallback);
|
|
24
21
|
light.getFirmwareVersion((err, value) => {
|
|
25
22
|
if (err) {
|
|
26
23
|
errorFallback(err);
|
|
@@ -31,14 +28,6 @@ class Bulb {
|
|
|
31
28
|
static update(light, state, duration) {
|
|
32
29
|
light.color(state.color.hue, state.color.saturation, state.color.brightness, state.color.kelvin, duration);
|
|
33
30
|
}
|
|
34
|
-
static bulbWrapper(func, callback, errorFallback) {
|
|
35
|
-
func((err, value) => {
|
|
36
|
-
if (err) {
|
|
37
|
-
errorFallback(err);
|
|
38
|
-
}
|
|
39
|
-
callback(value);
|
|
40
|
-
});
|
|
41
|
-
}
|
|
42
31
|
static getColorTemperatur(kelvin) {
|
|
43
32
|
return Math.round((640) / (10500 / kelvin));
|
|
44
33
|
}
|
|
@@ -47,5 +36,4 @@ class Bulb {
|
|
|
47
36
|
}
|
|
48
37
|
}
|
|
49
38
|
exports.default = Bulb;
|
|
50
|
-
Bulb.KELVIN_SCALE = 0.05555555555555555;
|
|
51
39
|
//# sourceMappingURL=bulb.js.map
|
package/dist/bulb.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bulb.js","sourceRoot":"","sources":["../src/bulb.ts"],"names":[],"mappings":";;AAAA,MAAqB,IAAI;
|
|
1
|
+
{"version":3,"file":"bulb.js","sourceRoot":"","sources":["../src/bulb.ts"],"names":[],"mappings":";;AAAA,MAAqB,IAAI;IACvB,MAAM,CAAC,SAAS,CAAC,KAAK,EAAE,QAAQ,EAAE,aAAa;QAC7C,KAAK,CAAC,QAAQ,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE;YAC5B,IAAI,GAAG,EAAE;gBACP,aAAa,CAAC,GAAG,CAAC,CAAC;aACpB;YACD,QAAQ,CAAC,KAAK,CAAC,CAAC;QAClB,CAAC,CAAC,CAAC;IACL,CAAC;IAED,MAAM,CAAC,sBAAsB,CAAC,KAAK,EAAE,QAAQ,EAAE,aAAa;QAC1D,KAAK,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE;YACtC,IAAI,GAAG,EAAE;gBACP,aAAa,CAAC,GAAG,CAAC,CAAC;aACpB;YACD,QAAQ,CAAC,KAAK,CAAC,CAAC;QAClB,CAAC,CAAC,CAAC;IACL,CAAC;IAED,MAAM,CAAC,kBAAkB,CAAC,KAAK,EAAE,QAAQ,EAAE,aAAa;QACtD,KAAK,CAAC,kBAAkB,CAAC,CAAC,GAAG,EAAE,KAAK,EAAE,EAAE;YACtC,IAAI,GAAG,EAAE;gBACP,aAAa,CAAC,GAAG,CAAC,CAAC;aACpB;YACD,QAAQ,CAAC,KAAK,CAAC,CAAC;QAClB,CAAC,CAAC,CAAC;IACL,CAAC;IAED,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ;QAClC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,KAAK,CAAC,UAAU,EAAE,KAAK,CAAC,KAAK,CAAC,UAAU,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;IAC7G,CAAC;IAED,MAAM,CAAC,kBAAkB,CAAC,MAAM;QAC9B,OAAO,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,KAAK,GAAC,MAAM,CAAC,CAAC,CAAC;IAC5C,CAAC;IAED,MAAM,CAAC,SAAS,CAAC,KAAK;QACpB,OAAO,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,GAAC,KAAK,CAAC,CAAC,CAAC;IACnD,CAAC;CAEF;AAxCD,uBAwCC"}
|
package/dist/platform.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from 'homebridge';
|
|
2
|
+
import { LifxPlatformAccessory } from './platformAccessory';
|
|
2
3
|
/**
|
|
3
4
|
* HomebridgePlatform
|
|
4
5
|
* This class is the main constructor for your plugin, this is where you should
|
|
@@ -11,24 +12,21 @@ export declare class LifxHomebridgePlatform implements DynamicPlatformPlugin {
|
|
|
11
12
|
readonly Service: typeof Service;
|
|
12
13
|
readonly Characteristic: typeof Characteristic;
|
|
13
14
|
private lifxClient;
|
|
14
|
-
|
|
15
|
+
private bulbs;
|
|
16
|
+
readonly cachedAccessories: PlatformAccessory[];
|
|
17
|
+
readonly accessories: LifxPlatformAccessory[];
|
|
15
18
|
constructor(log: Logger, config: PlatformConfig, api: API);
|
|
16
19
|
/**
|
|
17
20
|
* This function is invoked when homebridge restores cached accessories from disk at startup.
|
|
18
21
|
* It should be used to setup event handlers for characteristics and update respective values.
|
|
19
22
|
*/
|
|
20
23
|
configureAccessory(accessory: PlatformAccessory): void;
|
|
21
|
-
/**
|
|
22
|
-
* This is an example method showing how to register discovered accessories.
|
|
23
|
-
* Accessories must only be registered once, previously created accessories
|
|
24
|
-
* must not be registered again to prevent "duplicate UUID" errors.
|
|
25
|
-
*/
|
|
26
24
|
discoverDevices(): void;
|
|
27
|
-
|
|
28
|
-
setAccessoryCharacteristic(accessory: any, characteristic: any, value: any): void;
|
|
29
|
-
getAccessory(light: any): PlatformAccessory<import("homebridge").UnknownContext> | undefined;
|
|
25
|
+
findAccessory(light: any): LifxPlatformAccessory | undefined;
|
|
30
26
|
getUuid(light: any): string;
|
|
31
|
-
|
|
32
|
-
|
|
27
|
+
findCachedAccessory(light: any): PlatformAccessory<import("homebridge").UnknownContext> | undefined;
|
|
28
|
+
registerNewAccessory(light: any, name: any): PlatformAccessory<import("homebridge").UnknownContext>;
|
|
29
|
+
hookAccessory(accessory: any, light: any): void;
|
|
30
|
+
handleLight(light: any, name: any): void;
|
|
33
31
|
}
|
|
34
32
|
//# sourceMappingURL=platform.d.ts.map
|
package/dist/platform.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../src/platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,qBAAqB,EAAE,MAAM,EAAE,iBAAiB,EAAE,cAAc,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"platform.d.ts","sourceRoot":"","sources":["../src/platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,qBAAqB,EAAE,MAAM,EAAE,iBAAiB,EAAE,cAAc,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAG5H,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAI5D;;;;GAIG;AACH,qBAAa,sBAAuB,YAAW,qBAAqB;aAYhD,GAAG,EAAE,MAAM;aACX,MAAM,EAAE,cAAc;aACtB,GAAG,EAAE,GAAG;IAb1B,SAAgB,OAAO,EAAE,OAAO,OAAO,CAAwB;IAC/D,SAAgB,cAAc,EAAE,OAAO,cAAc,CAA+B;IAGpF,OAAO,CAAC,UAAU,CAA0B;IAC5C,OAAO,CAAC,KAAK,CAAC;IAEd,SAAgB,iBAAiB,EAAE,iBAAiB,EAAE,CAAM;IAC5D,SAAgB,WAAW,EAAE,qBAAqB,EAAE,CAAM;gBAGxC,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,cAAc,EACtB,GAAG,EAAE,GAAG;IAoB1B;;;OAGG;IACH,kBAAkB,CAAC,SAAS,EAAE,iBAAiB;IAQ/C,eAAe;IA6Cf,aAAa,CAAC,KAAK,KAAA;IAInB,OAAO,CAAC,KAAK,KAAA;IAIb,mBAAmB,CAAC,KAAK,KAAA;IAIzB,oBAAoB,CAAC,KAAK,KAAA,EAAE,IAAI,KAAA;IAMhC,aAAa,CAAC,SAAS,KAAA,EAAE,KAAK,KAAA;IAQ9B,WAAW,CAAC,KAAK,KAAA,EAAE,IAAI,KAAA;CAkBxB"}
|
package/dist/platform.js
CHANGED
|
@@ -14,7 +14,6 @@ const lifx_lan_client_1 = __importDefault(require("lifx-lan-client"));
|
|
|
14
14
|
*/
|
|
15
15
|
class LifxHomebridgePlatform {
|
|
16
16
|
constructor(log, config, api) {
|
|
17
|
-
// Logger.setDebugEnabled(this.config.debug);
|
|
18
17
|
this.log = log;
|
|
19
18
|
this.config = config;
|
|
20
19
|
this.api = api;
|
|
@@ -23,14 +22,18 @@ class LifxHomebridgePlatform {
|
|
|
23
22
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
24
23
|
this.lifxClient = new lifx_lan_client_1.default.Client();
|
|
25
24
|
// this is used to track restored cached accessories
|
|
25
|
+
this.cachedAccessories = [];
|
|
26
26
|
this.accessories = [];
|
|
27
27
|
this.log.debug('Finished initializing platform:', this.config.name);
|
|
28
|
+
if (this.config.bulbs) {
|
|
29
|
+
this.bulbs = this.config.bulbs.map(bulb => bulb.address);
|
|
30
|
+
}
|
|
28
31
|
// When this event is fired it means Homebridge has restored all cached accessories from disk.
|
|
29
32
|
// Dynamic Platform plugins should only register new accessories after this event was fired,
|
|
30
33
|
// in order to ensure they weren't added to homebridge already. This event can also be used
|
|
31
34
|
// to start discovery of new accessories.
|
|
32
35
|
this.api.on('didFinishLaunching', () => {
|
|
33
|
-
log.
|
|
36
|
+
log.debug('Executed didFinishLaunching callback');
|
|
34
37
|
// run the method to discover / register your devices as accessories
|
|
35
38
|
this.discoverDevices();
|
|
36
39
|
});
|
|
@@ -40,35 +43,41 @@ class LifxHomebridgePlatform {
|
|
|
40
43
|
* It should be used to setup event handlers for characteristics and update respective values.
|
|
41
44
|
*/
|
|
42
45
|
configureAccessory(accessory) {
|
|
43
|
-
this.log.
|
|
44
|
-
this.setAccessoryCharacteristic(accessory, this.Characteristic.On, false);
|
|
46
|
+
this.log.debug('Loading accessory from cache:', accessory.displayName);
|
|
45
47
|
// add the restored accessory to the accessories cache so we can track if it has already been registered
|
|
46
|
-
this.
|
|
48
|
+
this.cachedAccessories.push(accessory);
|
|
47
49
|
}
|
|
48
|
-
/**
|
|
49
|
-
* This is an example method showing how to register discovered accessories.
|
|
50
|
-
* Accessories must only be registered once, previously created accessories
|
|
51
|
-
* must not be registered again to prevent "duplicate UUID" errors.
|
|
52
|
-
*/
|
|
53
50
|
discoverDevices() {
|
|
51
|
+
this.log.debug('Register eventhandlers');
|
|
54
52
|
this.lifxClient.on('light-new', (light) => {
|
|
55
53
|
light.getLabel((err, value) => {
|
|
56
|
-
this.log.
|
|
54
|
+
this.log.debug('Light detected:', value);
|
|
57
55
|
if (value) {
|
|
58
|
-
this.
|
|
56
|
+
this.handleLight(light, value);
|
|
59
57
|
}
|
|
60
58
|
});
|
|
61
59
|
});
|
|
62
60
|
this.lifxClient.on('light-online', (light) => {
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
61
|
+
const accessory = this.findAccessory(light);
|
|
62
|
+
if (accessory) {
|
|
63
|
+
accessory.SetOnline();
|
|
64
|
+
this.log.debug('Light online', accessory.GetName());
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
this.log.debug('Light online, but not found in list');
|
|
68
|
+
}
|
|
67
69
|
});
|
|
68
70
|
this.lifxClient.on('light-offline', (light) => {
|
|
69
|
-
this.
|
|
70
|
-
|
|
71
|
+
const accessory = this.findAccessory(light);
|
|
72
|
+
if (accessory) {
|
|
73
|
+
accessory.SetOffline();
|
|
74
|
+
this.log.debug('Light offline', accessory.GetName());
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
this.log.debug('Light offline, but not found in list');
|
|
78
|
+
}
|
|
71
79
|
});
|
|
80
|
+
this.log.debug('Initialising lan client');
|
|
72
81
|
this.lifxClient.init({
|
|
73
82
|
broadcast: this.config.broadcast,
|
|
74
83
|
lightOfflineTolerance: this.config.lightOfflineTolerance,
|
|
@@ -76,48 +85,45 @@ class LifxHomebridgePlatform {
|
|
|
76
85
|
resendPacketDelay: this.config.resendPacketDelay,
|
|
77
86
|
resendMaxTimes: this.config.resendMaxTimes,
|
|
78
87
|
debug: this.config.debug,
|
|
88
|
+
lights: this.bulbs || [],
|
|
79
89
|
});
|
|
80
90
|
}
|
|
81
|
-
|
|
82
|
-
this.
|
|
83
|
-
}
|
|
84
|
-
setAccessoryCharacteristic(accessory, characteristic, value) {
|
|
85
|
-
if (accessory) {
|
|
86
|
-
// the accessory already exists
|
|
87
|
-
accessory.getService(this.Service.Lightbulb)
|
|
88
|
-
.updateCharacteristic(characteristic, value);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
getAccessory(light) {
|
|
92
|
-
return this.findExistingAccessory(this.getUuid(light));
|
|
91
|
+
findAccessory(light) {
|
|
92
|
+
return this.accessories.find(accessory => accessory.UUID === this.getUuid(light));
|
|
93
93
|
}
|
|
94
94
|
getUuid(light) {
|
|
95
95
|
return this.api.hap.uuid.generate(light.id);
|
|
96
96
|
}
|
|
97
|
-
|
|
98
|
-
return this.
|
|
97
|
+
findCachedAccessory(light) {
|
|
98
|
+
return this.cachedAccessories.find(accessory => accessory.UUID === this.getUuid(light));
|
|
99
99
|
}
|
|
100
|
-
|
|
101
|
-
const
|
|
100
|
+
registerNewAccessory(light, name) {
|
|
101
|
+
const accessory = new this.api.platformAccessory(name, this.getUuid(light));
|
|
102
|
+
this.api.registerPlatformAccessories(settings_1.PLUGIN_NAME, settings_1.PLATFORM_NAME, [accessory]);
|
|
103
|
+
return accessory;
|
|
104
|
+
}
|
|
105
|
+
hookAccessory(accessory, light) {
|
|
106
|
+
this.accessories.push(new platformAccessory_1.LifxPlatformAccessory(this, accessory, light, {
|
|
107
|
+
Duration: this.config.duration,
|
|
108
|
+
BrightnessDuration: this.config.brightnessDuration,
|
|
109
|
+
ColorDuration: this.config.colorDuration,
|
|
110
|
+
}));
|
|
111
|
+
}
|
|
112
|
+
handleLight(light, name) {
|
|
102
113
|
// see if an accessory with the same uuid has already been registered and restored from
|
|
103
114
|
// the cached devices we stored in the `configureAccessory` method above
|
|
104
|
-
let accessory = this.
|
|
115
|
+
let accessory = this.findCachedAccessory(light);
|
|
105
116
|
if (accessory) {
|
|
106
117
|
// the accessory already exists
|
|
107
|
-
this.log.
|
|
118
|
+
this.log.debug('Restoring existing accessory from cache:', name);
|
|
108
119
|
}
|
|
109
120
|
else {
|
|
110
121
|
// the accessory does not yet exist, so we need to create it
|
|
111
|
-
this.log.
|
|
112
|
-
|
|
113
|
-
accessory = new this.api.platformAccessory(name, uuid);
|
|
114
|
-
this.api.registerPlatformAccessories(settings_1.PLUGIN_NAME, settings_1.PLATFORM_NAME, [accessory]);
|
|
122
|
+
this.log.debug('Adding new accessory:', name);
|
|
123
|
+
accessory = this.registerNewAccessory(light, name);
|
|
115
124
|
}
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
BrightnessDuration: this.config.brightnessDuration,
|
|
119
|
-
ColorDuration: this.config.colorDuration,
|
|
120
|
-
});
|
|
125
|
+
this.log.debug('Hooking light to accessory', name);
|
|
126
|
+
this.hookAccessory(accessory, light);
|
|
121
127
|
}
|
|
122
128
|
}
|
|
123
129
|
exports.LifxHomebridgePlatform = LifxHomebridgePlatform;
|
package/dist/platform.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platform.js","sourceRoot":"","sources":["../src/platform.ts"],"names":[],"mappings":";;;;;;AAEA,yCAAwD;AACxD,2DAA4D;AAE5D,sEAAmC;AAEnC;;;;GAIG;AACH,MAAa,sBAAsB;
|
|
1
|
+
{"version":3,"file":"platform.js","sourceRoot":"","sources":["../src/platform.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,11 +7,12 @@ import { LifxHomebridgePlatform } from './platform';
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class LifxPlatformAccessory {
|
|
9
9
|
private readonly platform;
|
|
10
|
-
|
|
10
|
+
readonly Accessory: PlatformAccessory;
|
|
11
11
|
private readonly light;
|
|
12
12
|
private service;
|
|
13
13
|
private informationService;
|
|
14
|
-
private
|
|
14
|
+
private online;
|
|
15
|
+
private watcher;
|
|
15
16
|
/**
|
|
16
17
|
* These are just used to create a working example
|
|
17
18
|
* You should implement your own code to track the state of your accessory
|
|
@@ -20,7 +21,8 @@ export declare class LifxPlatformAccessory {
|
|
|
20
21
|
private Settings;
|
|
21
22
|
private HardwareInfo;
|
|
22
23
|
private FirmwareVersion;
|
|
23
|
-
|
|
24
|
+
UUID: string;
|
|
25
|
+
constructor(platform: LifxHomebridgePlatform, Accessory: PlatformAccessory, light: any, settings: any);
|
|
24
26
|
/**
|
|
25
27
|
* Handle the "GET" requests from HomeKit
|
|
26
28
|
* These are sent when HomeKit wants to know the current state of the accessory, for example, checking if a Light bulb is on.
|
|
@@ -41,11 +43,11 @@ export declare class LifxPlatformAccessory {
|
|
|
41
43
|
setSaturation(value: CharacteristicValue): Promise<void>;
|
|
42
44
|
setKelvin(value: CharacteristicValue): Promise<void>;
|
|
43
45
|
handleError(err: any): void;
|
|
44
|
-
watchState(
|
|
45
|
-
|
|
46
|
+
watchState(): Promise<void>;
|
|
47
|
+
resetWatcher(): Promise<void>;
|
|
46
48
|
updateStates(callback: any): Promise<void>;
|
|
47
|
-
|
|
48
|
-
updateLightbuldCharacteristics(
|
|
49
|
+
setStates(state: any): Promise<void>;
|
|
50
|
+
updateLightbuldCharacteristics(): Promise<void>;
|
|
49
51
|
setHardwareInformation(callback: any): Promise<void>;
|
|
50
52
|
setAccessoryInformationCharacteristics(info: any): Promise<void>;
|
|
51
53
|
setFirmwareVersion(): Promise<void>;
|
|
@@ -53,5 +55,14 @@ export declare class LifxPlatformAccessory {
|
|
|
53
55
|
setAccessoryInformationCharacteristic(characteristic: any, value: CharacteristicValue): Promise<void>;
|
|
54
56
|
setLightbulbCharacteristic(characteristic: any, value: CharacteristicValue): Promise<void>;
|
|
55
57
|
updateLightbulbCharacteristic(characteristic: any, value: CharacteristicValue): Promise<void>;
|
|
58
|
+
updateOn(): void;
|
|
59
|
+
updateHue(): void;
|
|
60
|
+
updateSaturation(): void;
|
|
61
|
+
updateBrightness(): void;
|
|
62
|
+
updateKelvin(): void;
|
|
63
|
+
setPower(value: any): void;
|
|
64
|
+
SetOnline(): Promise<void>;
|
|
65
|
+
SetOffline(): Promise<void>;
|
|
66
|
+
GetName(): string;
|
|
56
67
|
}
|
|
57
68
|
//# sourceMappingURL=platformAccessory.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platformAccessory.d.ts","sourceRoot":"","sources":["../src/platformAccessory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAE7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAC;AAIpD;;;;GAIG;AAEH,qBAAa,qBAAqB;
|
|
1
|
+
{"version":3,"file":"platformAccessory.d.ts","sourceRoot":"","sources":["../src/platformAccessory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAE7E,OAAO,EAAE,sBAAsB,EAAE,MAAM,YAAY,CAAC;AAIpD;;;;GAIG;AAEH,qBAAa,qBAAqB;IAsC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ;aACT,SAAS,EAAE,iBAAiB;IAC5C,OAAO,CAAC,QAAQ,CAAC,KAAK;IAvCxB,OAAO,CAAC,OAAO,CAAU;IACzB,OAAO,CAAC,kBAAkB,CAAW;IAErC,OAAO,CAAC,MAAM,CAAS;IAEvB,OAAO,CAAC,OAAO,CAAC;IAEhB;;;OAGG;IACH,OAAO,CAAC,MAAM,CAIZ;IAEF,OAAO,CAAC,QAAQ,CAId;IAEF,OAAO,CAAC,YAAY,CAIlB;IAEF,OAAO,CAAC,eAAe,CAGrB;IAEK,IAAI,EAAG,MAAM,CAAC;gBAGF,QAAQ,EAAE,sBAAsB,EACjC,SAAS,EAAE,iBAAiB,EAC3B,KAAK,KAAA,EACtB,QAAQ,KAAA;IAsDV;;;;;;;;;;;;OAYG;IACG,KAAK,IAAI,OAAO,CAAC,mBAAmB,CAAC;IAMrC,KAAK,CAAC,KAAK,EAAE,mBAAmB;IAkBhC,aAAa,CAAC,KAAK,EAAE,mBAAmB;IAaxC,MAAM,CAAC,KAAK,EAAE,mBAAmB;IAajC,aAAa,CAAC,KAAK,EAAE,mBAAmB;IAaxC,SAAS,CAAC,KAAK,EAAE,mBAAmB;IAe1C,WAAW,CAAC,GAAG,KAAA;IAOT,UAAU;IAQV,YAAY;IAOZ,YAAY,CAAC,QAAQ,KAAA;IAYrB,SAAS,CAAC,KAAK,KAAA;IAKf,8BAA8B;IAQ9B,sBAAsB,CAAC,QAAQ,KAAA;IAQ/B,sCAAsC,CAAC,IAAI,KAAA;IAM3C,kBAAkB;IAOlB,mBAAmB,CAAC,OAAO,KAAA;IAI3B,qCAAqC,CAAC,cAAc,KAAA,EAAE,KAAK,EAAG,mBAAmB;IAIjF,0BAA0B,CAAC,cAAc,KAAA,EAAE,KAAK,EAAG,mBAAmB;IAItE,6BAA6B,CAAC,cAAc,KAAA,EAAE,KAAK,EAAG,mBAAmB;IAI/E,QAAQ;IAIR,SAAS;IAIT,gBAAgB;IAIhB,gBAAgB;IAIhB,YAAY;IAIZ,QAAQ,CAAC,KAAK,KAAA;IAKD,SAAS;IAKT,UAAU;IAKhB,OAAO;CAIf"}
|
|
@@ -11,12 +11,11 @@ const bulb_1 = __importDefault(require("./bulb"));
|
|
|
11
11
|
* Each accessory may expose multiple services of different service types.
|
|
12
12
|
*/
|
|
13
13
|
class LifxPlatformAccessory {
|
|
14
|
-
constructor(platform,
|
|
14
|
+
constructor(platform, Accessory, light, settings) {
|
|
15
15
|
this.platform = platform;
|
|
16
|
-
this.
|
|
16
|
+
this.Accessory = Accessory;
|
|
17
17
|
this.light = light;
|
|
18
|
-
|
|
19
|
-
this.pollRequests = 0;
|
|
18
|
+
this.online = false;
|
|
20
19
|
/**
|
|
21
20
|
* These are just used to create a working example
|
|
22
21
|
* You should implement your own code to track the state of your accessory
|
|
@@ -40,11 +39,13 @@ class LifxPlatformAccessory {
|
|
|
40
39
|
majorVersion: 0,
|
|
41
40
|
minorVersion: 1,
|
|
42
41
|
};
|
|
42
|
+
this.UUID = Accessory.UUID;
|
|
43
43
|
this.Settings = settings;
|
|
44
|
+
this.online = true;
|
|
44
45
|
// get the LightBulb service if it exists, otherwise create a new LightBulb service
|
|
45
46
|
// you can create multiple services for each accessory
|
|
46
|
-
this.service = this.
|
|
47
|
-
this.informationService = this.
|
|
47
|
+
this.service = this.Accessory.getService(this.platform.Service.Lightbulb) || this.Accessory.addService(this.platform.Service.Lightbulb);
|
|
48
|
+
this.informationService = this.Accessory.getService(this.platform.Service.AccessoryInformation);
|
|
48
49
|
// set accessory information
|
|
49
50
|
this.setFirmwareVersion();
|
|
50
51
|
this.setHardwareInformation(() => {
|
|
@@ -70,7 +71,7 @@ class LifxPlatformAccessory {
|
|
|
70
71
|
this.service.getCharacteristic(this.platform.Characteristic.Saturation)
|
|
71
72
|
.onSet(this.setSaturation.bind(this)); // SET - bind to the 'setBrightness` method below
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
+
this.resetWatcher();
|
|
74
75
|
});
|
|
75
76
|
});
|
|
76
77
|
}
|
|
@@ -93,82 +94,117 @@ class LifxPlatformAccessory {
|
|
|
93
94
|
return isOn;
|
|
94
95
|
}
|
|
95
96
|
async setOn(value) {
|
|
96
|
-
this.
|
|
97
|
-
if (this.
|
|
98
|
-
this.
|
|
97
|
+
this.resetWatcher();
|
|
98
|
+
if (!this.online) {
|
|
99
|
+
this.updateLightbuldCharacteristics();
|
|
100
|
+
//place Timeout right here
|
|
99
101
|
}
|
|
100
102
|
else {
|
|
101
|
-
this.
|
|
103
|
+
this.States.power = value;
|
|
104
|
+
if (this.States.power > 0) {
|
|
105
|
+
this.light.on(this.Settings.Duration);
|
|
106
|
+
}
|
|
107
|
+
else {
|
|
108
|
+
this.light.off(this.Settings.Duration);
|
|
109
|
+
}
|
|
110
|
+
this.platform.log.debug('Set Characteristic On ->', value);
|
|
102
111
|
}
|
|
103
|
-
this.platform.log.debug('Set Characteristic On ->', value);
|
|
104
112
|
}
|
|
105
113
|
async setBrightness(value) {
|
|
106
|
-
this.
|
|
107
|
-
|
|
108
|
-
|
|
114
|
+
this.resetWatcher();
|
|
115
|
+
if (!this.online) {
|
|
116
|
+
this.updateLightbuldCharacteristics();
|
|
117
|
+
//place Timeout right here
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
this.States.color.brightness = value;
|
|
121
|
+
bulb_1.default.update(this.light, this.States, this.Settings.BrightnessDuration);
|
|
122
|
+
// this.updateLightbuldCharacteristics();
|
|
123
|
+
this.platform.log.debug('Set Characteristic Brightness -> ', value);
|
|
124
|
+
}
|
|
109
125
|
}
|
|
110
126
|
async setHue(value) {
|
|
111
|
-
this.
|
|
112
|
-
|
|
113
|
-
|
|
127
|
+
this.resetWatcher();
|
|
128
|
+
if (!this.online) {
|
|
129
|
+
this.updateLightbuldCharacteristics();
|
|
130
|
+
//place Timeout right here
|
|
131
|
+
}
|
|
132
|
+
else {
|
|
133
|
+
this.States.color.hue = value;
|
|
134
|
+
bulb_1.default.update(this.light, this.States, this.Settings.ColorDuration);
|
|
135
|
+
// this.updateLightbuldCharacteristics();
|
|
136
|
+
this.platform.log.debug('Set Characteristic Hue -> ', value);
|
|
137
|
+
}
|
|
114
138
|
}
|
|
115
139
|
async setSaturation(value) {
|
|
116
|
-
this.
|
|
117
|
-
|
|
118
|
-
|
|
140
|
+
this.resetWatcher();
|
|
141
|
+
if (!this.online) {
|
|
142
|
+
this.updateLightbuldCharacteristics();
|
|
143
|
+
//place Timeout right here
|
|
144
|
+
}
|
|
145
|
+
else {
|
|
146
|
+
this.States.color.saturation = value;
|
|
147
|
+
bulb_1.default.update(this.light, this.States, this.Settings.ColorDuration);
|
|
148
|
+
// this.updateLightbuldCharacteristics();
|
|
149
|
+
this.platform.log.debug('Set Characteristic Saturation -> ', value);
|
|
150
|
+
}
|
|
119
151
|
}
|
|
120
152
|
async setKelvin(value) {
|
|
121
|
-
this.
|
|
122
|
-
this.
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
153
|
+
this.resetWatcher();
|
|
154
|
+
if (!this.online) {
|
|
155
|
+
this.updateLightbuldCharacteristics();
|
|
156
|
+
//place Timeout right here
|
|
157
|
+
}
|
|
158
|
+
else {
|
|
159
|
+
this.States.color.hue = 0;
|
|
160
|
+
this.States.color.saturation = 0;
|
|
161
|
+
this.States.color.kelvin = bulb_1.default.getKelvin(value);
|
|
162
|
+
// this.updateLightbuldCharacteristics();
|
|
163
|
+
bulb_1.default.update(this.light, this.States, this.Settings.ColorDuration);
|
|
164
|
+
this.platform.log.debug('Set Characteristic Kelvin -> ', value);
|
|
165
|
+
}
|
|
127
166
|
}
|
|
128
167
|
handleError(err) {
|
|
129
|
-
this.platform.log.error
|
|
168
|
+
this.platform.log.debug('Bulb throughs error', err);
|
|
169
|
+
this.SetOffline();
|
|
130
170
|
// if you need to return an error to show the device as "Not Responding" in the Home app:
|
|
131
171
|
// throw new this.platform.api.hap.HapStatusError(this.platform.api.hap.HAPStatus.SERVICE_COMMUNICATION_FAILURE);
|
|
132
172
|
}
|
|
133
|
-
async watchState(
|
|
134
|
-
setInterval(() => {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
callback(state);
|
|
140
|
-
this.pollRequests = 0;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
else {
|
|
144
|
-
this.pollRequests = 0;
|
|
145
|
-
}
|
|
146
|
-
}, (err) => this.handleError(err));
|
|
147
|
-
}, 3000);
|
|
173
|
+
async watchState() {
|
|
174
|
+
this.watcher = setInterval(() => {
|
|
175
|
+
this.updateStates(() => {
|
|
176
|
+
this.platform.log.debug('updated', this.States);
|
|
177
|
+
});
|
|
178
|
+
}, 5000);
|
|
148
179
|
}
|
|
149
|
-
async
|
|
150
|
-
this.
|
|
151
|
-
|
|
180
|
+
async resetWatcher() {
|
|
181
|
+
if (this.watcher) {
|
|
182
|
+
clearInterval(this.watcher);
|
|
183
|
+
}
|
|
184
|
+
this.watchState();
|
|
152
185
|
}
|
|
153
186
|
async updateStates(callback) {
|
|
154
187
|
bulb_1.default.getStates(this.light, (state) => {
|
|
155
|
-
|
|
156
|
-
|
|
188
|
+
if (state !== null) {
|
|
189
|
+
this.SetOnline();
|
|
190
|
+
this.setStates(state);
|
|
191
|
+
callback();
|
|
192
|
+
}
|
|
193
|
+
else {
|
|
194
|
+
this.SetOffline();
|
|
195
|
+
}
|
|
157
196
|
}, (err) => this.handleError(err));
|
|
158
197
|
}
|
|
159
|
-
async
|
|
160
|
-
this.
|
|
161
|
-
this.
|
|
162
|
-
this.setLightbulbCharacteristic(this.platform.Characteristic.Saturation, state.color.saturation);
|
|
163
|
-
this.setLightbulbCharacteristic(this.platform.Characteristic.Brightness, state.color.brightness);
|
|
164
|
-
this.setLightbulbCharacteristic(this.platform.Characteristic.ColorTemperature, bulb_1.default.getColorTemperatur(state.color.kelvin));
|
|
198
|
+
async setStates(state) {
|
|
199
|
+
this.States = state;
|
|
200
|
+
this.updateLightbuldCharacteristics();
|
|
165
201
|
}
|
|
166
|
-
async updateLightbuldCharacteristics(
|
|
167
|
-
this.
|
|
168
|
-
this.
|
|
169
|
-
this.
|
|
170
|
-
this.
|
|
171
|
-
this.
|
|
202
|
+
async updateLightbuldCharacteristics() {
|
|
203
|
+
this.updateOn();
|
|
204
|
+
this.updateHue();
|
|
205
|
+
this.updateSaturation();
|
|
206
|
+
this.updateBrightness();
|
|
207
|
+
this.updateKelvin();
|
|
172
208
|
}
|
|
173
209
|
async setHardwareInformation(callback) {
|
|
174
210
|
bulb_1.default.getHardwareInformation(this.light, (info) => {
|
|
@@ -200,6 +236,36 @@ class LifxPlatformAccessory {
|
|
|
200
236
|
async updateLightbulbCharacteristic(characteristic, value) {
|
|
201
237
|
this.service.updateCharacteristic(characteristic, value);
|
|
202
238
|
}
|
|
239
|
+
updateOn() {
|
|
240
|
+
this.updateLightbulbCharacteristic(this.platform.Characteristic.On, this.States.power);
|
|
241
|
+
}
|
|
242
|
+
updateHue() {
|
|
243
|
+
this.updateLightbulbCharacteristic(this.platform.Characteristic.Hue, this.States.color.hue);
|
|
244
|
+
}
|
|
245
|
+
updateSaturation() {
|
|
246
|
+
this.updateLightbulbCharacteristic(this.platform.Characteristic.Saturation, this.States.color.saturation);
|
|
247
|
+
}
|
|
248
|
+
updateBrightness() {
|
|
249
|
+
this.updateLightbulbCharacteristic(this.platform.Characteristic.Brightness, this.States.color.brightness);
|
|
250
|
+
}
|
|
251
|
+
updateKelvin() {
|
|
252
|
+
this.updateLightbulbCharacteristic(this.platform.Characteristic.ColorTemperature, bulb_1.default.getColorTemperatur(this.States.color.kelvin));
|
|
253
|
+
}
|
|
254
|
+
setPower(value) {
|
|
255
|
+
this.States.power = value;
|
|
256
|
+
this.updateOn();
|
|
257
|
+
}
|
|
258
|
+
async SetOnline() {
|
|
259
|
+
this.online = true;
|
|
260
|
+
this.setPower(1);
|
|
261
|
+
}
|
|
262
|
+
async SetOffline() {
|
|
263
|
+
this.online = false;
|
|
264
|
+
this.setPower(0);
|
|
265
|
+
}
|
|
266
|
+
GetName() {
|
|
267
|
+
return this.States.label;
|
|
268
|
+
}
|
|
203
269
|
}
|
|
204
270
|
exports.LifxPlatformAccessory = LifxPlatformAccessory;
|
|
205
271
|
//# sourceMappingURL=platformAccessory.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"platformAccessory.js","sourceRoot":"","sources":["../src/platformAccessory.ts"],"names":[],"mappings":";;;;;;AAIA,kDAA0B;AAE1B;;;;GAIG;AAEH,MAAa,qBAAqB;
|
|
1
|
+
{"version":3,"file":"platformAccessory.js","sourceRoot":"","sources":["../src/platformAccessory.ts"],"names":[],"mappings":"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"}
|
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.7",
|
|
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": {
|
|
@@ -24,7 +24,14 @@
|
|
|
24
24
|
"prepublishOnly": "npm run lint && npm run build"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
|
-
"homebridge-plugin"
|
|
27
|
+
"homebridge-plugin",
|
|
28
|
+
"homebridge",
|
|
29
|
+
"plugin",
|
|
30
|
+
"lifx",
|
|
31
|
+
"bulb",
|
|
32
|
+
"smartbulb",
|
|
33
|
+
"smartlight",
|
|
34
|
+
"homekit"
|
|
28
35
|
],
|
|
29
36
|
"dependencies": {
|
|
30
37
|
"lifx-lan-client": "^1.1.0"
|