Fixing issue where flux was unresponsive
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Brandon Watson 2022-01-03 13:13:50 -05:00
parent 8825a116fe
commit 55c65dac84
5 changed files with 44 additions and 37 deletions

9
.vscode/launch.json vendored
View File

@ -8,9 +8,12 @@
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Launch Program", "name": "Launch Program",
"preLaunchTask": "build and install", "preLaunchTask": "build",
"program": "/Users/brandonwatson/.npm-global/bin/homebridge", "program": "/Users/brandonwatson/.nvm/versions/node/v14.15.0/lib/node_modules/homebridge/bin/homebridge",
"sourceMaps": true, "env": {
"HOMEBRIDGE_OPTS": "/Users/brandonwatson/.homebridge"
},
"sourceMaps": true
} }
] ]
} }

1
.vscode/tasks.json vendored
View File

@ -6,6 +6,7 @@
{ {
"type": "npm", "type": "npm",
"script": "build", "script": "build",
"label": "build",
"problemMatcher": [] "problemMatcher": []
}, },
{ {

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@watsonb8/homebridge-flux", "name": "@watsonb8/homebridge-flux",
"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-flux", "name": "@watsonb8/homebridge-flux",
"version": "1.1.1", "version": "1.1.2",
"description": "", "description": "",
"main": "bin/index.js", "main": "bin/index.js",
"publishConfig": { "publishConfig": {

View File

@ -8,7 +8,6 @@ import { IConfig } from "./models/iConfig";
import { GetTimesResult, getTimes } from "suncalc"; import { GetTimesResult, getTimes } from "suncalc";
import HueError = require("node-hue-api/lib/HueError"); import HueError = require("node-hue-api/lib/HueError");
import cron from "node-cron"; import cron from "node-cron";
import { callbackify } from "util";
let Service: HAPNodeJS.Service; let Service: HAPNodeJS.Service;
let Characteristic: HAPNodeJS.Characteristic; let Characteristic: HAPNodeJS.Characteristic;
@ -102,6 +101,7 @@ export class FluxAccessory implements IAccessory {
.getCharacteristic(Characteristic.On) .getCharacteristic(Characteristic.On)
//@ts-ignore //@ts-ignore
.on("set", this.onSetEnabled) .on("set", this.onSetEnabled)
//@ts-ignore
.on("get", this.onGetEnabled); .on("get", this.onGetEnabled);
} }
@ -134,9 +134,12 @@ export class FluxAccessory 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 onGetEnabled = (): boolean => { private onGetEnabled(
return this._isActive; callback: (error: Error | null, value: boolean) => void
}; ): void {
callback(null, this._isActive);
// return this._isActive;
}
/** /**
* Called by homebridge to gather services. * Called by homebridge to gather services.