karloygard / hassio-addons

My Hass.io addons
6 stars 2 forks source link

RCT sensors needs some tweaking #7

Closed geeewizzz closed 3 years ago

geeewizzz commented 4 years ago

log.txt usbstick_full6.txt

Seems like additional sensors from Room Controller touch is not being added as entities? Added all sensors from 1.etg_dusj/bad now and seems like it is ignoring some of them.

The RCT has the following sensors : Temperatur (which is the devices own temperature sensor, room temp) Fuktighet (measures humidity in the room) Ekstern sensor(in my case measures the floor temp)

In addition 2 buttons that you can also connect.

It seems MRF has limitations here, for the RCT sensors it can only connect to 1 controller. I didnt realize that until this weekend. So since mine were connected to Sensio from before, I removed the sensio connection for this one device and now connected the all sensors to the USB stick instead.

Originally posted by @geeewizzz in https://github.com/karloygard/hassio-addons/issues/3#issuecomment-616442379

karloygard commented 4 years ago

I have not added support for humidity yet, but I assume HA supports humidity, so shouldn't be too hard to add.

Looking at the logs, there is something fishy with channel 1 on the RCTs, they claim to be connected to both temperature and humidity. According to the MRF 2.64 manuals, temperature is on channel 0 and humidity is on channel 1. This looks wrong to me and mean that we interpret temperature messages as humidity messages.

Might be useful to do some more logging in order to see what is actually sent.

geeewizzz commented 4 years ago

If you need me to test and send over more logs, just tell me what you need and I'll help out.

geeewizzz commented 4 years ago

Any update to when you will add support for more than one temperature sensor RCT? Right now I've tried to manually edit the data points file to make it work. I see both temperatures being sent to the USB stick, but no sensor entities added in HA for the additional temperature sensor. No luck when it is set up with channel 0 or channel 1.

Humidity is not that important to me :)

karloygard commented 4 years ago

I would have expected that to work, could be a bug in there. Can you send a log, I might be able to see what's going wrong.

Things have been very busy after easter, so I regrettably haven't had much time to work on this project. It will happen, though!

geeewizzz commented 4 years ago

usbstick_full13.txt log.txt

Dont mind the "hybel bad temp", that's on me. I've set it up in MRF and the data points file, but the unit itself hasn't received the update i think.

geeewizzz commented 4 years ago

And yes of course, any help here is much appreciated I understand this is not top priority for you. I have HA monitoring and controlling 95% of my xcomfort-stuff now so I'm very excited, I have put my Sensio X1 controller on Finn to sell, I hope some sucker buys it! :)

karloygard commented 4 years ago

Very brave! :)

Yeah, I see "hybel bad temp" sending some unhandled messages in the logs, very interesting. Just out of curiosity, can you do the "Show traffic" trick again, and attach parallel logs from both the 00/13 stick and the 00/14 stick, maybe I can figure out the contents of those messages as well.

Found and fix a bug in the code; temperature sensors should now be updating properly. Images should be updated shortly.

Need to look into issue with devices not showing up on HA reboot.

geeewizzz commented 4 years ago

Beautiful, it works!

Regarding "hybel bad temp", as i mentioned in a previous comment I think that's on me. I made changes to it in MRF, but didnt bother to go there and tap it for the changes to be sent to the device. So I think that is the reason. I will check again later tonight to see if it goes away once it actually gets updated instructions.

karloygard commented 4 years ago

It will probably go away if updated, but if you have time, do the mentioned logging before updating it. It would be nice to add that command as well, for completeness. Could be something that we can support in the future.

geeewizzz commented 4 years ago

Here is the logfile for about 30mins. traffic-monitor.txt

karloygard commented 4 years ago

I need the parallel log from both the 00/14 stick and the 00/13 stick, so that I can line up events and be sure that I'm decoding the the correct messages. If you haven't already updated the device, I would certainly appreciate it!

geeewizzz commented 4 years ago

traffic-log.txt xcomfortd.txt

This should be from the same time, my HA is on UTC, while the computer with the MRF program installed is on CET.

karloygard commented 4 years ago

I pushed a new image with limited support for these new messages. I could only parse some of the message, but if it is possible to use these messages for anything, I might be able to figure out more. In any case, check it out and see what shows up in the logs.

geeewizzz commented 4 years ago

log.txt Here is the log after you pushed the new version.

geeewizzz commented 4 years ago

I have a slightly annoying situation that I'm struggling how to ensure I don't end up in. I've set HA to now control my heating actuators. I've set them up using the climate component in the HA configuration like so:

climate:     
     - platform: generic_thermostat   
     name: Bad varmekabler   
     heater: switch.xcomfort_5727387_1_etg_bad_vk   
     target_sensor: sensor.xcomfort_5881271_1_etg_bad_temp_kanal_a

Then I use : https://github.com/nervetattoo/simple-thermostat to control them in HA, or the bult in Thermostat card in HA.

As there is no guarantee for delivery of messages to xcomfort, sometimes when the thermostat reaches the desired temperature it sends a message to switch off the heating actuator, the message is sent but not received by the xcomfort device. So in HA everything looks fine and the heating actuator seems off, but the temperature is steadily rising, so the heating actuator was actually not turned off.

Right now I have solved this by alerting by a push message on the phone me when temperature sensors reach a certain max temp I have defined, so I can go in and manually fix it.

Do you have any suggestions to how this could be solved in a better way? Ive been thinking making an automation that forces switching off heating actuators every 3 hours or so, just to ensure they are actually off if they need to be off. If I end up switching off something that logically should be "on" then the thermostat will sooner or later turn that on (i guess?), but this also seems like a sub optimal way of solving the problem.

Any suggestions?

karloygard commented 4 years ago

Interesting problem, this should be avoidable.

xComfort messages are usually guaranteed delivery (there are apparently some corner cases with large groups and routed messages, but that's seems unimportant here), only status messages are not guaranteed.

The daemon will log errors if messages are not delivered, and the actuators are not set up to be optimistic in Home Assistant, ie. assume operations are always successful.

Are you able to get a log of such a situation? This sounds broken, in my opinion.

geeewizzz commented 4 years ago

Hm, I had a situation earlier today, but updated the plugin after you pushed new changes so I don't think I have the logs anymore.

I will post logs again when the situation comes up again. Or do you mean I need traffic monitor from the MRF traffic log? Because everything seems fine in HA, it shows the actuator as being off, but the temperature sensor keeps rising.

This is all the logs i have left of the incident :) "Bad" is set to 27,5c.

Screenshot 2020-05-03 at 20 20 07
karloygard commented 4 years ago

The regular log should be sufficient. Errors should be reported properly by the daemon, so we should be able to figure out what's going based on that. If that doesn't bring any clarity, MRF logs might be useful, but that's for later.

geeewizzz commented 4 years ago

Now I encountered the situation again, the HA thermostat is set to try to keep temp at 27,5c during daytime. So it should have started heating at 18:11 UTC and stopped heating at 18:36UTC, not quite sure what the threshold in the thermostat is though, so at the very least it should have happened at 19:06UTC

Screenshot 2020-05-04 at 23 19 41

Complete logfile: log-vk-error2.txt

| grep "1.etg bad*" -A 3 -B 3 Gives this:

2020/05/03 12:20:25 Dp 3: device Dimming Actuator (CDAx-01/xx), serial 5734031, channel 0, '1.etg sov 3'
2020/05/03 12:20:25 Dp 4: device Dimming Actuator (CDAx-01/xx), serial 5740097, channel 0, '1.etg sov 2'
2020/05/03 12:20:25 Dp 5: device Dimming Actuator (CDAx-01/xx), serial 5733990, channel 0, '1.etg sov.1'
2020/05/03 12:20:25 Dp 6: device Dimming Actuator (CDAx-01/xx), serial 5736891, channel 0, '1.etg bad speil'
2020/05/03 12:20:25 Dp 7: device Dimming Actuator (CDAx-01/xx), serial 5736925, channel 0, '1.etg bad tak'
2020/05/03 12:20:25 Dp 8: device Dimming Actuator (CDAx-01/xx), serial 5734000, channel 0, '1.etg stor gang'
2020/05/03 12:20:25 Dp 10: device Dimming Actuator (CDAx-01/xx), serial 5733992, channel 0, '1.etg tv stue'
2020/05/03 12:20:25 Dp 11: device Dimming Actuator (CDAx-01/xx), serial 5734068, channel 0, '1.etg liten gang'
2020/05/03 12:20:25 Dp 13: device Dimming Actuator (CDAx-01/xx), serial 5741956, channel 0, '1.etg stue lampe spi'
2020/05/03 12:20:25 Dp 14: device Switching Actuator (CSAx-01/xx), serial 5733605, channel 0, 'utelys terrasse'
2020/05/03 12:20:25 Dp 16: device Switching Actuator (CSAx-01/xx), serial 5727387, channel 0, '1.etg bad vk'
2020/05/03 12:20:25 Dp 17: device Switching Actuator (CSAx-01/xx), serial 5727252, channel 0, 'utelys hovedd�r'
2020/05/03 12:20:25 Dp 18: device Switching Actuator (CSAx-01/xx), serial 5709360, channel 0, 'bakd�r utelys'
2020/05/03 12:20:25 Dp 19: device Dimming Actuator (CDAx-01/xx), serial 5734274, channel 0, '1.etg kj�kken spotter'
--
2020/05/03 12:20:25 Dp 0: device Dimming Actuator New Generation (CDAx-01/xx), serial 6879924, channel 0, 'kjeller tvstue (Statusforbindelse)'
2020/05/03 12:20:25 Dp 23: device Temperature Input (CTEU-02/xx), serial 5881353, channel 1, '1.etg liten gang temp (Kanal B)'
2020/05/03 12:20:25 Dp 15: device Temperature Input (CTEU-02/xx), serial 5881341, channel 1, '1.etg stor gang temp (Kanal A)'
2020/05/03 12:20:25 Dp 21: device Temperature Input (CTEU-02/xx), serial 5881271, channel 1, '1.etg bad temp (Kanal A)'
2020/05/03 12:20:25 Dp 51: device Room Controller Touch (CRCA-00/xx), serial 6809944, channel 6, 'kjeller bad temp (ekstern Sensor (PT1000))'
2020/05/03 12:20:25 Dp 52: device Room Controller Touch (CRCA-00/xx), serial 6809944, channel 0, 'kjeller bad temp (Temperatur)'
2020/05/03 12:20:25 Dp 53: device Room Controller Touch (CRCA-00/xx), serial 6809944, channel 1, 'kjeller bad temp (Fuktighet)'
--
2020/05/03 12:31:41 rx: [c13e62030000fb00003b2409]
2020/05/03 12:31:41 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.1
2020/05/03 12:34:44 rx: [c11562030001580000452502]
2020/05/03 12:34:44 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 34.4
2020/05/03 12:35:39 rx: [c10f620300012200003a2508]
2020/05/03 12:35:39 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/03 12:35:45 rx: [c13c623f000b02b4003a2508a500000044100ba507a5000000472401]
--
2020/05/03 12:45:01 rx: [c13b620400421c00003c240b]
2020/05/03 12:45:01 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 39
2020/05/03 12:47:39 rx: [c11562030001500000442503]
2020/05/03 12:47:39 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 33.6
2020/05/03 12:48:26 rx: [c13c62420012635c10442503a500000044100ba507a5000000462404]
2020/05/03 12:48:26 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/03 12:48:26 Message not handled [c13c62420012635c10442503a500000044100ba507a5000000462404]
--
2020/05/03 13:00:42 dropping wheel position on the ground: 0.0
2020/05/03 13:00:42 Device 6809944 (channel 0-'kjeller bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.2
2020/05/03 13:02:41 rx: [c11562030001490000432505]
2020/05/03 13:02:41 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 32.9
2020/05/03 13:05:41 rx: [c10f620300012200003a250a]
2020/05/03 13:05:41 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/03 13:05:46 rx: [c13c623f000b02b3003a250aa500000045100ca507a5000000462407]
--
2020/05/03 13:32:12 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 13:32:12 Message not handled [c13c62420012bd8810362403a5002e240c100da507a500000046240d]
2020/05/03 13:32:43 rx: [c11562030001410000452507]
2020/05/03 13:32:43 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 32.1
2020/05/03 13:35:43 rx: [c10f620300012200003a250c]
2020/05/03 13:35:43 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/03 13:36:44 rx: [c10c620300011200002d240e]
--
2020/05/03 13:53:08 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT OUT
2020/05/03 13:53:08 Message not handled [c13c623f00f101b3002e2405a5002e240c100da507a500000045240f]
2020/05/03 13:55:31 rx: [c115620300013a0000442508]
2020/05/03 13:55:31 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 31.4
2020/05/03 13:55:40 rx: [c13e62030000f800003c2402]
2020/05/03 13:55:40 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.8
2020/05/03 13:55:57 rx: [c13c624200124b3e103c2402a5002e240c100da507a5000000452400]
--
2020/05/03 14:22:33 rx: [c10c620300011800002e2402]
2020/05/03 14:22:33 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 28
2020/05/03 14:25:33 rx: [c115620300013a000044250a]
2020/05/03 14:25:33 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 31.4
2020/05/03 14:26:02 rx: [c133620300ffff000036240e]
2020/05/03 14:26:02 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/03 14:28:20 rx: [c13a62170000c900c13b2404]
--
2020/05/03 14:30:42 dropping wheel position on the ground: 0.0
2020/05/03 14:30:42 Device 6809944 (channel 0-'kjeller bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.3
2020/05/03 14:31:52 rx: [c1156203000133000044250b]
2020/05/03 14:31:52 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 30.7
2020/05/03 14:33:23 rx: [c10c620300011000002e2404]
2020/05/03 14:33:23 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 27.2
2020/05/03 14:35:09 rx: [c13c623f00e801b3002e2404a5002e2401100fa507a5000000442408]
--
2020/05/03 15:01:10 rx: [c13f62030000fc00002e2401]
2020/05/03 15:01:10 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.2
2020/05/03 15:01:54 rx: [c115620300012f000044250d]
2020/05/03 15:01:54 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 30.3
2020/05/03 15:05:49 rx: [c10f620300012200003a2502]
2020/05/03 15:05:49 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/03 15:05:50 rx: [c13c623f00e401b3003a2502a5000000431000a507a500000044240d]
--
2020/05/03 15:31:00 rx: [c13e62030000ff00003b2409]
2020/05/03 15:31:00 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.5
2020/05/03 15:31:02 rx: [c1156203000127000044250f]
2020/05/03 15:31:02 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 29.5
2020/05/03 15:35:51 rx: [c10f620300012200003a2504]
2020/05/03 15:35:51 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/03 15:36:01 rx: [c13c624200125f0f103a2504a5001e000000391006a5000000442402]
--
2020/05/03 15:50:03 rx: [c1096204004208cccd2d2409]
2020/05/03 15:50:03 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 34.2
2020/05/03 15:51:28 rx: [c11562030001200000432501]
2020/05/03 15:51:28 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.8
2020/05/03 15:51:40 rx: [c13e62030000fa00003b240a]
2020/05/03 15:51:40 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25
2020/05/03 15:51:50 rx: [c13662170000c800b52e2402]
--
2020/05/03 16:20:30 dropping wheel position on the ground: 18.1
2020/05/03 16:20:30 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.5
2020/05/03 16:21:30 rx: [c11562030001200000462503]
2020/05/03 16:21:30 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.8
2020/05/03 16:22:30 rx: [c13662170000cd00b52e2404]
2020/05/03 16:22:30 dropping wheel position on the ground: 18.1
2020/05/03 16:22:30 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.5
--
2020/05/03 16:38:34 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/03 16:38:34 Message not handled [c13c6242000a81db10472507a5002e24051003a506a500000045240b]
2020/05/03 16:40:44 rx: [c11562030001190000442505]
2020/05/03 16:40:44 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.1
2020/05/03 16:43:50 rx: [c137620400421f33332d2401]
2020/05/03 16:43:50 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 39.8
2020/05/03 16:44:59 rx: [c13b620400423d999a3c2403]
--
2020/05/03 17:05:57 rx: [c10f6203000122000039250a]
2020/05/03 17:05:57 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/03 17:06:16 rx: [c11562030001110000432507]
2020/05/03 17:06:16 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.3
2020/05/03 17:06:19 rx: [c13e62030000ff00003d2400]
2020/05/03 17:06:19 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.5
2020/05/03 17:06:19 topic: xcomfort/35/set/switch, message: false
--
2020/05/03 17:12:52 rx: [c1187000010000000042100d]
2020/05/03 17:12:52 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal good, cyclic false) status switched on
2020/05/03 17:13:28 rx: [c11562030001190000432508]
2020/05/03 17:13:28 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.1
2020/05/03 17:13:50 rx: [c137620400421f999a2d2402]
2020/05/03 17:13:50 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 39.9
2020/05/03 17:14:59 rx: [c13b620400424000003c2404]
--
2020/05/03 17:18:30 rx: [c13f62030000fb00002d240b]
2020/05/03 17:18:30 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.1
2020/05/03 17:18:34 rx: [c11562030001110000432509]
2020/05/03 17:18:34 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.3
2020/05/03 17:18:41 rx: [c13562040042b3cccd36240c]
2020/05/03 17:18:41 Device 6809944 (channel 1-'kjeller bad temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 89.9
2020/05/03 17:20:03 rx: [c109620400421933332d240c]
--
2020/05/03 17:44:59 rx: [c13b620400424133333d2405]
2020/05/03 17:44:59 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 48.3
2020/05/03 17:48:36 rx: [c1156203000111000042250b]
2020/05/03 17:48:36 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.3
2020/05/03 17:48:37 rx: [c13c62420012776d1042250ba50039250e1005a506a5000000442406]
2020/05/03 17:48:37 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal good, cyclic true) RCT REQ
2020/05/03 17:48:37 Message not handled [c13c62420012776d1042250ba50039250e1005a506a5000000442406]
--
2020/05/03 18:18:38 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 18:18:38 Message not handled [c13c6242001295ea102e2401a5003825051007a506a5000000462409]
2020/05/03 18:18:39 rx: [c115620300010e000043250d]
2020/05/03 18:18:39 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27
2020/05/03 18:18:39 topic: xcomfort/16/set/switch, message: true
2020/05/03 18:18:39 rx: [c11070000100000000491006]
2020/05/03 18:18:39 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/03 18:20:03 rx: [c109620400421b999a2d240e]
2020/05/03 18:20:03 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 38.9
2020/05/03 18:20:29 rx: [c13f620300010000002d2402]
--
2020/05/03 18:45:49 rx: [c13f62030000f900002d2404]
2020/05/03 18:45:49 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.9
2020/05/03 18:48:41 rx: [c1156203000115000044250f]
2020/05/03 18:48:41 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.7
2020/05/03 18:50:02 rx: [c109620400421f33332d240f]
2020/05/03 18:50:02 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 39.8
2020/05/03 18:50:30 rx: [c11762030000d20000492501]
--
2020/05/03 18:56:08 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 18:56:08 Message not handled [c13c6242001227a910372407a5003925091007a506a500000046240e]
2020/05/03 18:57:23 rx: [c115620300011c0000432500]
2020/05/03 18:57:23 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.4
2020/05/03 18:57:23 topic: xcomfort/16/set/switch, message: false
2020/05/03 18:57:24 rx: [c11070000000000000471008]
2020/05/03 18:57:24 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/03 18:58:02 rx: [c11762030000dd0000492503]
2020/05/03 18:58:02 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 22.1
2020/05/03 18:58:19 rx: [c13a62170000c900c13d240d]
--
2020/05/03 19:26:00 rx: [c133620300ffff0000362408]
2020/05/03 19:26:00 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/03 19:26:13 rx: [c11562030001150000432502]
2020/05/03 19:26:13 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.7
2020/05/03 19:27:49 rx: [c13f62030000f600002e2407]
2020/05/03 19:27:49 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.6
2020/05/03 19:27:49 topic: xcomfort/39/set/switch, message: true
--
2020/05/03 19:28:40 Message not handled [c13c62420012635c102e240aa50039250e1009a506a5000000472404]
2020/05/03 19:28:46 topic: xcomfort/16/set/switch, message: true
2020/05/03 19:28:47 rx: [c1107000010000000047100a]
2020/05/03 19:28:47 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/03 19:29:00 topic: xcomfort/16/set/switch, message: false
2020/05/03 19:29:01 rx: [c1107000000000000047100c]
2020/05/03 19:29:01 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/03 19:32:00 rx: [c13462170000ce0000352401]
2020/05/03 19:32:00 dropping wheel position on the ground: 0.0
2020/05/03 19:32:00 Device 6809944 (channel 0-'kjeller bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.6
--
2020/05/03 19:56:00 rx: [c133620300ffff0000352409]
2020/05/03 19:56:00 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/03 19:56:15 rx: [c11562030001110000442504]
2020/05/03 19:56:15 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/03 19:58:18 rx: [c13a62170000c900c13d240f]
2020/05/03 19:58:18 dropping wheel position on the ground: 19.3
2020/05/03 19:58:18 Device 6807667 (channel 0-'kjeller vaskerom temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.1
--
2020/05/03 20:26:00 rx: [c133620300ffff000036240a]
2020/05/03 20:26:00 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/03 20:26:17 rx: [c115620300010e0000432506]
2020/05/03 20:26:17 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27
2020/05/03 20:28:18 rx: [c13a62170000ca00c13d2400]
2020/05/03 20:28:18 dropping wheel position on the ground: 19.3
2020/05/03 20:28:18 Device 6807667 (channel 0-'kjeller vaskerom temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.2
--
2020/05/03 20:56:13 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 20:56:13 Message not handled [c13c624200e3d11f1036240ba50039250c100ba506a5000000452403]
2020/05/03 20:56:19 rx: [c115620300010e0000432508]
2020/05/03 20:56:19 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27
2020/05/03 20:57:09 rx: [c13f62030000fa00002d240f]
2020/05/03 20:57:09 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25
2020/05/03 20:58:18 rx: [c13a62170000ca00c13d2401]
--
2020/05/03 21:02:29 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 21:02:29 Message not handled [c13c62420012635c10352404a500000044100ca506a5000000462404]
2020/05/03 21:02:30 rx: [c1067000000000000050100d]
2020/05/03 21:02:30 Device 5736891 (channel 0-'1.etg bad speil') sent message (battery mains-powered, signal weak, cyclic false) value 0
2020/05/03 21:02:31 rx: [c113700000000000002d1008]
2020/05/03 21:02:31 Device 5734274 (channel 0-'1.etg kj�kken spotter') sent message (battery mains-powered, signal good, cyclic false) value 0
2020/05/03 21:02:31 rx: [c108700000000000003a1006]
--
2020/05/03 21:08:22 rx: [c10c620300010800002d240b]
2020/05/03 21:08:22 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 26.4
2020/05/03 21:08:25 rx: [c1067000620000000050100f]
2020/05/03 21:08:25 Device 5736891 (channel 0-'1.etg bad speil') sent message (battery mains-powered, signal weak, cyclic false) value 98
2020/05/03 21:08:28 rx: [c11970000000000000381006]
2020/05/03 21:08:28 Device 5740172 (channel 0-'1.etg dusj/bad') sent message (battery mains-powered, signal good, cyclic false) value 0
2020/05/03 21:08:44 rx: [c13c62420031ed4c10381006a50050100f002d100ba5000000452405]
--
2020/05/03 21:10:14 rx: [c10f6203000117000038250f]
2020/05/03 21:10:14 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.9
2020/05/03 21:11:33 rx: [c106700000000000004e1001]
2020/05/03 21:11:33 Device 5736891 (channel 0-'1.etg bad speil') sent message (battery mains-powered, signal weak, cyclic false) value 0
2020/05/03 21:13:12 topic: xcomfort/5/set/switch, message: false
2020/05/03 21:13:49 rx: [c1376204004221999a2d240a]
2020/05/03 21:13:49 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 40.4
--
2020/05/03 21:22:29 dropping wheel position on the ground: 18.1
2020/05/03 21:22:29 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.9
2020/05/03 21:23:21 rx: [c1156203000106000044250a]
2020/05/03 21:23:21 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 26.2
2020/05/03 21:23:38 rx: [c13e62030000fa00003e240d]
2020/05/03 21:23:38 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25
2020/05/03 21:26:00 rx: [c133620300ffff000035240c]
--
2020/05/03 21:52:30 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 21:52:30 Message not handled [c13c6242001281db102d240fa50038250f100da50ba500000046240b]
2020/05/03 21:53:23 rx: [c1156203000106000044250c]
2020/05/03 21:53:23 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 26.2
2020/05/03 21:54:18 rx: [c13e62030000fb00003e2401]
2020/05/03 21:54:18 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.1
2020/05/03 21:55:59 rx: [c133620300ffff000035240d]
--
2020/05/03 22:22:31 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/03 22:22:31 Message not handled [c13c6242001227a9102d2400a500000044100fa50ba500000045240e]
2020/05/03 22:23:25 rx: [c1156203000103000043250e]
2020/05/03 22:23:25 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.9
2020/05/03 22:25:59 rx: [c133620300ffff000035240e]
2020/05/03 22:25:59 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/03 22:28:17 rx: [c13a62170000c800c13d2404]
--
2020/05/03 22:52:29 dropping wheel position on the ground: 18.1
2020/05/03 22:52:29 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.4
2020/05/03 22:53:28 rx: [c11562030001030000432500]
2020/05/03 22:53:28 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.9
2020/05/03 22:53:49 rx: [c13f62030000f600002e2406]
2020/05/03 22:53:49 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.6
2020/05/03 22:55:59 rx: [c133620300ffff000035240f]
--
2020/05/03 23:22:29 dropping wheel position on the ground: 18.1
2020/05/03 23:22:29 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.2
2020/05/03 23:23:30 rx: [c11562030001030000432502]
2020/05/03 23:23:30 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.9
2020/05/03 23:24:29 rx: [c13f62030000f400002d240b]
2020/05/03 23:24:29 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.4
2020/05/03 23:25:59 rx: [c133620300ffff0000342400]
--
2020/05/03 23:52:28 dropping wheel position on the ground: 18.1
2020/05/03 23:52:28 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20
2020/05/03 23:53:32 rx: [c11562030001030000432504]
2020/05/03 23:53:32 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.9
2020/05/03 23:55:49 rx: [c13f62030000f100002e240f]
2020/05/03 23:55:49 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.1
2020/05/03 23:55:59 rx: [c133620300ffff0000342401]
--
2020/05/04 00:22:36 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/04 00:22:36 Message not handled [c13c624200124b3e102d2404a5000000431003a50ba5000000452400]
2020/05/04 00:23:34 rx: [c11562030000ff0000432506]
2020/05/04 00:23:34 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.5
2020/05/04 00:25:27 rx: [c10f62030000ff000039250d]
2020/05/04 00:25:27 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.5
2020/05/04 00:25:59 rx: [c133620300ffff0000362402]
--
2020/05/04 00:50:01 rx: [c109620400422b999a2d240b]
2020/05/04 00:50:01 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 42.9
2020/05/04 00:51:30 rx: [c11562030000f80000432508]
2020/05/04 00:51:30 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 24.8
2020/05/04 00:52:28 rx: [c13662170000c600b52d2405]
2020/05/04 00:52:28 dropping wheel position on the ground: 18.1
2020/05/04 00:52:28 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 19.8
--
2020/05/04 00:55:58 rx: [c133620300ffff0000342403]
2020/05/04 00:55:58 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 00:57:30 rx: [c11562030000ff0000432509]
2020/05/04 00:57:30 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.5
2020/05/04 00:58:17 rx: [c13a62170000c200c13d2409]
2020/05/04 00:58:17 dropping wheel position on the ground: 19.3
2020/05/04 00:58:17 Device 6807667 (channel 0-'kjeller vaskerom temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 19.4
--
2020/05/04 01:20:01 rx: [c109620400422c66662e240c]
2020/05/04 01:20:01 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 43.1
2020/05/04 01:20:38 rx: [c11562030000f8000043250b]
2020/05/04 01:20:38 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 24.8
2020/05/04 01:21:48 rx: [c13f62030000eb00002d240a]
2020/05/04 01:21:48 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 23.5
2020/05/04 01:22:28 rx: [c13662170000c400b52d2406]
--
2020/05/04 01:25:58 rx: [c133620300ffff0000352404]
2020/05/04 01:25:58 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 01:26:38 rx: [c11562030000ff000044250c]
2020/05/04 01:26:38 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 25.5
2020/05/04 01:27:33 rx: [c13c623f00e101af0044250ca5000000431005a50ba500000045240b]
2020/05/04 01:27:33 (partially decoded) temp 17.5C moisture 48.1%
2020/05/04 01:27:33 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT OUT
--
2020/05/04 01:32:13 rx: [c11762030000dd0000462504]
2020/05/04 01:32:13 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 22.1
2020/05/04 01:33:52 rx: [c11562030000f8000043250e]
2020/05/04 01:33:52 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 24.8
2020/05/04 01:34:28 rx: [c13f62030000e600002d240b]
2020/05/04 01:34:28 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 23
2020/05/04 01:35:36 rx: [c13e62030000ed00003d240c]
--
2020/05/04 02:02:40 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/04 02:02:40 Message not handled [c13c6242001ad11f10462506a5000000441006a50ba5000000452403]
2020/05/04 02:03:54 rx: [c11562030000f80000432500]
2020/05/04 02:03:54 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 24.8
2020/05/04 02:08:55 rx: [c13c624200e2635c10432500a5000000441006a50ba5000000452404]
2020/05/04 02:08:55 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal good, cyclic true) RCT REQ
2020/05/04 02:08:55 Message not handled [c13c624200e2635c10432500a5000000441006a50ba5000000452404]
--
2020/05/04 02:32:40 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/04 02:32:40 Message not handled [c13c624200faf97d10462508a5000000431007a50ba5000000462407]
2020/05/04 02:33:56 rx: [c11562030000f50000432502]
2020/05/04 02:33:56 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 24.5
2020/05/04 02:38:56 rx: [c13c624200c21bfa10432502a5000000431007a50ba5000000442408]
2020/05/04 02:38:56 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal good, cyclic true) RCT REQ
2020/05/04 02:38:56 Message not handled [c13c624200c21bfa10432502a5000000431007a50ba5000000442408]
--
2020/05/04 03:02:19 rx: [c11762030000d6000045250a]
2020/05/04 03:02:19 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21.4
2020/05/04 03:03:58 rx: [c11562030000f50000432504]
2020/05/04 03:03:58 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 24.5
2020/05/04 03:09:11 rx: [c10c62030000f700002d2408]
2020/05/04 03:09:11 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.7
2020/05/04 03:10:00 rx: [c1007339005fcb66004a041019000000431009]
--
2020/05/04 03:15:02 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal good, cyclic false) status switched on
2020/05/04 03:15:06 topic: xcomfort/16/set/switch, message: true
2020/05/04 03:15:06 rx: [c1107000010000000048100e]
2020/05/04 03:15:06 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/04 03:15:10 topic: xcomfort/39/set/switch, message: true
2020/05/04 03:15:12 topic: xcomfort/35/set/switch, message: true
2020/05/04 03:16:26 rx: [c13c62420022bd881048100ea5004310011009a50ba500000045240d]
--
2020/05/04 03:28:58 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal good, cyclic true) RCT REQ
2020/05/04 03:28:58 Message not handled [c13c62420012a9b91038250da5004310011009a50ba500000046240f]
2020/05/04 03:29:47 rx: [c11562030000fc0000432505]
2020/05/04 03:29:47 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.2
2020/05/04 03:31:40 rx: [c10c620300010800002d240a]
2020/05/04 03:31:40 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 26.4
2020/05/04 03:31:57 rx: [c13462170000c90000342401]
--
2020/05/04 03:46:15 rx: [c13e62030000f900003d2408]
2020/05/04 03:46:15 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.9
2020/05/04 03:46:37 rx: [c11562030001030000432507]
2020/05/04 03:46:37 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 25.9
2020/05/04 03:48:59 rx: [c13c62420012d11f10432507a5002e240d00531007a5000000452403]
2020/05/04 03:48:59 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal good, cyclic true) RCT REQ
2020/05/04 03:48:59 Message not handled [c13c62420012d11f10432507a5002e240d00531007a5000000452403]
--
2020/05/04 04:10:00 rx: [c1007339005fcb66004a04101900000044100b]
2020/05/04 04:10:00 Device 6736735, type CSAU 01/01-16 sent extended status message: status OFF, temp 25C (battery mains-powered, signal normal)
2020/05/04 04:11:33 rx: [c115620300010a0000442509]
2020/05/04 04:11:33 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 26.6
2020/05/04 04:11:48 rx: [c13f62030000e400002d2403]
2020/05/04 04:11:48 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 22.8
2020/05/04 04:12:44 rx: [c13c62420012ed4c102d2403a500000044100ba507a5000000452405]
--
2020/05/04 04:28:20 dropping wheel position on the ground: 22.2
2020/05/04 04:28:20 Device 6784078 (channel 0-'1.etg dusj/bad (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 22.7
2020/05/04 04:31:21 rx: [c1156203000111000044250a]
2020/05/04 04:31:21 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 04:31:40 rx: [c10c620300010800002d2400]
2020/05/04 04:31:40 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 26.4
2020/05/04 04:31:40 topic: xcomfort/20/set/switch, message: true
--
2020/05/04 04:50:01 rx: [c10c620300011d00002d2403]
2020/05/04 04:50:01 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 28.5
2020/05/04 04:50:53 rx: [c1156203000119000043250c]
2020/05/04 04:50:53 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.1
2020/05/04 04:50:54 topic: xcomfort/16/set/switch, message: false
2020/05/04 04:50:54 rx: [c110700000000000004a1000]
2020/05/04 04:50:54 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/04 04:52:28 rx: [c13662170000c100b52d240d]
2020/05/04 04:52:28 dropping wheel position on the ground: 18.1
2020/05/04 04:52:28 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 19.3
--
2020/05/04 05:16:32 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/04 05:16:32 Message not handled [c13c624200d34b3e102d240aa500000044100da507a5000000462400]
2020/05/04 05:17:00 rx: [c10670006200000000551003]
2020/05/04 05:17:00 Device 5736891 (channel 0-'1.etg bad speil') sent message (battery mains-powered, signal weak, cyclic false) value 98
2020/05/04 05:17:01 rx: [c1156203000111000043250e]
2020/05/04 05:17:01 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.3
2020/05/04 05:17:30 rx: [c10c620300011100002d2406]
2020/05/04 05:17:30 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 27.3
2020/05/04 05:17:35 rx: [c13e62030000f800003d240e]
--
2020/05/04 05:46:32 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/04 05:46:32 Message not handled [c13c62420012776d102e240ca5003d240d100da507a5000000452406]
2020/05/04 05:47:04 rx: [c11562030001110000432500]
2020/05/04 05:47:04 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.3
2020/05/04 05:47:30 rx: [c10c620300011000002e2408]
2020/05/04 05:47:30 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 27.2
2020/05/04 05:48:55 rx: [c13e62030000fb00003d2400]
--
2020/05/04 06:16:27 rx: [c13f62030000f600002e240e]
2020/05/04 06:16:27 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.6
2020/05/04 06:17:06 rx: [c115620300010e0000422502]
2020/05/04 06:17:06 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27
2020/05/04 06:17:06 topic: xcomfort/16/set/switch, message: true
2020/05/04 06:17:06 rx: [c11070000100000000481002]
2020/05/04 06:17:06 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/04 06:19:04 rx: [c13c62420021bd8810481002a500422502100fa509a500000045240d]
2020/05/04 06:19:04 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery mains-powered, signal normal, cyclic false) RCT REQ
2020/05/04 06:19:04 Message not handled [c13c62420021bd8810481002a500422502100fa509a500000045240d]
--
2020/05/04 06:44:54 rx: [c13b620400424000003b240f]
2020/05/04 06:44:54 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 48
2020/05/04 06:45:38 rx: [c11562030001150000432504]
2020/05/04 06:45:38 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.7
2020/05/04 06:47:47 rx: [c13f62030000f700002d2401]
2020/05/04 06:47:47 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.7
2020/05/04 06:48:20 rx: [c10c620300011800002d240e]
--
2020/05/04 06:55:56 rx: [c133620300ffff000036240f]
2020/05/04 06:55:56 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 06:56:08 rx: [c115620300011c0000432505]
2020/05/04 06:56:08 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.4
2020/05/04 06:56:08 topic: xcomfort/16/set/switch, message: false
2020/05/04 06:56:09 rx: [c110700000000000004c1004]
2020/05/04 06:56:09 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal weak, cyclic false) status switched off
2020/05/04 06:56:25 rx: [c13c623f00ce01ad004c1004a50043250500421000a5000000432404]
2020/05/04 06:56:25 (partially decoded) temp 17.3C moisture 46.2%
2020/05/04 06:56:25 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery mains-powered, signal weak, cyclic false) RCT OUT
--
2020/05/04 07:17:47 rx: [c13f62030000f900002d2402]
2020/05/04 07:17:47 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.9
2020/05/04 07:19:16 rx: [c11562030001150000432507]
2020/05/04 07:19:16 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.7
2020/05/04 07:20:00 rx: [c109620400422b999a2e2408]
2020/05/04 07:20:00 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 42.9
2020/05/04 07:21:40 rx: [c10c620300011000002e2402]
--
2020/05/04 07:48:27 rx: [c13f62030000fb00002d2404]
2020/05/04 07:48:27 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.1
2020/05/04 07:49:18 rx: [c11562030001110000432509]
2020/05/04 07:49:18 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.3
2020/05/04 07:50:00 rx: [c109620400422d999a2d2409]
2020/05/04 07:50:00 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 43.4
2020/05/04 07:52:54 rx: [c13e62030000f700003d240a]
--
2020/05/04 08:17:17 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/04 08:17:17 Message not handled [c13c62420012a9b9102e2406a5000000441003a500a500000044240f]
2020/05/04 08:19:20 rx: [c115620300010e000044250b]
2020/05/04 08:19:20 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27
2020/05/04 08:19:20 topic: xcomfort/16/set/switch, message: true
2020/05/04 08:19:21 rx: [c11070000100000000481006]
2020/05/04 08:19:21 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/04 08:19:47 rx: [c13f62030000f900002e2407]
2020/05/04 08:19:47 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.9
2020/05/04 08:19:59 rx: [c109620400422ecccd2d240a]
--
2020/05/04 08:44:54 rx: [c13b620400424133333d2403]
2020/05/04 08:44:54 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 48.3
2020/05/04 08:45:46 rx: [c1156203000115000044250d]
2020/05/04 08:45:46 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.7
2020/05/04 08:49:10 rx: [c13c62420012ed4c1044250da5001e0000002e100da5000000452405]
2020/05/04 08:49:10 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/04 08:49:10 Message not handled [c13c62420012ed4c1044250da5001e0000002e100da5000000452405]
--
2020/05/04 08:53:07 dropping wheel position on the ground: 18.1
2020/05/04 08:53:07 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.4
2020/05/04 08:55:23 rx: [c115620300011c000043250e]
2020/05/04 08:55:23 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.4
2020/05/04 08:55:23 topic: xcomfort/16/set/switch, message: false
2020/05/04 08:55:23 rx: [c11070000000000000461008]
2020/05/04 08:55:23 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/04 08:55:34 rx: [c13e62030000fd00003d2400]
2020/05/04 08:55:34 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.3
2020/05/04 08:55:56 rx: [c133620300ffff0000362403]
--
2020/05/04 09:21:07 rx: [c13f62030000f700002e240b]
2020/05/04 09:21:07 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.7
2020/05/04 09:22:43 rx: [c11562030001150000432500]
2020/05/04 09:22:43 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.7
2020/05/04 09:23:07 rx: [c13662170000ce00b52d2407]
2020/05/04 09:23:07 dropping wheel position on the ground: 18.1
2020/05/04 09:23:07 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.6
--
2020/05/04 09:32:56 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/04 09:32:56 Message not handled [c13c62420078bd8810492504a5000000431005a50da500000044240d]
2020/05/04 09:36:35 rx: [c106700062000000004f1003]
2020/05/04 09:36:35 Device 5736891 (channel 0-'1.etg bad speil') sent message (battery mains-powered, signal weak, cyclic false) value 98
2020/05/04 09:36:44 rx: [c11562030001190000440502]
2020/05/04 09:36:44 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic false) event 'value' with value 28.1
2020/05/04 09:36:47 rx: [c11562030001150000450509]
2020/05/04 09:36:47 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic false) event 'value' with value 27.7
2020/05/04 09:36:50 rx: [c1156203000115000045050b]
2020/05/04 09:36:50 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic false) event 'value' with value 27.7
2020/05/04 09:39:11 rx: [c13c6242000027a91045050ba5004925041005a50da500000045240e]
2020/05/04 09:39:11 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic false) RCT REQ
2020/05/04 09:39:11 Message not handled [c13c6242000027a91045050ba5004925041005a50da500000045240e]
2020/05/04 09:39:23 rx: [c1156203000115000043050d]
2020/05/04 09:39:23 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic false) event 'value' with value 27.7
2020/05/04 09:39:25 rx: [c11562030001150000430503]
2020/05/04 09:39:25 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal good, cyclic false) event 'value' with value 27.7
2020/05/04 09:40:13 rx: [c13e620300010100003c2406]
2020/05/04 09:40:13 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.7
2020/05/04 09:41:08 rx: [c115620300070800004f0509]
2020/05/04 09:41:08 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal weak, cyclic false) event 'value' with value 180
2020/05/04 09:43:33 rx: [c13e620300010600003d2407]
2020/05/04 09:43:33 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 26.2
2020/05/04 09:43:47 rx: [c137620400422066662d2403]
--
2020/05/04 10:10:00 rx: [c1007339005fcb66004a04101a000000441007]
2020/05/04 10:10:00 Device 6736735, type CSAU 01/01-16 sent extended status message: status OFF, temp 26C (battery mains-powered, signal normal)
2020/05/04 10:11:14 rx: [c115620300070800004d2505]
2020/05/04 10:11:14 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal weak, cyclic true) event 'value' with value 180
2020/05/04 10:12:59 rx: [c100733900070569004d0002ff00200000003f100c]
2020/05/04 10:12:59 Device 6882567, type CDAU 01/04 sent extended status message: value 255, temp 32C (battery mains-powered, signal good)
2020/05/04 10:13:43 rx: [c115620300011100004a0506]
2020/05/04 10:13:43 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic false) event 'value' with value 27.3
2020/05/04 10:13:46 rx: [c115620300011100004c0509]
2020/05/04 10:13:46 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal weak, cyclic false) event 'value' with value 27.3
2020/05/04 10:13:47 rx: [c137620400421f33332e2404]
2020/05/04 10:13:47 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 39.8
2020/05/04 10:13:59 rx: [c106700062000000004e1000]
2020/05/04 10:13:59 Device 5736891 (channel 0-'1.etg bad speil') sent message (battery mains-powered, signal weak, cyclic false) value 98
2020/05/04 10:13:59 rx: [c107700062000000004e1006]
2020/05/04 10:13:59 Device 5736925 (channel 0-'1.etg bad tak') sent message (battery mains-powered, signal weak, cyclic false) value 98
2020/05/04 10:14:53 rx: [c13b6204004242cccd3f2406]
2020/05/04 10:14:53 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 48.7
2020/05/04 10:14:59 rx: [c10c620300011300002e2401]
--
2020/05/04 10:43:47 rx: [c137620400421d33332e2405]
2020/05/04 10:43:47 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 39.3
2020/05/04 10:43:50 rx: [c115620300010e0000492506]
2020/05/04 10:43:50 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27
2020/05/04 10:43:50 topic: xcomfort/16/set/switch, message: true
2020/05/04 10:43:50 rx: [c1107000010000000051100e]
2020/05/04 10:43:50 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal weak, cyclic false) status switched on
2020/05/04 10:44:53 rx: [c13b6204004242cccd3d2407]
2020/05/04 10:44:53 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 48.7
2020/05/04 10:46:43 rx: [c13c6242001295ea103d2407a500492506003b1008a5000000442409]
--
2020/05/04 11:13:00 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/04 11:13:00 Message not handled [c13c6242001227a9102e2401a5003b25021009a508a500000045240e]
2020/05/04 11:13:29 rx: [c11562030001110000482508]
2020/05/04 11:13:29 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 11:13:47 rx: [c137620400420b999a2e2406]
2020/05/04 11:13:47 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 34.9
2020/05/04 11:15:33 rx: [c13b6204004225999a3e2409]
--
2020/05/04 11:23:46 dropping wheel position on the ground: 18.1
2020/05/04 11:23:46 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 20.4
2020/05/04 11:24:46 rx: [c115620300011c000049250a]
2020/05/04 11:24:46 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.4
2020/05/04 11:24:46 topic: xcomfort/16/set/switch, message: false
2020/05/04 11:24:46 rx: [c110700000000000004b1000]
2020/05/04 11:24:46 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/04 11:24:59 rx: [c10c620300010f00002e2408]
2020/05/04 11:24:59 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 27.1
2020/05/04 11:25:55 rx: [c133620300ffff0000372408]
--
2020/05/04 11:53:47 rx: [c13f62030000f800002d2404]
2020/05/04 11:53:47 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.8
2020/05/04 11:54:48 rx: [c1156203000119000048250c]
2020/05/04 11:54:48 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.1
2020/05/04 11:55:55 rx: [c133620300ffff0000372409]
2020/05/04 11:55:55 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 11:56:36 rx: [c13c623f00e601b600372409a5003b25051009a508a5000000442404]
--
2020/05/04 12:24:26 rx: [c13f62030000f300002d2406]
2020/05/04 12:24:26 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.3
2020/05/04 12:24:50 rx: [c115620300011100004a250e]
2020/05/04 12:24:50 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 12:25:54 rx: [c133620300ffff000037240a]
2020/05/04 12:25:54 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 12:26:47 rx: [c13c624200121bfa1037240aa5003b250a100ba508a5000000442408]
--
2020/05/04 12:53:47 rx: [c13f62030000f300002d2408]
2020/05/04 12:53:47 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.3
2020/05/04 12:54:51 rx: [c115620300011100004a2500]
2020/05/04 12:54:51 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 12:55:37 topic: xcomfort/18/set/switch, message: false
2020/05/04 12:55:37 topic: xcomfort/17/set/switch, message: false
2020/05/04 12:55:37 rx: [c1127000000000000048100f]
--
2020/05/04 13:23:46 dropping wheel position on the ground: 18.1
2020/05/04 13:23:46 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 21.2
2020/05/04 13:24:53 rx: [c115620300010e0000492502]
2020/05/04 13:24:53 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27
2020/05/04 13:24:54 topic: xcomfort/16/set/switch, message: true
2020/05/04 13:24:54 rx: [c110700001000000004c1002]
2020/05/04 13:24:54 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal weak, cyclic false) status switched on
2020/05/04 13:25:54 rx: [c133620300ffff000037240c]
2020/05/04 13:25:54 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 13:26:12 rx: [c13a62170000e100c13e2406]
--
2020/05/04 13:53:46 dropping wheel position on the ground: 18.1
2020/05/04 13:53:46 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 21.1
2020/05/04 13:54:55 rx: [c115620300011100004a2504]
2020/05/04 13:54:55 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 13:55:54 rx: [c133620300ffff000035240d]
2020/05/04 13:55:54 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 13:56:41 rx: [c13c623f00f001b60035240da5002e240e100da508a5000000452408]
--
2020/05/04 14:03:01 rx: [c11762030000d20000492506]
2020/05/04 14:03:01 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21
2020/05/04 14:03:41 rx: [c115620300011c00004b2505]
2020/05/04 14:03:41 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.4
2020/05/04 14:03:41 topic: xcomfort/16/set/switch, message: false
2020/05/04 14:03:41 rx: [c110700000000000004e1004]
2020/05/04 14:03:41 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal weak, cyclic false) status switched off
2020/05/04 14:04:52 rx: [c13e62030000f600003e240a]
2020/05/04 14:04:52 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 24.6
2020/05/04 14:04:52 topic: xcomfort/35/set/switch, message: true
--
2020/05/04 14:33:09 rx: [c11870000100000000441000]
2020/05/04 14:33:09 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/04 14:33:43 rx: [c11562030001190000492507]
2020/05/04 14:33:43 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.1
2020/05/04 14:38:12 rx: [c13e620300010300003c240e]
2020/05/04 14:38:12 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.9
2020/05/04 14:39:10 rx: [c10f620300012200003a250d]
--
2020/05/04 15:03:07 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/04 15:03:07 Message not handled [c13c624200dac52e1045250aa5000000441000a508a5000000462401]
2020/05/04 15:03:44 rx: [c11562030001110000492509]
2020/05/04 15:03:44 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 15:05:36 rx: [c10f620300011700003b2500]
2020/05/04 15:05:36 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 27.9
2020/05/04 15:05:36 topic: xcomfort/24/set/switch, message: true
--
2020/05/04 15:33:07 rx: [c11762030000d6000047250c]
2020/05/04 15:33:07 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21.4
2020/05/04 15:33:46 rx: [c1156203000111000049250b]
2020/05/04 15:33:46 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 15:34:26 rx: [c13662170000db00b52d2405]
2020/05/04 15:34:26 dropping wheel position on the ground: 18.1
2020/05/04 15:34:26 Device 6783968 (channel 0-'kjeller inngang temp (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 21.9
--
2020/05/04 16:03:09 rx: [c11762030000d6000048250e]
2020/05/04 16:03:09 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21.4
2020/05/04 16:03:48 rx: [c115620300010e000049250d]
2020/05/04 16:03:48 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27
2020/05/04 16:03:48 topic: xcomfort/16/set/switch, message: true
2020/05/04 16:03:49 rx: [c110700001000000004c1006]
2020/05/04 16:03:49 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal weak, cyclic false) status switched on
2020/05/04 16:06:45 rx: [c13c623f00e801b6004c1006a50049250d1002a508a500000044240b]
2020/05/04 16:06:45 (partially decoded) temp 18.2C moisture 48.8%
2020/05/04 16:06:45 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery mains-powered, signal weak, cyclic false) RCT OUT
--
2020/05/04 16:33:11 rx: [c11762030000d60000472500]
2020/05/04 16:33:11 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21.4
2020/05/04 16:33:50 rx: [c115620300011100004a250f]
2020/05/04 16:33:50 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 16:34:14 rx: [c10f620300011e00003b250f]
2020/05/04 16:34:14 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.6
2020/05/04 16:34:14 topic: xcomfort/24/set/switch, message: true
--
2020/05/04 16:40:11 rx: [c13e62030000fa00003d2405]
2020/05/04 16:40:11 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25
2020/05/04 16:41:46 rx: [c115620300011c00004a2500]
2020/05/04 16:41:46 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.4
2020/05/04 16:41:46 topic: xcomfort/16/set/switch, message: false
2020/05/04 16:41:46 rx: [c110700000000000004b1008]
2020/05/04 16:41:46 Device 5727387 (channel 0-'1.etg bad vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/04 16:43:11 rx: [c13c624200284b3e104b1008a5004a25001003a508a5000000462400]
2020/05/04 16:43:11 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery mains-powered, signal normal, cyclic false) RCT REQ
2020/05/04 16:43:11 Message not handled [c13c624200284b3e104b1008a5004a25001003a508a5000000462400]
--
2020/05/04 17:10:51 rx: [c13e62030000fe00003e2407]
2020/05/04 17:10:51 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.4
2020/05/04 17:11:47 rx: [c11562030001190000462502]
2020/05/04 17:11:47 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.1
2020/05/04 17:13:45 rx: [c137620400420933332e2402]
2020/05/04 17:13:45 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 34.3
2020/05/04 17:15:31 rx: [c13b620400426666663e2405]
--
2020/05/04 17:40:51 rx: [c13e62030000fe00003d2408]
2020/05/04 17:40:51 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.4
2020/05/04 17:41:49 rx: [c11562030001110000492504]
2020/05/04 17:41:49 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27.3
2020/05/04 17:42:25 rx: [c13f62030000fa00002d240a]
2020/05/04 17:42:25 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25
2020/05/04 17:43:45 rx: [c137620400420a66662d2403]
--
2020/05/04 18:10:50 rx: [c13e62030000fc00003d2409]
2020/05/04 18:10:50 Device 6807667 (channel 6-'kjeller vaskerom temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.2
2020/05/04 18:11:51 rx: [c115620300010e0000482506]
2020/05/04 18:11:51 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 27
2020/05/04 18:11:51 topic: xcomfort/16/set/switch, message: true
2020/05/04 18:11:53 no ack
2020/05/04 18:13:45 rx: [c137620400420f999a2d2404]
--
2020/05/04 18:33:18 rx: [c11762030000d20000462508]
2020/05/04 18:33:18 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21
2020/05/04 18:36:28 rx: [c11562030001190000492508]
2020/05/04 18:36:28 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.1
2020/05/04 18:36:51 rx: [c13c623f00cb01b500492508a5000000441007a508a5000000472403]
2020/05/04 18:36:51 (partially decoded) temp 18.1C moisture 45.9%
2020/05/04 18:36:51 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT OUT
--
2020/05/04 19:06:27 rx: [c100733900b3f868004d0002ff001b000000531008]
2020/05/04 19:06:27 Device 6879411, type CDAU 01/04 sent extended status message: value 255, temp 27C (battery mains-powered, signal weak)
2020/05/04 19:06:30 rx: [c1156203000120000049250a]
2020/05/04 19:06:30 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 28.8
2020/05/04 19:07:01 rx: [c13c62420098f97d1049250aa5001b000000531008a5000000452407]
2020/05/04 19:07:01 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery new, signal normal, cyclic true) RCT REQ
2020/05/04 19:07:01 Message not handled [c13c62420098f97d1049250aa5001b000000531008a5000000452407]
--
2020/05/04 19:19:57 rx: [c109620400420b33332d2400]
2020/05/04 19:19:57 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 34.8
2020/05/04 19:22:47 rx: [c115620300012b000048250c]
2020/05/04 19:22:47 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 29.9
2020/05/04 19:22:56 rx: [c11762030000d6000047250c]
2020/05/04 19:22:56 Device 5881353 (channel 1-'1.etg liten gang temp (Kanal B)') sent message (battery new, signal normal, cyclic true) event 'value' with value 21.4
2020/05/04 19:24:50 rx: [c13e62030000fc00003c2400]
--
2020/05/04 19:45:30 rx: [c13b6204004260cccd3c240a]
2020/05/04 19:45:30 Device 6807667 (channel 1-'kjeller vaskerom temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 56.2
2020/05/04 19:49:04 rx: [c1156203000136000048250e]
2020/05/04 19:49:04 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 31
2020/05/04 19:49:07 rx: [c10c620300010600002d2408]
2020/05/04 19:49:07 Device 6784078 (channel 6-'1.etg dusj/bad (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 26.2
2020/05/04 19:49:07 topic: xcomfort/20/set/switch, message: true
--
2020/05/04 20:18:25 rx: [c13f620300010000002d2405]
2020/05/04 20:18:25 Device 6783968 (channel 6-'kjeller inngang temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value 25.6
2020/05/04 20:19:06 rx: [c115620300013e0000482500]
2020/05/04 20:19:06 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 31.8
2020/05/04 20:19:57 rx: [c109620400421666662d2402]
2020/05/04 20:19:57 Device 6784078 (channel 1-'1.etg dusj/bad (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 37.6
2020/05/04 20:21:20 rx: [c10f620300012500003a2505]
--
2020/05/04 20:40:56 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery mains-powered, signal normal, cyclic false) RCT OUT
2020/05/04 20:40:56 Message not handled [c13c623f00bf01b400451006a5003a2508100ba508a5000000462406]
2020/05/04 20:43:41 rx: [c11562030001490000482501]
2020/05/04 20:43:41 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 32.9
2020/05/04 20:43:45 rx: [c137620400421533332d2409]
2020/05/04 20:43:45 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 37.3
2020/05/04 20:44:09 rx: [c13e62030000fb00003c2403]
--
2020/05/04 21:02:17 rx: [c10b7000000000000042100a]
2020/05/04 21:02:17 Device 5734068 (channel 0-'1.etg liten gang') sent message (battery mains-powered, signal good, cyclic false) value 0
2020/05/04 21:02:17 rx: [c10770000000000000491007]
2020/05/04 21:02:17 Device 5736925 (channel 0-'1.etg bad tak') sent message (battery mains-powered, signal normal, cyclic false) value 0
2020/05/04 21:02:18 rx: [c113700000000000002d1000]
2020/05/04 21:02:18 Device 5734274 (channel 0-'1.etg kj�kken spotter') sent message (battery mains-powered, signal good, cyclic false) value 0
2020/05/04 21:02:18 rx: [c108700000000000003b1006]
--
2020/05/04 21:07:06 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery good, signal good, cyclic true) RCT REQ
2020/05/04 21:07:06 Message not handled [c13c624200bd3398102d2408a5003a250b004a100aa500000046240c]
2020/05/04 21:09:50 rx: [c10770001d0000000049100d]
2020/05/04 21:09:50 Device 5736925 (channel 0-'1.etg bad tak') sent message (battery mains-powered, signal normal, cyclic false) value 29
2020/05/04 21:10:00 rx: [c1007339005fcb66004a04101a00000043100d]
2020/05/04 21:10:00 Device 6736735, type CSAU 01/01-16 sent extended status message: status OFF, temp 26C (battery mains-powered, signal good)
2020/05/04 21:10:09 rx: [c13e62030000fb00003e2405]
--
2020/05/04 21:13:22 Device 7417943 (channel 0-'hybel bad temp (Temperatur)') sent message (battery mains-powered, signal good, cyclic false) RCT REQ
2020/05/04 21:13:22 Message not handled [c13c62420031bd88103a100ba5003a250d100da50aa500000045240d]
2020/05/04 21:13:43 rx: [c115620300014c0000472503]
2020/05/04 21:13:43 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 33.2
2020/05/04 21:13:45 rx: [c137620400421533332d240a]
2020/05/04 21:13:45 Device 6783968 (channel 1-'kjeller inngang temp (Fuktighet)') sent message (battery good, signal good, cyclic true) event 'value' with value 37.3
2020/05/04 21:15:29 rx: [c13b620400425e00003e240d]
--
2020/05/04 21:25:51 rx: [c133620300ffff000036240c]
2020/05/04 21:25:51 Device 6809944 (channel 6-'kjeller bad temp (ekstern Sensor (PT1000))') sent message (battery good, signal good, cyclic true) event 'value' with value -0.1
2020/05/04 21:26:15 rx: [c11562030001580000482505]
2020/05/04 21:26:15 Device 5881271 (channel 1-'1.etg bad temp (Kanal A)') sent message (battery new, signal normal, cyclic true) event 'value' with value 34.4
2020/05/04 21:28:17 rx: [c10162170000ec00de2d240e]
2020/05/04 21:28:17 dropping wheel position on the ground: 22.2
2020/05/04 21:28:17 Device 6784078 (channel 0-'1.etg dusj/bad (Temperatur)') sent message (battery good, signal good, cyclic true) event 'value' with value 23.6
geeewizzz commented 4 years ago

Seems like the topic: xcomfort/16/set/switch, message: false was never sent when it should have? HA reports it as off though in the interface and when I poll the MQTT topic for status.

It seems to be happening to the same device over and over though, as far as I can remember it has not happened to the others.

As you probably see in the logs it did report 180 at some point, I pushed some MRF changes where I made it start reporting from the wrong channel in the sensor again, by mistake. So that has nothing to do with it. I just made some minor adjustments to ensure that there were no routing hops between the "1.etg bad vk" and the USB communication stick.

karloygard commented 4 years ago

There's a lost ack (the only one) at 18:11:53:

2020/05/04 18:11:51 topic: xcomfort/16/set/switch, message: true
2020/05/04 18:11:53 no ack

This message should probably be a bit more "shouty", as it's a potentially serious issue.

Most likely, the actuator did switch on, but poor reception caused the acknowledgement to be lost. You probably want to add hops between the devices, rather than having none.

Aside from that it's an open question what to do. It's possible to attempt to resend the message a few times before giving up. We still may have situations where actuators fail to ack messages and wind up in wrong state. Suggestions appreciated!

geeewizzz commented 4 years ago

Ah yes, so HA thought it was off the whole time but it was actually heating, then next time after 18:11 it reported it was above desired temp so it didnt do anything, but since it was in the wrong state it kept heating. Now I get it.

I guess retrying a few times on "no ack" is the best way forward. Then maybe setting the device to unavailable or something if it still fails? (To force the user to take action if this happens).

I can't really think of better suggestions, it might be a possibility to initiate some sort of "refresh status" on all devices/entities on an interval, but that seems like a "hacky" way to solve it? (I have noticed lights in the wrong state when using physical switches, and messages not making it to HA).

karloygard commented 4 years ago

I pushed a new image with retrying and more shouty errors messages, but I had issues exercising the code here at home, for reasons unknown to me. Please give it a shot and see if you can reproduce the issue again.

geeewizzz commented 4 years ago

Done last night. Running fine. No sign of errors or "no ack" in the logs so far, will keep you posted if something happens.

geeewizzz commented 4 years ago

log-vk-issue.txt

Screenshot 2020-05-07 at 10 23 18

Seems I had a similar issue yesterday between 17-19CET, the start of it at least then it got resolved by itself somehow? I haven't had time to investigate the logs in detail.

geeewizzz commented 4 years ago

Thermostat during daytime is set to 29.0c. So the 15:31UTC "off" is correct, and the temperature drops. There should have been an "on" at 15:42UTC, it seems it actually turned on but HA didnt notice it?

2020/05/06 15:25:50 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal good, cyclic false) status switched on
2020/05/06 15:31:31 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29.7
2020/05/06 15:31:32 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal normal, cyclic false) status switched off
2020/05/06 15:42:57 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/06 16:12:59 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29.3
2020/05/06 16:36:42 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 30
2020/05/06 17:06:44 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 30.4
2020/05/06 17:36:46 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 30.7
2020/05/06 18:06:48 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 30.7
2020/05/06 18:24:50 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 30
2020/05/06 18:54:34 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29.3
2020/05/06 19:24:36 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29.3
2020/05/06 19:54:38 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/06 20:24:41 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29
2020/05/06 20:34:53 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 28.3
2020/05/06 20:34:54 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal normal, cyclic false) status switched on
2020/05/06 20:39:05 Device 5881341 (channel 1-'1.etg stor gang temp (Kanal A)') sent message (battery new, signal good, cyclic true) event 'value' with value 29.3
2020/05/06 20:39:06 Device 5733583 (channel 0-'1.etg stor gang vk') sent message (battery mains-powered, signal good, cyclic false) status switched off
karloygard commented 4 years ago

There's no indication of HA sending messages to the actuator between 15:31:31 and 20:34:53, so it seems safe to assume that HA is not getting in the mix there.

There are a few times that the status message is lost (e.g. 15:00:16), so we can't see everything that's going on with the actuator. Shot in the dark; there are two possible explanations, another device is controlling the actuator, or the floor is getting heated by external factors (sun?).

karloygard commented 3 years ago

I believe this is resolved, reopen if it wasn't.