-
-
Notifications
You must be signed in to change notification settings - Fork 97
add DHW once activate functionality for RC35 #94
Comments
can you
|
if the condition for DHW is met (temp below 5 (normal operation) or 10
degrees (eco operation) from desired temp (depending on mode),
the ON command sent by RC35 to my boiler :
Thermostat -> Boiler, type 0x35 telegram: 10 08 35 00 23 33 (CRC=76),
#data=2
folowed by Thermostat -> Boiler, type 0x35 telegram: 10 08 35 00 01 11
(CRC=10), #data=2
so the raw command is *0B 08 35 00 23 33* (tested, working)
and, not sure if needed, but followed by
*0B 08 35 00 01 11*
This sequence(*08 35 00 01 11) * is OFTEN sent by RC35 from time to time
again, so I guess it can be just keeping the circulation running
Off (manual interruption, if DHW running) :
* 0B 08 35 00 03 11*
followed by
*0B 08 35 00 01 11*
If the temp. condition is not met, RC35 starts the circulation onlyWITH:
*ON: 0B 08 35 00 01 33 followed by *
*0B 08 35 00 01 11*
All this is observed from the logs. It does not follow the Wiki
documentation logic(might be outdated, or for different boiler)
Information on DHW is part of the
UBAMonitorWWMessage
function name in telnet:
DHW_ONCE ON
DHW_ONCE OFF
and probably:
DWH_ONCE STATUS
MQTT:
e.g.
home/ems-esp/boiler_cmd_dhw for activating (cmd = ON, OFF)
home/ems-esp/boiler_ dhw_status
content of the 0x34 – UBA Monitor Hot Water
if the document is correct it should be:
[image: image.png]
{"Selected_DHW_Temp":"58", "Current_DHW_Temp":"40.2" ,"Day_Mode_DHW":"No",
"DHW_Once_Activated":"Yes",
"Thermal_Disinf_DHW":"No","Prepare_DHW":"Yes", "DHW_Work_Minutes:"36" ,
"DHW_Start_Counter":"3600"}
št 18. 4. 2019 o 10:38 Proddy <[email protected]> napísal(a):
… can you
- add the raw commands that will do this (for on and off)
- describe the function name you'd like to see in the telnet
- describe the topic and payload options you'd like to see in the MQTT
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#94 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ADF2WCGMXXB3X5LBOOCK2PTPRAXQRANCNFSM4HF2IUJA>
.
|
Ok. Just to be clear,
|
Hello Proddy,
|
@vanbogaertetienne ok, pretty straight forward then. I'm working on a new web interface for versin 1.9.0 so when thats done I'll start on this next, |
For the 'request hot water once' function, majo551's telegram of 10 08 35 00 23 33 might work if the sender address is changed, but I found better luck to follow dani's values (see https://domoticproject.com/ems-bus-buderus-nefit-boiler/ under 4.7-flags hot water). Is this enough information for you? I've checked out the git repo and am adding the code for the status information to my local branch, once I've validated that this works I might try to write the code for the enable hot_water_once function, but I am a bit weary of writing something that might mess up the boiler configuration. |
Did some additional testing today. So sending the telegrams as written above works for starting and stopping the hot water generation cycle. To get the blinking status light on the RC35, the additional telegram of 0B 08 35 00 01 11 is needed. After that the boiler and thermostat manage everything. |
got it. This is next on my todo list. |
@vanbogaertetienne want to help out implementing this next? See #195 |
implemented in 1.9.3 |
Is your feature request related to a problem? Please describe.
add command/function to activate DHW once for RC35
Describe the solution you'd like
be able to send Telnet / MQTT request to activate and monitor the status of the DHW once for RC35
The text was updated successfully, but these errors were encountered: