-
-
Notifications
You must be signed in to change notification settings - Fork 623
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): correct Zooz ZEN1x timer config params #6648
Conversation
Closes #6647 Signed-off-by: Bob Eckhoff <[email protected]>
Looks like Zooz actually uses the same timer configuration for the Zen1x series as they do for the 0x, 3x and 7x series - except the Zen15 which is different. Such a mess... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok with my changes
Correct me if I'm wrong, but this doesn't seem to be quite correct for a zen14. The change makes multiple references to config parameter 15, 17, etc. , which don't exist for a zen14. (Example, line 137 of the change.) AFAIK zen14's parameters stop at 8, and the units are not configurable. https://www.getzooz.com/downloads/zooz-outdoor-double-plug-zen14-manual.pdf |
@TheKorn2 |
Correct. I noticed that the other timer-related parameters for the Zen14 were even wronger and then I noticed that it shared most of the definitions with the other Zen1x series devices, so I cleaned them up too. This is the relevant part for ZEN14: |
Ah! OK Cool. |
PR description here
Closes #6647