-
-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config): add Ring Alarm Panic Button Gen2 (#6453)
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
71 changes: 71 additions & 0 deletions
71
packages/config/config/devices/0x0346/panic_button_gen2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"manufacturer": "Ring", | ||
"manufacturerId": "0x0346", | ||
"label": "5F56E9", | ||
"description": "Panic Button (2nd Gen)", | ||
"devices": [ | ||
{ | ||
"productType": "0x0801", | ||
"productId": "0x0401" | ||
} | ||
], | ||
"firmwareVersion": { | ||
"min": "0.0", | ||
"max": "255.255" | ||
}, | ||
"paramInformation": [ | ||
{ | ||
"#": "1", | ||
"label": "Heartbeat Interval", | ||
"valueSize": 1, | ||
"unit": "minutes", | ||
"minValue": 1, | ||
"maxValue": 70, | ||
"defaultValue": 70 | ||
}, | ||
{ | ||
"#": "2", | ||
"label": "Message Retry Attempt Limit", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 5, | ||
"defaultValue": 1 | ||
}, | ||
{ | ||
"#": "3", | ||
"label": "Delay Between Retry Attempts", | ||
"valueSize": 1, | ||
"unit": "seconds", | ||
"minValue": 1, | ||
"maxValue": 60, | ||
"defaultValue": 5 | ||
}, | ||
{ | ||
"#": "4", | ||
"label": "Button Hold-Time", | ||
"valueSize": 1, | ||
"unit": "0.5 seconds", | ||
"minValue": 1, | ||
"maxValue": 20, | ||
"defaultValue": 6 | ||
}, | ||
{ | ||
"#": "5", | ||
"label": "Supervision Report Timeout", | ||
"valueSize": 2, | ||
"unit": "ms", | ||
"minValue": 500, | ||
"maxValue": 30000, | ||
"defaultValue": 10000 | ||
}, | ||
{ | ||
"#": "6", | ||
"label": "One Shot Timer", | ||
"valueSize": 2, | ||
"unit": "seconds", | ||
"minValue": 500, | ||
"maxValue": 30000, | ||
"defaultValue": 10000 | ||
} | ||
] | ||
} |