Skip to content

Commit

Permalink
Added device status documentation
Browse files Browse the repository at this point in the history
### FIXED
- Wrong engine version specified for Homebridge v2.0 beta (attempt 2).

### ADDED
- The "Installing" status for sensors currently being installed.
- The "Tripped" status for door/window sensors.
  • Loading branch information
mrjackyliang committed Sep 24, 2024
1 parent ec16a06 commit 75bd801
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-adt-pulse",
"displayName": "Homebridge ADT Pulse",
"version": "3.4.2",
"version": "3.4.3",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
Expand Down Expand Up @@ -62,7 +62,7 @@
],
"homepage": "https://github.com/mrjackyliang/homebridge-adt-pulse",
"engines": {
"homebridge": "~1.8.0 || ~2.0.0-beta.20",
"homebridge": "~1.8.0 || ^2.0.0-beta.0",
"node": ">=20"
},
"dependencies": {
Expand Down
10 changes: 10 additions & 0 deletions src/lib/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand All @@ -185,12 +186,14 @@ export const collectionSensorActions: CollectionSensorActions = [
'Bypassed, Closed',
'Bypassed, Open',
'Closed',
'Installing',
'Low Battery, Closed',
'Low Battery, Open',
'Offline',
'Open',
'Tampered, Closed',
'Tampered, Open',
'Tripped',
'Trouble, Closed',
'Trouble, Open',
'Unknown',
Expand All @@ -203,6 +206,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand All @@ -222,6 +226,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand All @@ -241,6 +246,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand All @@ -260,6 +266,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand All @@ -281,6 +288,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'Bypassed, Motion',
'Bypassed, No Motion',
'Bypassed, Okay',
'Installing',
'Low Battery, Motion',
'Low Battery, No Motion',
'Low Battery, Okay',
Expand All @@ -304,6 +312,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand All @@ -323,6 +332,7 @@ export const collectionSensorActions: CollectionSensorActions = [
'ALARM, Tripped',
'Bypassed, Okay',
'Bypassed, Tripped',
'Installing',
'Low Battery, Okay',
'Low Battery, Tripped',
'Offline',
Expand Down

0 comments on commit 75bd801

Please sign in to comment.