-
-
Notifications
You must be signed in to change notification settings - Fork 633
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
58 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,39 @@ | ||
{ | ||
"manufacturer": "Lockly", | ||
"manufacturerId": "0x043d", | ||
"label": "PGD728F ZPU", | ||
"description": "Smart Lock - Secure Plus", | ||
"devices": [ | ||
{ | ||
"productType": "0x0003", | ||
"productId": "0x0001", | ||
"zwaveAllianceId": [ | ||
4689, | ||
4712 | ||
] | ||
} | ||
], | ||
"firmwareVersion": { | ||
"min": "0.0", | ||
"max": "255.255" | ||
}, | ||
"associations": { | ||
"1": { | ||
"label": "Lifeline", | ||
"maxNodes": 5, | ||
"isLifeline": true | ||
} | ||
}, | ||
"paramInformation": [ | ||
{ | ||
"#": "1", | ||
"$import": "templates/lockly_template.json#secure_plus_lock_fp_sensor", | ||
"label": "Activated or Deactivated Fp Module" | ||
} | ||
], | ||
"metadata": { | ||
"inclusion": "1. Bring the DoorLock within direct range of your controller.\n2. Carefully remove the battery compartment cover. \n3. Put your Z-Wave controller into inclusion mode. \n4. Simply press the Program button to enter programming mode.\n5. Select “2HB” to enter hub action menu.\n6. Select “AD” and wait doorlock to finish the inclusion", | ||
"exclusion": "1. Make sure the DoorLock is powered on and located within direct\n range of your Z-Wave gateway controller .\n2. Put your Z-Wave controller into exclusion mode .\n3. Simply press the Program button to enter programming mode.\n4. Select “2HB” to enter hub action menu.\n5. Select “DE” and wait doorlock to finish the exclusion", | ||
"reset": "When your network’s primary controller is missing or otherwise \ninoperable, you may need to reset the device to factory settings \nmanually. Tocomplete \nthe process, make sure your doorlock has not been synced tothe \nsmart phone, then press and hold the reset button at least 3 sec to \nreset the doorlock and Z-Wave module. Also, you can restore the \nlock to factory default settings while the lock is synching with the \nsmartphone.\nWhen executing factory reset, Z-Wave module will issue the following \ninstructions to smart home controller.\nGroup:\"LIFELINE\" group\nInstruction: DEVICE_RESET_LOCALLY_NOTIFICATION" | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
packages/config/config/devices/0x043d/templates/lockly_template.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,19 @@ | ||
{ | ||
"secure_plus_lock_fp_sensor": { | ||
"description": "Whether the fingerprint sensor is enabled", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 1, | ||
"defaultValue": 0, | ||
"options": [ | ||
{ | ||
"label": "Activated fp module", | ||
"value": 0 // This seems flipped but this is from the product manual | ||
}, | ||
{ | ||
"label": "Deactivated fp module", | ||
"value": 1 | ||
} | ||
] | ||
} | ||
} |