-
-
Notifications
You must be signed in to change notification settings - Fork 97
HC2 mode issue - RC35 #305
Comments
thanks, looking into it... |
@majdzik84 Do you have a separate thermostat for your HC2? I have a similar behavior. |
@lmdecroos I have only one thermostat - RC35 ( HC2 control) |
Can someone explain the problem again? Is it the HC2 is not displayed and only after the mode has changed? Does it get displayed when EMS-ESP boots up? Also when the temp is changed? I don't have the RC35 so difficult to reproduce at home. |
@proddy see my posts in #238
At boot it’s not detecting the room and setpoint temperature
A temperature change is not triggering the readout
Only when after a switch from mode it’s start detecting these temperatures
I’m using b17 with an uptime of 2 weeks, I can test a newer build by end of this week
…Sent from my iPad
On 28 Jan 2020, at 21:40, Proddy ***@***.***> wrote:
Can someone explain the problem again? Is it the HC2 is not displayed and only after the mode has changed? Does it get displayed when EMS-ESP boots up? Also when the temp is changed?
I don't have the RC35 so difficult to reproduce at home.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Unfortunately, this problem still occurs in the 1.9.5b20 version |
yes same here
only after a change from night to day the temperatures for HC2 become ( within a few seconds) available
… On 29 Jan 2020, at 16:03, majdzik84 ***@***.***> wrote:
Unfortunately, this problem still occurs in the 1.9.5b20 version
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#305>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ANDW443UQALA4ZVFRLTM4QTRAGLCNANCNFSM4KI2I72Q>.
|
does |
same for me
(00:32:39) Thermostat -> Me, type 0x48, telegram: 10 0B 48 00 00 00 1B 00 A2 00 00 00 00 00 00 00 00 00 05 00 (CRC=C2) #data=16
(00:32:40) Thermostat -> Me, type 0x47, telegram: 10 0B 47 00 01 1B 24 22 00 28 00 00 00 05 05 2D 01 01 04 4B 05 4B 01 00 3C FF 11 05 05 02 01 (CRC=BA) #data=27
(00:33:41) Thermostat -> Me, type 0x48, telegram: 10 0B 48 00 00 00 1B 00 A2 00 00 00 00 00 00 00 00 00 05 00 (CRC=C2) #data=16
(00:33:42) Thermostat -> Me, type 0x47, telegram: 10 0B 47 00 01 1B 24 22 00 28 00 00 00 05 05 2D 01 01 04 4B 05 4B 01 00 3C FF 11 05 05 02 01 (CRC=BA) #data=27
Heating Circuit 2
Current room temperature: ? C
Setpoint room temperature: ? C
Program is set to Summer mode
Day temperature: 18.0 C
Night temperature: 13.5 C
Vacation temperature: 17.0 C
Calculatet flow temperature: ? C
Mode is set to night
… On 1 Feb 2020, at 00:33, majdzik84 ***@***.***> wrote:
No, the data does not appear. I can only see ...
<https://user-images.githubusercontent.com/31352476/73581458-96d57000-4489-11ea-9e81-19aaca5b71a9.png>
(00:32:33) Thermostat -> Me, type 0x48, telegram: 10 0B 48 00 00 00 2A 00 DE 00 00 00 00 00 00 00 64 00 16 00 (CRC=F4) #data=16
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#305>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ANDW447M66UFOIYVOBW6KWDRASYLVANCNFSM4KI2I72Q>.
|
thanks @lmdecroos @majdzik84 for the additional info. I helped me find the root cause of this problem. It's related to an earlier change I made in #238 (comment) which said:
In the example 0x48's you sent, the first data byte (i.e. the 5th in the whole telegram) is always zero so the complete telegram is ignored. e.g. type 0x48, telegram: 10 0B 48 00 00 00 1B 00 A2 00 00 00 00 00 00 00 00 00 05 00 I'll revert the change. Let me know if it causes any other issues with HC1 |
just tested b24 and was immediately ok after boot (and a reboot) :)
@proddy : well done !
Thermostat data:
Thermostat: RC35 (DeviceID:0x10 ProductID:86 Version:21.08)
Thermostat time is 13:37:40 01/02/2020
Heating Circuit 1
Current room temperature: 19.5 C
Setpoint room temperature: 19.0 C
Day temperature: 19.0 C
Night temperature: 15.0 C
Vacation temperature: 17.0 C
Calculated flow temperature: 5 C
Mode is set to auto
Day Mode is set to day
Heating Circuit 2
Current room temperature: 20.2 C
Setpoint room temperature: 13.5 C
Day temperature: 18.0 C
Night temperature: 13.5 C
Vacation temperature: 17.0 C
Calculated flow temperature: 5 C
Mode is set to night
Day Mode is set to night
Mixing module data:
Switch temperature: 76.4 C
Mixing Circuit 2
Setpoint flow temperature: 0 C
Current pump modulation: 0 %
… On 1 Feb 2020, at 09:04, Proddy ***@***.***> wrote:
thanks @lmdecroos <https://github.com/lmdecroos> @majdzik84 <https://github.com/majdzik84> for the additional info. I helped me find the root cause of this problem. It's related to an earlier change I made in #238 (comment) <#238 (comment)> which said:
I see the problem now. It's this following telegram from when HC3 is queried:
Thermostat -> me, type 0x52, telegram: 10 0B 52 00 00 00 00 00 00 00 00 00 00 00 00 00 00 11 00 00 (CRC=B6) #data=16
because when a 0x52 comes in I just assume there is a HC3 active. Which now is not always the case. I've changed the code to look at the first data byte and if it's zero I will ignore. I'm basing this off your 0x3E telegram (HC1) who's first byte
is 0x04 meaning in automatic mode. Hope that helps, thanks for working with me on fixing this.
In the example 0x48's you sent, the first data byte (i.e. the 5th in the whole telegram) is always zero so the complete telegram is ignored. e.g.
type 0x48, telegram: 10 0B 48 00 00 00 1B 00 A2 00 00 00 00 00 00 00 00 00 05 00
I'll revert the change. Let me know if it causes any other issues with HC1
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#305>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/ANDW44353DX5G4OZJN5LAI3RAUUIFANCNFSM4KI2I72Q>.
|
ok, closing this for now and will re-open if we see problems occurring |
#298 (comment)
The HC2 circuit values do not appear. When the temperature is set, the gate restarts
When temperatures appear, the reading is as follows
The text was updated successfully, but these errors were encountered: