-
Notifications
You must be signed in to change notification settings - Fork 15
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
Explanations for values of mode and mode_01 #26
Comments
From my notes in one of my scripts:
# mode_01;31 00 FA 01 12 00 00;190;i;1;w
# 0100 256 = standby
# 0300 768 = heating
# 0400 1024 = setback
# 0500 1280 = summer
# 0b00 2816 = automatic1
# 0c00 3072 = automatic2
# 1100 4352 = cooling
#mode_01=`/home/stefan/can_progs/can_scan can0 680 180.0112 | grep
"^value" | cut -d " " -f6 | cut -d ")" -f1`
# mode;31 00 FA C0 F6;190;d;1;r
# 0000 = standby, 0001 = heating, 0003 = defrost, 0004 = DHW
#mode=`/home/stefan/can_progs/can_scan can0 680 180.c0f6 | grep
"^value" | cut -d " " -f6 | cut -d ")" -f1`
with kind regards, / met vriendelijke groet,
Stefan van der Eijk
…On Fri, Aug 23, 2019 at 5:11 PM Andre Dieball ***@***.***> wrote:
Hi
is there anywhere an explanation of the values of mode and mode_01?
The xls file with the list pof values is not helpful :-)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
ok, understood, mode is the general mode and mode_01 the current operating mode. 0100 256 = standby0300 768 = heating0400 1024 = setback0500 1280 = summer0b00 2816 = automatic10c00 3072 = automatic21100 4352 = cooling |
Right now my system is in summer mode: If I retrieve the value using pyHPSU, this is the output: $ pyHPSU.py -c mode_01 With can_scan this is the output: value: 0500 (PROGRAMMSCHALTER Warmwasser) The pyHPSU output is decimal, can_scan is hexadecimal. |
Hi
is there anywhere an explanation of the values of mode and mode_01?
The xls file with the list pof values is not helpful :-)
The text was updated successfully, but these errors were encountered: