2 Commits
1.1.1 ... 1.1.3

Author SHA1 Message Date
53506757bf Adding deploy steps
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is failing
2022-01-07 18:57:14 -05:00
2fcf0c89bf Fixing unresponsiveness issue
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-03 13:19:16 -05:00
4 changed files with 71 additions and 6 deletions

View File

@ -2,6 +2,9 @@ kind: pipeline
type: docker
name: default
node:
lan: internal
steps:
- name: build
image: node
@ -57,6 +60,62 @@ steps:
exclude:
- pull_request
- name: remove old package
image: appleboy/drone-ssh
environment:
SSH_USER:
from_secret: ssh_user
settings:
host: homebridge.me
envs:
- SSH_USER
username:
from_secret: ssh_user
key:
from_secret: ssh_key
port: 22
script:
- rm -r /home/$SSH_USER/.npm-global/lib/node_modules/@watsonb8/homebridge-hue-chase
when:
event:
- tag
exclude:
- pull_request
- name: deploy
image: appleboy/drone-ssh
settings:
host: homebridge.me
username:
from_secret: ssh_user
key:
from_secret: ssh_key
port: 22
script:
- npm install -g @watsonb8/homebridge-hue-chase --registry http://10.44.1.6:4873
when:
event:
- tag
exclude:
- pull_request
- name: restart homebridge
image: appleboy/drone-ssh
settings:
host: homebridge.me
username:
from_secret: elevated_ssh_user
key:
from_secret: ssh_key
port: 22
script:
- systemctl restart homebridge
when:
event:
- tag
exclude:
- pull_request
- name: Notify
image: drillster/drone-email
settings:

2
package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@watsonb8/homebridge-hue-chase",
"version": "1.1.1",
"version": "1.1.3",
"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);
};
/**