Skip to content

Commit

Permalink
fix(config): remove endpoint workaround for Zooz ZEN30 800LR (#6931)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone authored Jun 14, 2024
1 parent 3e3dcc6 commit 233b983
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions packages/config/config/devices/0x027a/zen30.json
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,16 @@
"$import": "templates/zooz_template.json#local_programming"
}
],
"compat": {
// This device exposes a Multilevel Switch (Dimmer) on endpoint 0, and a Binary Switch (Relay) on endpoint 1
// Our heuristic currently detects endpoint 1 as unnecessary and hides it from the user.
"preserveEndpoints": "*",
"preserveRootApplicationCCValueIDs": true
},
"compat": [
{
// This device exposes a Multilevel Switch (Dimmer) on endpoint 0, and a Binary Switch (Relay) on endpoint 1
// Our heuristic currently detects endpoint 1 as unnecessary and hides it from the user.
// This problem is fixed in the 800 series version of the device (firmwareVersion >= 4.0)
"$if": "firmwareVersion < 4.0",
"preserveEndpoints": "*",
"preserveRootApplicationCCValueIDs": true
}
],
"metadata": {
"inclusion": "1. Initiate inclusion (pairing) in the app (or web interface).\n2. Finalize inclusion at the switch. Tap the upper paddle of the dimmer 3 times quickly. The LED indicators will blink to signal communication and remain on for 2 seconds to confirm inclusion",
"exclusion": "Bring your Z-Wave gateway (hub) close to the switch if possible\n2. Put the Z-Wave hub into exclusion mode \n3. Tap the lower paddle on the dimmer 3 times quickly\n4. Your hub will confirm exclusion and the device will disappear from your\ncontroller's device list",
Expand Down

0 comments on commit 233b983

Please sign in to comment.