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",
"version": "1.1.1",
"version": "1.1.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -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": {

View File

@ -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);
};
/**