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 type: docker
name: default name: default
node:
lan: internal
steps: steps:
- name: build - name: build
image: node image: node
@ -57,6 +60,62 @@ steps:
exclude: exclude:
- pull_request - 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 - name: Notify
image: drillster/drone-email image: drillster/drone-email
settings: settings:

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.3",
"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.3",
"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);
}; };
/** /**