Dear Paul,
After an update from master 1.9.0 to 1.9.1b4 or b5, the thermostat data for my Sieger ES73 is not read correctly. Via telnet, no temperature data is shown, via Web interface the Setpoint temperature is round about 4343掳C, current temperature could be correct.
I expect, there is something with your heatcircuit change, and I would like to ask you which data/loggings you need to find the root cause. Hope I can help to fix this.
thx
oops. I'll look into it. Does the ES73 support multiple heating circuits?
yes, the ES73 does support up to 4 circuits, i guess .)
The ES73 is more and less a mix of Buderus RC30 and RC35.
with the latest 1.9.1_b4 I can see the following:



any idea?
Is "== 0x7D" correct, oder should be != 0x7D like setpoint?
// check if current temp sensor is unavailable
if (EMS_RxTelegram->data[EMS_OFFSET_RC35StatusMessage_curr] == 0x7D) {
EMS_Thermostat.hc[hc_num].curr_roomTemp = _toShort(EMS_OFFSET_RC35StatusMessage_curr); // is * 10
}
many thanks
I recompiled the b4 with:
// check if current temp sensor is unavailable
if (EMS_RxTelegram->data[EMS_OFFSET_RC35StatusMessage_curr] != 0x7D) {
EMS_Thermostat.hc[hc_num].curr_roomTemp = _toShort(EMS_OFFSET_RC35StatusMessage_curr); // is * 10
}
and it works for me.
wow, you fixed a bug!
Can we close this now?
well, for the HC1 current room temperature basically yes, but the ESP detects two HC's and I have only HC1 in use.
that shouldn't happen with the latest dev build anymore?
alright! :)
Dear Proddy,
since 1.9.1b8, the setpoint temp and the current temp is not shown in telnet and mqtt anymore. I've seen that you modified a lot between b7 and b8. Anything I can test with my ES73 to keep it running again?
thx,
chris
is Tx working?
oops, found the error!
yes, fixed!