Fixing unresponsiveness issue
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
8bf06215af
commit
2fcf0c89bf
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@watsonb8/homebridge-hue-chase",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@watsonb8/homebridge-hue-chase",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "A Phillips Hue add on for creating chase sequences.",
|
||||
"main": "bin/index.js",
|
||||
"publishConfig": {
|
||||
|
14
src/chase.ts
14
src/chase.ts
@ -76,12 +76,14 @@ export class Chase implements IAccessory {
|
||||
.getCharacteristic(Characteristic.On)
|
||||
//@ts-ignore
|
||||
.on("set", this.onPowerSet)
|
||||
//@ts-ignore
|
||||
.on("get", this.onPowerGet);
|
||||
|
||||
this._lightbulbService
|
||||
.getCharacteristic(Characteristic.Brightness)
|
||||
//@ts-ignore
|
||||
.on("set", this.onBrightnessSet)
|
||||
//@ts-ignore
|
||||
.on("get", this.onBrightnessGet);
|
||||
}
|
||||
|
||||
@ -117,8 +119,10 @@ export class Chase implements IAccessory {
|
||||
* Handler for switch get event
|
||||
* @param callback The callback function to call when complete
|
||||
*/
|
||||
private onPowerGet = () => {
|
||||
return this._isActive;
|
||||
private onPowerGet = (
|
||||
callback: (error: Error | null, value: boolean) => void
|
||||
) => {
|
||||
return callback(null, this._isActive);
|
||||
};
|
||||
|
||||
private onBrightnessSet = async (
|
||||
@ -134,8 +138,10 @@ export class Chase implements IAccessory {
|
||||
return callback();
|
||||
};
|
||||
|
||||
private onBrightnessGet = () => {
|
||||
return this._brightness;
|
||||
private onBrightnessGet = (
|
||||
callback: (error: Error | null, value: number) => void
|
||||
) => {
|
||||
return callback(null, this._brightness);
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user