Skip to content

Commit 75bd801

Browse files
committed
Added device status documentation
### 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.
1 parent ec16a06 commit 75bd801

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "homebridge-adt-pulse",
33
"displayName": "Homebridge ADT Pulse",
4-
"version": "3.4.2",
4+
"version": "3.4.3",
55
"description": "Homebridge security system platform for ADT Pulse",
66
"main": "./build/index.js",
77
"exports": "./build/index.js",
@@ -62,7 +62,7 @@
6262
],
6363
"homepage": "https://github.com/mrjackyliang/homebridge-adt-pulse",
6464
"engines": {
65-
"homebridge": "~1.8.0 || ~2.0.0-beta.20",
65+
"homebridge": "~1.8.0 || ^2.0.0-beta.0",
6666
"node": ">=20"
6767
},
6868
"dependencies": {

src/lib/items.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ export const collectionSensorActions: CollectionSensorActions = [
165165
'ALARM, Tripped',
166166
'Bypassed, Okay',
167167
'Bypassed, Tripped',
168+
'Installing',
168169
'Low Battery, Okay',
169170
'Low Battery, Tripped',
170171
'Offline',
@@ -185,12 +186,14 @@ export const collectionSensorActions: CollectionSensorActions = [
185186
'Bypassed, Closed',
186187
'Bypassed, Open',
187188
'Closed',
189+
'Installing',
188190
'Low Battery, Closed',
189191
'Low Battery, Open',
190192
'Offline',
191193
'Open',
192194
'Tampered, Closed',
193195
'Tampered, Open',
196+
'Tripped',
194197
'Trouble, Closed',
195198
'Trouble, Open',
196199
'Unknown',
@@ -203,6 +206,7 @@ export const collectionSensorActions: CollectionSensorActions = [
203206
'ALARM, Tripped',
204207
'Bypassed, Okay',
205208
'Bypassed, Tripped',
209+
'Installing',
206210
'Low Battery, Okay',
207211
'Low Battery, Tripped',
208212
'Offline',
@@ -222,6 +226,7 @@ export const collectionSensorActions: CollectionSensorActions = [
222226
'ALARM, Tripped',
223227
'Bypassed, Okay',
224228
'Bypassed, Tripped',
229+
'Installing',
225230
'Low Battery, Okay',
226231
'Low Battery, Tripped',
227232
'Offline',
@@ -241,6 +246,7 @@ export const collectionSensorActions: CollectionSensorActions = [
241246
'ALARM, Tripped',
242247
'Bypassed, Okay',
243248
'Bypassed, Tripped',
249+
'Installing',
244250
'Low Battery, Okay',
245251
'Low Battery, Tripped',
246252
'Offline',
@@ -260,6 +266,7 @@ export const collectionSensorActions: CollectionSensorActions = [
260266
'ALARM, Tripped',
261267
'Bypassed, Okay',
262268
'Bypassed, Tripped',
269+
'Installing',
263270
'Low Battery, Okay',
264271
'Low Battery, Tripped',
265272
'Offline',
@@ -281,6 +288,7 @@ export const collectionSensorActions: CollectionSensorActions = [
281288
'Bypassed, Motion',
282289
'Bypassed, No Motion',
283290
'Bypassed, Okay',
291+
'Installing',
284292
'Low Battery, Motion',
285293
'Low Battery, No Motion',
286294
'Low Battery, Okay',
@@ -304,6 +312,7 @@ export const collectionSensorActions: CollectionSensorActions = [
304312
'ALARM, Tripped',
305313
'Bypassed, Okay',
306314
'Bypassed, Tripped',
315+
'Installing',
307316
'Low Battery, Okay',
308317
'Low Battery, Tripped',
309318
'Offline',
@@ -323,6 +332,7 @@ export const collectionSensorActions: CollectionSensorActions = [
323332
'ALARM, Tripped',
324333
'Bypassed, Okay',
325334
'Bypassed, Tripped',
335+
'Installing',
326336
'Low Battery, Okay',
327337
'Low Battery, Tripped',
328338
'Offline',

0 commit comments

Comments
 (0)