Fixing unresponsiveness issue
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Brandon Watson 2022-01-03 13:19:16 -05:00
parent 8bf06215af
commit 2fcf0c89bf
3 changed files with 12 additions and 6 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@watsonb8/homebridge-hue-chase", "name": "@watsonb8/homebridge-hue-chase",
"version": "1.1.1", "version": "1.1.2",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@watsonb8/homebridge-hue-chase", "name": "@watsonb8/homebridge-hue-chase",
"version": "1.1.1", "version": "1.1.2",
"description": "A Phillips Hue add on for creating chase sequences.", "description": "A Phillips Hue add on for creating chase sequences.",
"main": "bin/index.js", "main": "bin/index.js",
"publishConfig": { "publishConfig": {

View File

@ -76,12 +76,14 @@ export class Chase implements IAccessory {
.getCharacteristic(Characteristic.On) .getCharacteristic(Characteristic.On)
//@ts-ignore //@ts-ignore
.on("set", this.onPowerSet) .on("set", this.onPowerSet)
//@ts-ignore
.on("get", this.onPowerGet); .on("get", this.onPowerGet);
this._lightbulbService this._lightbulbService
.getCharacteristic(Characteristic.Brightness) .getCharacteristic(Characteristic.Brightness)
//@ts-ignore //@ts-ignore
.on("set", this.onBrightnessSet) .on("set", this.onBrightnessSet)
//@ts-ignore
.on("get", this.onBrightnessGet); .on("get", this.onBrightnessGet);
} }
@ -117,8 +119,10 @@ export class Chase implements IAccessory {
* Handler for switch get event * Handler for switch get event
* @param callback The callback function to call when complete * @param callback The callback function to call when complete
*/ */
private onPowerGet = () => { private onPowerGet = (
return this._isActive; callback: (error: Error | null, value: boolean) => void
) => {
return callback(null, this._isActive);
}; };
private onBrightnessSet = async ( private onBrightnessSet = async (
@ -134,8 +138,10 @@ export class Chase implements IAccessory {
return callback(); return callback();
}; };
private onBrightnessGet = () => { private onBrightnessGet = (
return this._brightness; callback: (error: Error | null, value: number) => void
) => {
return callback(null, this._brightness);
}; };
/** /**