Get state of physical inputs on a heat pump #1723
masterx1981
started this conversation in
Ideas
Replies: 2 comments 3 replies
-
Can you give some examples of what the string would like look? Also a nice name, and then we can code it. |
Beta Was this translation helpful? Give feedback.
3 replies
-
As soon as i have some spare time i'll try it. Really thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I have a Buderus WPLS 8.2 (recognized by ems esp as a Enviline, Compress 6000AW/...) , equipped with an HMC310 controller (recognized by ems esp as an RC300/RC310/...).
I'm trying to get the logic state of the inputs. Today i've played a bit with the bus, and i've discovered that when no inputs are inverted (i have available only i1 and i4) i get:
HpPower(0x048D), data: 41 00 10 08 14 00 00 00 00 00 00 00 00
If i close to gnd i1 i get:
HpPower(0x048D), data: 41 10 10 08 14 00 00 00 00 00 00 00 00
If i close i4 i get:
HpPower(0x048D), data: 41 80 10 08 14 00 00 00 00 00 00 00 00
If i close both i get:
HpPower(0x048D), data: 41 90 10 08 14 00 00 00 00 00 00 00 00
If i invert the logic of i1 (without anything closed), i get:
HpPower(0x048D), data: 41 10 10 08 14 00 00 00 00 00 00 00 00
While if i invert the logic of i4 i get:
HpPower(0x048D), data: 41 80 10 08 14 00 00 00 00 00 00 00 00
So for know the REAL state of the inputs, the information of that byte must be integrated with the info on the hpinNopt...
Now i use it as a custom entity on ha, but would be nice to have it as a string interpreted as "bit array" (like the hpinNopt).
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions