-
-
Notifications
You must be signed in to change notification settings - Fork 630
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 new device config for Philips DDL240X-15HZW lock (#…
…7498) Co-authored-by: Dominic Griesel <[email protected]>
- Loading branch information
Showing
1 changed file
with
118 additions
and
0 deletions.
There are no files selected for viewing
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,118 @@ | ||
{ | ||
"manufacturer": "Philips", | ||
"manufacturerId": "0x021d", | ||
"label": "DDL240X-15HZW", | ||
"description": "Home Access Keyed Touchscreen Deadbolt", | ||
"devices": [ | ||
{ | ||
"productType": "0x0903", | ||
"productId": "0x00d4", | ||
"zwaveAllianceId": 4973 | ||
} | ||
], | ||
"firmwareVersion": { | ||
"min": "0.0", | ||
"max": "255.255" | ||
}, | ||
"associations": { | ||
"1": { | ||
"label": "Lifeline", | ||
"maxNodes": 5, | ||
"isLifeline": true | ||
}, | ||
"2": { | ||
"label": "On/Off control", | ||
"maxNodes": 5 | ||
} | ||
}, | ||
"paramInformation": [ | ||
{ | ||
"#": "1", | ||
"label": "Volume Level", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 2, | ||
"defaultValue": 2, | ||
"options": [ | ||
{ | ||
"label": "Silent", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Low volume", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "High volume", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "2", | ||
"$import": "~/templates/master_template.json#base_enable_disable", | ||
"label": "LED Indicator", | ||
"description": "Enable/Disable the LED on the inside of the product.", | ||
"defaultValue": 1 | ||
}, | ||
{ | ||
"#": "3", | ||
"label": "Battery Report Interval", | ||
"valueSize": 2, | ||
"unit": "minutes", | ||
"minValue": 0, | ||
"maxValue": 14400, | ||
"defaultValue": 1440, | ||
"options": [ | ||
{ | ||
"label": "Disable", | ||
"value": 0 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "4", | ||
"label": "Association Group 2: Basic Set Value", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 6, | ||
"defaultValue": 1, | ||
"options": [ | ||
{ | ||
"label": "Disable completely", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Unlocked: 0xff; Locked: 0x00", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "Unlocked: 0x00; Locked: 0xff", | ||
"value": 2 | ||
}, | ||
{ | ||
"label": "Unlocked: 0xff; Locked: No command", | ||
"value": 3 | ||
}, | ||
{ | ||
"label": "Unlocked: No command; Locked: 0x00", | ||
"value": 4 | ||
}, | ||
{ | ||
"label": "Unlocked: 0x00; Locked: No command", | ||
"value": 5 | ||
}, | ||
{ | ||
"label": "Unlocked: No command; Locked: 0xff", | ||
"value": 6 | ||
} | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"inclusion": "1. Enter master mode(input X + X + Master PIN Code + √)\n2. Input \"0\" to enter \"Network settings\"\n3. Input \"1 + √\" to enter \"Include mode\"", | ||
"exclusion": "1. Enter master mode(input X + X + Master PIN Code + √ )\n2. Input \"0\" to enter \"Network settings\"\n3. Input \"2 + √\" to enter \"Exclusion mode\"", | ||
"reset": "1. Operations on lock\n1) Remove one of the batteries.\n2) Press and hold the Reset Button.\n3) While pressing, insert the removed battery. When you hear the voice prompt, the factory reset is complete.\n\n2. Please use this procedure only when the network primary controller is missing or otherwise inoperable", | ||
"manual": "https://products.z-wavealliance.org/ProductManual/File?folder=&filename=cert_portal/certs/1010/DDL240X-15HZWManualV2.0.pdf" | ||
} | ||
} |