Skip to content

Commit

Permalink
Added orb security button set
Browse files Browse the repository at this point in the history
### ADDED
- Button collection for when the system is disarming.
  • Loading branch information
mrjackyliang committed Feb 19, 2024
1 parent 0cb52b2 commit 95107e7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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.2.0",
"version": "3.2.1",
"description": "Homebridge security system platform for ADT Pulse",
"main": "./build/index.js",
"exports": "./build/index.js",
Expand Down
19 changes: 13 additions & 6 deletions src/lib/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,32 +65,39 @@ export const collectionOrbSecurityButtons: CollectionOrbSecurityButtons = [
loadingText: 'Arming Stay',
},
],
[
{
buttonDisabled: false,
buttonText: 'Disarm',
loadingText: 'Disarming',
},
],
[
{
buttonDisabled: true,
buttonText: 'Arming Away',
buttonText: 'Disarming',
loadingText: null,
},
],
[
{
buttonDisabled: true,
buttonText: 'Arming Stay',
buttonText: 'Arming Away',
loadingText: null,
},
],
[
{
buttonDisabled: true,
buttonText: 'Arming Night',
buttonText: 'Arming Stay',
loadingText: null,
},
],
[
{
buttonDisabled: false,
buttonText: 'Disarm',
loadingText: 'Disarming',
buttonDisabled: true,
buttonText: 'Arming Night',
loadingText: null,
},
],
[
Expand Down

0 comments on commit 95107e7

Please sign in to comment.