Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(config): remove endpoint workaround for Zooz ZEN30 800LR #6931

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading