Fixing issue where flux was unresponsive
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:
@ -8,7 +8,6 @@ import { IConfig } from "./models/iConfig";
|
||||
import { GetTimesResult, getTimes } from "suncalc";
|
||||
import HueError = require("node-hue-api/lib/HueError");
|
||||
import cron from "node-cron";
|
||||
import { callbackify } from "util";
|
||||
|
||||
let Service: HAPNodeJS.Service;
|
||||
let Characteristic: HAPNodeJS.Characteristic;
|
||||
@ -102,6 +101,7 @@ export class FluxAccessory implements IAccessory {
|
||||
.getCharacteristic(Characteristic.On)
|
||||
//@ts-ignore
|
||||
.on("set", this.onSetEnabled)
|
||||
//@ts-ignore
|
||||
.on("get", this.onGetEnabled);
|
||||
}
|
||||
|
||||
@ -134,9 +134,12 @@ export class FluxAccessory implements IAccessory {
|
||||
* Handler for switch get event
|
||||
* @param callback The callback function to call when complete
|
||||
*/
|
||||
private onGetEnabled = (): boolean => {
|
||||
return this._isActive;
|
||||
};
|
||||
private onGetEnabled(
|
||||
callback: (error: Error | null, value: boolean) => void
|
||||
): void {
|
||||
callback(null, this._isActive);
|
||||
// return this._isActive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Called by homebridge to gather services.
|
||||
|
Reference in New Issue
Block a user