-
-
Notifications
You must be signed in to change notification settings - Fork 132
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
Using --mqttchanges occasionally misses changes. #1226
Comments
hm, thats interesting. and you're sure there is no problem with the mqtt broker loosing messages from time to time? maybe you could check the brokers log file to be sure. |
I cannot really be sure that the mqtt broker (mosquitto version 2.0.11) doesn't loose messages. |
Here is a capture of the problem: At time 13:38:08.197, the value changes from 14 to 13, but not published.
These are the lines I have modified to get the polling. Polling is at the default 5s.
If can help with testing, please let me know. |
thanks for the detailed logging! looking at the handling procedure there might be a chance that the mqtt messages are sent while the message decoding is running and so these could be missed. |
could you please check with the recent commit @DavidR1953 ? |
Thanks John. I'm away till end of next week. Will check then. Sorry it cannot be sooner. |
no worries, thanks for checking then David! |
Here is a log from the most recent commit: The log starts at 2024-04-05 14:35:53.868 but I didn't set other:debug until 2024-04-05 14:48:25.885 The missed changes have definitely improved, but there is still the occasional error. At 2024-04-05 15:04:37.244, Statenumber changes from 8 to 0, but is not published. There are more, but hopefully that's enough for now. If I can do more testing, let me know. |
thanks for the input @DavidR1953 ! |
The recent commit is looking good. Question unrelated to the problem: Is this because I'm using eBUS adapter 3 which is on Build: 20221215, or something else? |
great, thanks for checking. yes, thats because you're not on the newest, see here https://adapter.ebusd.eu/v31/firmware/ChangeLog.html |
It's been running now for about 24 hours with no missed changes. Success. Thank you. As for the device firmware - I confused the ebusd-esp and picloader versions - it's clear now. |
ok great |
Description
I am using ebusd to read and control a Vaillant ecoTEC plus System Boiler. There are no other controllers on the bus.
Messages are polled using r1 in the message definition.
When a value changes, it is occasionally not reported to MQTT, resulting in a wrong value for a time, until the value changes again, at which time it usually corrects.
ebusd.log shows that the poll is successful, and reads the value correctly.
Generally the system is pretty solid, with very few bus errors.
If the --mqttchanges option is removed from EBUSD_OPTS, then the value is reported to MQTT every time it is polled, as expected.
I have chosen to show the message RemainingBoilerblocktime here just as an example, but other values do this too. Clearly, for values that change often, it is not so much of a problem.
Actual behavior
from ebusd.log:
Line 5954: 2024-03-14 09:22:34.227 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
Line 5966: 2024-03-14 09:23:22.203 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
Line 5976: 2024-03-14 09:24:10.187 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 14
Line 5986: 2024-03-14 09:24:58.209 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 13
Line 5996: 2024-03-14 09:25:46.208 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 12
Line 6004: 2024-03-14 09:26:34.230 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 12
Line 6014: 2024-03-14 09:27:22.205 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 11
Line 6026: 2024-03-14 09:28:10.207 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 10
Line 6036: 2024-03-14 09:28:58.194 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 9
Line 6047: 2024-03-14 09:29:52.201 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 9
Line 6057: 2024-03-14 09:30:40.185 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 8
Line 6065: 2024-03-14 09:31:28.221 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 7
Line 6075: 2024-03-14 09:32:16.205 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 6
Line 6088: 2024-03-14 09:33:04.221 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 5
Line 6098: 2024-03-14 09:33:52.197 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 4
Line 6106: 2024-03-14 09:34:40.240 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 3
Line 6116: 2024-03-14 09:35:28.216 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 3
Line 6124: 2024-03-14 09:36:16.190 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 2
Line 6135: 2024-03-14 09:37:10.198 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 1
Line 6145: 2024-03-14 09:37:58.198 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
and the values reported to MQTT are:
0, 14, 12, 11, 10, 8, 6, 5, 4, 3, 2, 1
Expected behavior
When a value changes, it should be reported to MQTT.
ebusd version
23.3
ebusd arguments
EBUSD_OPTS="-d enh:192.168.10.140:9999 --scanconfig --configpath=/etc/ebusd/ --mqttport=1883 --mqttjson --mqttchanges --accesslevel=*"
Operating system
Debian 11 (Bullseye) / Ubuntu 20-21 / Raspbian 11 / Raspberry Pi OS 11 (including lite)
CPU architecture
x64
Dockerized
None
Hardware interface
Adapter v3 WiFi
Related integration
MQTT generic
Logs
2024-03-14 09:21:46.222 [update notice] sent poll-read bai Flame QQ=31: on
2024-03-14 09:21:52.172 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:21:58.239 [update notice] sent poll-read bai Statenumber QQ=31: 4
2024-03-14 09:22:04.239 [update notice] sent poll-read bai Status01 QQ=31: 44.5;41.5;-;-;-;on
2024-03-14 09:22:10.205 [update notice] sent poll-read bai WaterPressure QQ=31: 2.099;ok
2024-03-14 09:22:16.227 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.00
2024-03-14 09:22:22.207 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:22:28.210 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:22:34.227 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
2024-03-14 09:22:40.218 [update notice] sent poll-read bai Flame QQ=31: on
2024-03-14 09:22:43.386 [update notice] sent write bai SetModeOverride QQ=31: 0;40.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:22:43.386 [mqtt notice] write bai SetModeOverride: 0;39.8;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:22:46.225 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:22:52.199 [update notice] sent poll-read bai Statenumber QQ=31: 4
2024-03-14 09:22:58.225 [update notice] sent poll-read bai Status01 QQ=31: 44.5;41.5;-;-;-;on
2024-03-14 09:23:01.107 [update notice] sent write bai SetModeOverride QQ=31: 0;40.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:23:01.107 [mqtt notice] write bai SetModeOverride: 0;39.8;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:23:04.210 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.00
2024-03-14 09:23:10.221 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:23:16.239 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:23:22.203 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
2024-03-14 09:23:28.206 [update notice] sent poll-read bai Flame QQ=31: on
2024-03-14 09:23:34.231 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:23:40.190 [update notice] sent poll-read bai Statenumber QQ=31: 4
2024-03-14 09:23:43.378 [update notice] sent write bai SetModeOverride QQ=31: 0;39.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:23:43.378 [mqtt notice] write bai SetModeOverride: 0;39.6;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:23:46.208 [update notice] sent poll-read bai Status01 QQ=31: 44.5;41.5;-;-;-;off
2024-03-14 09:23:52.211 [update notice] sent poll-read bai FlowTempDesired QQ=31: 39.50
2024-03-14 09:23:58.216 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:24:04.237 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:24:10.187 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 14
2024-03-14 09:24:16.208 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:24:22.228 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:24:28.190 [update notice] sent poll-read bai Statenumber QQ=31: 7
2024-03-14 09:24:34.227 [update notice] sent poll-read bai Status01 QQ=31: 40.5;40.5;-;-;-;off
2024-03-14 09:24:40.188 [update notice] sent poll-read bai FlowTempDesired QQ=31: 39.50
2024-03-14 09:24:43.317 [update notice] sent write bai SetModeOverride QQ=31: 0;39.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:24:43.317 [mqtt notice] write bai SetModeOverride: 0;39.3;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:24:46.170 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:24:52.225 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:24:58.209 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 13
2024-03-14 09:25:04.230 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:25:10.198 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:25:16.200 [update notice] sent poll-read bai Statenumber QQ=31: 7
2024-03-14 09:25:22.215 [update notice] sent poll-read bai Status01 QQ=31: 40.0;40.5;-;-;-;off
2024-03-14 09:25:28.243 [update notice] sent poll-read bai FlowTempDesired QQ=31: 39.50
2024-03-14 09:25:34.220 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:25:40.223 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:25:43.352 [update notice] sent write bai SetModeOverride QQ=31: 0;39.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:25:43.352 [mqtt notice] write bai SetModeOverride: 0;39.1;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:25:46.208 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 12
2024-03-14 09:25:52.731 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:25:58.210 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:26:04.211 [update notice] sent poll-read bai Statenumber QQ=31: 7
2024-03-14 09:26:10.221 [update notice] sent poll-read bai Status01 QQ=31: 40.0;40.5;-;-;-;off
2024-03-14 09:26:16.187 [update notice] sent poll-read bai FlowTempDesired QQ=31: 39.00
2024-03-14 09:26:22.192 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:26:28.200 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:26:34.230 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 12
2024-03-14 09:26:40.187 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:26:43.360 [update notice] sent write bai SetModeOverride QQ=31: 0;39.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:26:43.360 [mqtt notice] write bai SetModeOverride: 0;38.9;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:26:46.199 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:26:52.211 [update notice] sent poll-read bai Statenumber QQ=31: 7
2024-03-14 09:26:58.232 [update notice] sent poll-read bai Status01 QQ=31: 39.5;40.0;-;-;-;off
2024-03-14 09:27:04.199 [update notice] sent poll-read bai FlowTempDesired QQ=31: 39.00
2024-03-14 09:27:10.198 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:27:16.199 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:27:22.205 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 11
2024-03-14 09:27:28.184 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:27:34.195 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:27:40.202 [update notice] sent poll-read bai Statenumber QQ=31: 7
2024-03-14 09:27:43.462 [update notice] sent write bai SetModeOverride QQ=31: 0;38.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:27:43.462 [mqtt notice] write bai SetModeOverride: 0;38.6;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:27:46.210 [update notice] sent poll-read bai Status01 QQ=31: 39.0;39.5;-;-;-;off
2024-03-14 09:27:52.239 [update notice] sent poll-read bai FlowTempDesired QQ=31: 38.50
2024-03-14 09:27:58.188 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:28:01.125 [update notice] sent write bai SetModeOverride QQ=31: 0;38.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:28:01.125 [mqtt notice] write bai SetModeOverride: 0;38.6;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:28:04.208 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:28:10.207 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 10
2024-03-14 09:28:16.196 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:28:22.216 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:28:28.229 [update notice] sent poll-read bai Statenumber QQ=31: 7
2024-03-14 09:28:34.207 [update notice] sent poll-read bai Status01 QQ=31: 39.0;39.5;-;-;-;off
2024-03-14 09:28:40.217 [update notice] sent poll-read bai FlowTempDesired QQ=31: 38.50
2024-03-14 09:28:43.468 [update notice] sent write bai SetModeOverride QQ=31: 0;38.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:28:43.468 [mqtt notice] write bai SetModeOverride: 0;38.4;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:28:46.201 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:28:52.204 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:28:58.194 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 9
2024-03-14 09:29:04.197 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:29:10.210 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:29:16.228 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:29:22.191 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:29:28.215 [update notice] sent poll-read bai WaterPressure QQ=31: 1.745;ok
2024-03-14 09:29:34.240 [update notice] sent poll-read bai FlowTempDesired QQ=31: 38.50
2024-03-14 09:29:40.203 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:29:43.363 [update notice] sent write bai SetModeOverride QQ=31: 0;38.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:29:43.363 [mqtt notice] write bai SetModeOverride: 0;38.1;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:29:46.191 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:29:52.201 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 9
2024-03-14 09:29:58.201 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:30:01.063 [update notice] sent write bai SetModeOverride QQ=31: 0;41.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:30:01.063 [mqtt notice] write bai SetModeOverride: 0;41.1;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:30:04.190 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:30:10.187 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:30:16.206 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:30:22.210 [update notice] sent poll-read bai FlowTempDesired QQ=31: 41.00
2024-03-14 09:30:28.204 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:30:34.229 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:30:40.185 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 8
2024-03-14 09:30:46.179 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:30:52.207 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:30:58.227 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:31:04.211 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:31:10.215 [update notice] sent poll-read bai FlowTempDesired QQ=31: 41.00
2024-03-14 09:31:16.187 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:31:22.206 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:31:28.221 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 7
2024-03-14 09:31:34.222 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:31:40.229 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:31:43.364 [update notice] sent write bai SetModeOverride QQ=31: 0;41.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:31:43.364 [mqtt notice] write bai SetModeOverride: 0;41;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:31:46.196 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:31:52.206 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:31:58.228 [update notice] sent poll-read bai FlowTempDesired QQ=31: 41.00
2024-03-14 09:32:04.204 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:32:10.203 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:32:16.205 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 6
2024-03-14 09:32:22.219 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:32:28.219 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:32:34.204 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:32:40.226 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:32:43.386 [update notice] sent write bai SetModeOverride QQ=31: 0;41.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:32:43.386 [mqtt notice] write bai SetModeOverride: 0;40.9;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:32:46.199 [update notice] sent poll-read bai FlowTempDesired QQ=31: 41.00
2024-03-14 09:32:52.224 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:32:58.194 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:33:00.910 [bus error] send to 08: ERR: read timeout, retry
2024-03-14 09:33:01.611 [update notice] sent write bai SetModeOverride QQ=31: 0;41.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:33:01.611 [mqtt notice] write bai SetModeOverride: 0;40.9;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:33:04.221 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 5
2024-03-14 09:33:10.203 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:33:16.206 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:33:22.225 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:33:28.213 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:33:34.227 [update notice] sent poll-read bai FlowTempDesired QQ=31: 41.00
2024-03-14 09:33:40.203 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:33:43.349 [update notice] sent write bai SetModeOverride QQ=31: 0;41.0;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:33:43.349 [mqtt notice] write bai SetModeOverride: 0;40.8;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:33:46.195 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:33:52.197 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 4
2024-03-14 09:33:58.211 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:34:04.239 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:34:10.197 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:34:16.205 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:34:22.210 [update notice] sent poll-read bai FlowTempDesired QQ=31: 41.00
2024-03-14 09:34:28.199 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:34:34.208 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:34:40.240 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 3
2024-03-14 09:34:43.376 [update notice] sent write bai SetModeOverride QQ=31: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:34:43.376 [mqtt notice] write bai SetModeOverride: 0;40.7;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:34:46.191 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:34:52.214 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:34:58.230 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:35:04.220 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:35:10.203 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.50
2024-03-14 09:35:16.207 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:35:22.215 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:35:28.216 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 3
2024-03-14 09:35:34.217 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:35:40.240 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:35:46.203 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:35:52.207 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:35:58.210 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.50
2024-03-14 09:36:04.227 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:36:10.199 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:36:16.190 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 2
2024-03-14 09:36:22.180 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:36:28.194 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:36:34.210 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:36:40.226 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:36:43.718 [update notice] sent write bai SetModeOverride QQ=31: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:36:43.718 [mqtt notice] write bai SetModeOverride: 0;40.6;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:36:46.188 [update notice] sent poll-read bai WaterPressure QQ=31: 1.691;ok
2024-03-14 09:36:52.221 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.50
2024-03-14 09:36:58.195 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:37:04.238 [update notice] sent poll-read bai WP QQ=31: off
2024-03-14 09:37:10.198 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 1
2024-03-14 09:37:16.183 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:37:22.203 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:37:28.223 [update notice] sent poll-read bai Statenumber QQ=31: 8
2024-03-14 09:37:34.206 [update notice] sent poll-read bai Status01 QQ=31: 38.5;39.0;-;-;-;off
2024-03-14 09:37:40.235 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.50
2024-03-14 09:37:43.369 [update notice] sent write bai SetModeOverride QQ=31: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:37:43.369 [mqtt notice] write bai SetModeOverride: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:37:46.177 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:37:52.230 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:37:58.198 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
2024-03-14 09:38:01.097 [update notice] sent write bai SetModeOverride QQ=31: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:38:01.097 [mqtt notice] write bai SetModeOverride: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:38:04.242 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:38:10.204 [update notice] sent poll-read bai Modulation QQ=31: 19.0
2024-03-14 09:38:16.210 [update notice] sent poll-read bai Statenumber QQ=31: 0
2024-03-14 09:38:22.240 [update notice] sent poll-read bai Status01 QQ=31: 36.5;36.5;-;-;-;off
2024-03-14 09:38:28.213 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.50
2024-03-14 09:38:34.243 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:38:40.221 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:38:43.346 [update notice] sent write bai SetModeOverride QQ=31: 0;40.5;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:38:43.347 [mqtt notice] write bai SetModeOverride: 0;40.4;-;-;-;0;0;0;-;0;0;0
2024-03-14 09:38:46.206 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
2024-03-14 09:38:52.218 [update notice] sent poll-read bai Flame QQ=31: off
2024-03-14 09:38:58.196 [update notice] sent poll-read bai Modulation QQ=31: 0.0
2024-03-14 09:39:04.250 [update notice] sent poll-read bai Statenumber QQ=31: 2
2024-03-14 09:39:10.195 [update notice] sent poll-read bai Status01 QQ=31: 35.0;35.5;-;-;-;off
2024-03-14 09:39:16.209 [update notice] sent poll-read bai FlowTempDesired QQ=31: 40.50
2024-03-14 09:39:22.268 [update notice] sent poll-read bai ACRoomthermostat QQ=31: on
2024-03-14 09:39:28.199 [update notice] sent poll-read bai WP QQ=31: on
2024-03-14 09:39:34.210 [update notice] sent poll-read bai RemainingBoilerblocktime QQ=31: 0
The text was updated successfully, but these errors were encountered: