[config] Add Intermatic PE653 and PE953 pool/spa controller and remote.#2289
[config] Add Intermatic PE653 and PE953 pool/spa controller and remote.#2289j9brown wants to merge 1 commit intoOpenZWave:masterfrom
Conversation
It shouldn't. Both are basically doing the same thing - polling continuously polls the device for changes. VerifyChanges will poll the device for changes after we get a update - if two reports are the same it publishes the value. I don't accept config files that enable polling as thats more of a Policy Decision than a config decision. VerifiedChanges can be enabled as per https://github.com/OpenZWave/open-zwave/wiki/CommandClass-Compatibility-Flags#all-commandclasses |
| <!-- This device reports 6 switches but there are only 5 circuits. | ||
| The switch on the default endpoint is redundant with endpoint 1 so | ||
| we omit it from the list of instances. --> | ||
| <CommandClass id="32"> |
There was a problem hiding this comment.
This should be auto discovered. Its not needed.
There was a problem hiding this comment.
Per the comment, this is intentional. When auto-discovered, the device presents 6 switch instances however physically there are only 5 of them. By listing them explicitly I am able to suppress the redundant switch instance and label each of them in the same manner as they appear in the product documentation.
FWIW, when I first set up the device, I got fooled by the redundant switch instance and was really confused why the switches weren't controlling the correct loads.
| <Instance index="4" label="Circuit 4" /> | ||
| <Instance index="5" label="Circuit 5" /> | ||
| </CommandClass> | ||
| <CommandClass id="37"> |
There was a problem hiding this comment.
This should be auto discovered. Its not needed.
There was a problem hiding this comment.
Per prior comment, I'm listing the switching explicitly so as to suppress a redundant instance that should not be enumerated.
config/intermatic/pe653.xml
Outdated
There was a problem hiding this comment.
index refers to the ValueID Index - Not instance Index. I don't think you need a entry for each "instance"
| </Compatibility> | ||
| </CommandClass> | ||
|
|
||
| <CommandClass id="49"> |
There was a problem hiding this comment.
This should be auto discovered. Its not needed.
There was a problem hiding this comment.
This sensor is auto-discovered but it ends up having the incorrect label and units so I'm listing it explicitly to ensure the correct information is presented to the user.
| </Value> | ||
| </CommandClass> | ||
|
|
||
| <CommandClass id="67"> |
There was a problem hiding this comment.
This should be auto discovered. Its not needed.
There was a problem hiding this comment.
Unfortunately this is not the case. Auto discovery only detects instance index 1. Also, it ends up with the wrong label and units so I'm listing both thermostats explicitly to ensure the correct information is presented to the user. It took me some time to reverse engineer this.
| <Entry author="Jeff Brown - jeff.brown@gmail.com" date="29 June 2020" revision="1">Initial creation</Entry> | ||
| </ChangeLog> | ||
| </MetaData> | ||
| </Product> |
There was a problem hiding this comment.
No Config Params or Association Groups?
There was a problem hiding this comment.
Unfortunately the config params are very complicated and undocumented. This device is intended to be configured using the associated PE953 remote control. Having watched the traffic between the two, there's a fair bit of manufacturer specific communication going on during that process.
The device doesn't support associations.
j9brown
left a comment
There was a problem hiding this comment.
Hope that answers your questions. This device is certainly a little odd. :)
| </Compatibility> | ||
| </CommandClass> | ||
|
|
||
| <CommandClass id="49"> |
There was a problem hiding this comment.
This sensor is auto-discovered but it ends up having the incorrect label and units so I'm listing it explicitly to ensure the correct information is presented to the user.
config/intermatic/pe653.xml
Outdated
| </Value> | ||
| </CommandClass> | ||
|
|
||
| <CommandClass id="67"> |
There was a problem hiding this comment.
Unfortunately this is not the case. Auto discovery only detects instance index 1. Also, it ends up with the wrong label and units so I'm listing both thermostats explicitly to ensure the correct information is presented to the user. It took me some time to reverse engineer this.
| <Entry author="Jeff Brown - jeff.brown@gmail.com" date="29 June 2020" revision="1">Initial creation</Entry> | ||
| </ChangeLog> | ||
| </MetaData> | ||
| </Product> |
There was a problem hiding this comment.
Unfortunately the config params are very complicated and undocumented. This device is intended to be configured using the associated PE953 remote control. Having watched the traffic between the two, there's a fair bit of manufacturer specific communication going on during that process.
The device doesn't support associations.
|
Hmm, so I just noticed something strange after making these changes and refreshing the node info. I see 10 switches showing up now instead of 5. I can resolve this by adding "endpoint" to the Instance declarations but it fails make xmltest. I must have removed these attributes prior to upload and failed to retest my change (sorry!). What's the right way of solving this problem while also eliminating the redundant 6th switch endpoint from the enumeration? |
|
Any thoughts on this? |
|
You probably need to add https://github.com/OpenZWave/open-zwave/wiki/CommandClass-Compatibility-Flags#multiinstance-commandclass MapRootToEndpoint in the config file - Without all the other CommandClass Info you have right now. Otherwise, please post a log file of the interview after issuing a refreshNodeInfo command. |
|
Sounds good, I’ll try it but what does MapRootToEndpoint actually do?
…On Thu, Jul 23, 2020 at 11:59 PM Justin Hammond ***@***.***> wrote:
You probably need to add
https://github.com/OpenZWave/open-zwave/wiki/CommandClass-Compatibility-Flags#multiinstance-commandclass
MapRootToEndpoint in the config file - Without all the other CommandClass
Info you have right now. Otherwise, please post a log file of the interview
after issuing a refreshNodeInfo command.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#2289 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAY7BBSOJHQFQXMI2HZQQ3R5EWM5ANCNFSM4OQCTRYA>
.
|
I'm not sure about the VerifyChanged compatibility declarations. The ozw config file only seems to pick up instance 1 and doesn't actually set the verify changed flags.
This device requires polling and verify changes to work correctly. Calling "enablePoll" and "setChangeVerified" at runtime for each value of interest does the trick. What's the best way to encode that here?