home-assistant / core

:house_with_garden: Open source home automation that puts local control and privacy first.
https://www.home-assistant.io
Apache License 2.0
71.16k stars 29.85k forks source link

RFXTRX integration doesn't recover from a dropped network connection to an RFXTRX, requires HA restart #39237

Closed iangregory closed 6 months ago

iangregory commented 4 years ago

The problem

I have an RFXTRX433 device, connected to Home Assistant via a tcp connection.

This works well in normal operation. However, if the TCP connection is interrupted due to a network issue (e.g. RFXTRX is at a remote location and broadband is interrupted), then Home Assistant loses connection to it. This state can't currently be recovered from when the network connection is restored without restarting the whole of Home Assistant.

I suggest one of the following is considered:

  1. The RFXTRX integration with Home Assistant monitors the health of the TCP connection to the RFXTRX, and if it drops, attempts to restart it on a timer
  2. The RFXTRX integration exposes a rfxtrx.reconnect service which can be called by an automation (for example, one could detect a lack of rfxtrx events and use this to trigger the reconnect service)

Environment

Problem-relevant configuration.yaml

rfxtrx:
  host: !secret rfxtrx_ip
  port: 2167
  automatic_add: true

Traceback/Error logs

Additional information

probot-home-assistant[bot] commented 4 years ago

Hey there @danielhiversen, @elupus, mind taking a look at this issue as its been labeled with an integration (rfxtrx) you are listed as a codeowner for? Thanks! (message by CodeOwnersMention)

RobBie1221 commented 4 years ago

Option 2 is already (kind of) available with this PR: #39068 I may have a look at option 1, this is I think something the integration should handle.

github-actions[bot] commented 3 years ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment πŸ‘ This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

pschmitt commented 3 years ago

Reloading the integration re-inits the connection correctly. This should still be something that the integration does on its own in my opinion. Especially since there is no service you can call to do this (or is there?).

RobBie1221 commented 3 years ago

Agreed, manual reloading is at best a workaround. This issue is still relevant.

tomeeka commented 3 years ago

I am suffering from this issue too, since I moved my HASS installation to a VM and connected to the rfxcom module by TCP. (it is on a RPI/ser2net) Sometimes HASS needs a second restart, because at first it cannot connect and rfx entities are unavailable. Sometimes it just loses connection after a day or two and everything is available, but nothing works. (Zigbee usb device is connected to the same RPI, but Zigbee2mqtt addon handles the connection correctly on the VM, no problem with that)

github-actions[bot] commented 3 years ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment πŸ‘ This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

elupus commented 3 years ago

Still valid

github-actions[bot] commented 3 years ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment πŸ‘ This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

tomeeka commented 3 years ago

still...

bvduijv commented 3 years ago

I have the same issue, which is very annoying. You actually don't see if the thing is till up or not. And since RFXcom does have 2 way communication you actually don't know whether it works or not. Unfortunately I don't have the skills to solve this. I was looking into other workarounds, via other tools like Node-red or so.. but this is all just more overhead to the setup. Any other suggestion from anybody?

github-actions[bot] commented 2 years ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment πŸ‘ This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

giejay commented 2 years ago

Still a valid issue for me. Even reload does not work for me.

When sending a command to my cover:

  File "/usr/src/homeassistant/homeassistant/components/rfxtrx/cover.py", line 124, in async_open_cover
    await self._async_send(self._device.send_up2sec)
  File "/usr/src/homeassistant/homeassistant/components/rfxtrx/__init__.py", line 516, in _async_send
    await self.hass.async_add_executor_job(fun, rfx_object.transport, *args)
  File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.9/site-packages/RFXtrx/__init__.py", line 162, in send_up2sec
    self.send_command(transport, 0x11)
  File "/usr/local/lib/python3.9/site-packages/RFXtrx/__init__.py", line 130, in send_command
    transport.send(pkt.data)
  File "/usr/local/lib/python3.9/site-packages/RFXtrx/__init__.py", line 794, in send
    self.sock.send(pkt)
BrokenPipeError: [Errno 32] Broken pipe
elupus commented 2 years ago

This requires a rework of rfxtrx library. Which is somewhat unmaintained. So needs somebody to step up and fix it.

giejay commented 2 years ago

I can have a look but I'm a scala developer and my Python skills are a bit rusty.

I'm guessing the most important thing right now is being able to detect/catch the broken pipe errors and then recovering/reconnecting, right?

My HA and rfxcom module are setup on the same pi, but I was having issues with the USB connection as well. Also after x days it would stop working and giving timeouts. Only a restart of the system/ha would fix things.

That's why I thought, let's run ser2net in docker to avoid usb connection issues. Unfortunately, it seems network connection has sort of the same issues.

remkolems commented 2 years ago

Still a valid issue for me. Even reload does not work for me.

When sending a command to my cover:

  File "/usr/src/homeassistant/homeassistant/components/rfxtrx/cover.py", line 124, in async_open_cover
    await self._async_send(self._device.send_up2sec)
  File "/usr/src/homeassistant/homeassistant/components/rfxtrx/__init__.py", line 516, in _async_send
    await self.hass.async_add_executor_job(fun, rfx_object.transport, *args)
  File "/usr/local/lib/python3.9/concurrent/futures/thread.py", line 52, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/usr/local/lib/python3.9/site-packages/RFXtrx/__init__.py", line 162, in send_up2sec
    self.send_command(transport, 0x11)
  File "/usr/local/lib/python3.9/site-packages/RFXtrx/__init__.py", line 130, in send_command
    transport.send(pkt.data)
  File "/usr/local/lib/python3.9/site-packages/RFXtrx/__init__.py", line 794, in send
    self.sock.send(pkt)
BrokenPipeError: [Errno 32] Broken pipe

Exact same issue. It drives me nuts. Sometimes available, but most of the time it isn't. Re-adding/restarting service (ser2net on other node w/ Ubuntu 22.04 on Raspberry Pi 8GB)/etc. do not matter at all. HASSOS/HA resides on another dedicated Raspberry Pi 8GB.

RFXtrx433E USB receiver. http://www.rfxcom.com/epages/78165469.sf/nl_NL/?ObjectPath=/Shops/78165469/Categories/Transceivers

Use-cases:

  1. Close/open covers (rolluiken) in the morning and evening (regular routine).
  2. Close/open covers (rolluiken) in the morning and evening (holiday/away routine).
  3. Close covers when outside temperature is above or below a certain threshold.
  4. Close covers when there is a storm.
  5. Open covers when there is a fire alarm and residents are sleeping.

Home Assistant 2022.7.0 Supervisor 2022.07.0 Operating System 8.2 Frontend 20220706.0 - latest

elupus commented 2 years ago

Broken pipe means connection has been interrupted between the devices. (The network connection). So you need to investigate what could be the cause of that.

You could also try to fix the recovery mechanisms in rfxtrx. But that is going to be tricky.

perhusaas commented 2 years ago

Still valid, does anyone have the time to take a look at this? In my head it should be as easy as running the initial configuration of the connection automatically when the connection is lost?

Verdorie69 commented 1 year ago

Broken pipe means connection has been interrupted between the devices. (The network connection). So you need to investigate what could be the cause of that.

You could also try to fix the recovery mechanisms in rfxtrx. But that is going to be tricky.

Between the device running HA and the RFXcom device you mean? I have the LAN version, but it really happens a lot. Makes the integration unreliable unfortunately

dbrb2 commented 1 year ago

I've found this as well. I have an automation set up to restart HA if one of the rfxtrx sensors hasn't updated for a set time, but that's not ideal - and caused a reboot loop (my fault really, but would be great not to have to try to work around if possible)

I haven't yet been able to find the trigger for this occuring. My rfxtrx is on WiFi, but it's definitely occurred whilst all devices are apparently operating and apparently online. It could perhaps be a timeout though...?

huwylphi commented 1 year ago

Hi, I had the same issue using a RFX433 connected on USB and piped over ethernet with ser2net running on the USB host. After some hours HA losts the connection with "broken pipe" error and only restarting HA temporarily solved the issue.

After some investigation I assume that the RFXCOM integration with network connection might not work well with ser2net in HA.

There exists another client side tool named socat that can be used to delegate the ser2net socket communication to socat instead of HA and exposing/emulating a serial port to HA. I found that idea from here.

That way HA is (should) not aware of the network connection and we can connect the RFXCOM device over serial port while the physical serial USB port is connected on the remote network host.

On the HA host we can run the following command to expose an emulate serial port connected to the ser2net USB device: (socat pty,link=/dev/ttyRFXCOM,b38400,raw,echo=0,user=root,group=uucp,mode=777 tcp:<your ser2net ip>:<your ser2net port>) & This will create the /dev/ttyRFXCOM serial port on the HA host. Now we can remove any previously added RFXCOM device/integration from HA and add it again by connecting it over serial port /dev/ttyRFXCOM instead of network connection.

That works great but the story doesn't stop here. Since I'm running HA in a docker container I wanted to run that socat command inside the container on startup (luckily socat is already installed in the HA docker image). First I tried to add the command entry in my docker-compose file like the following:

services:
    homeassistant:    
    image: "ghcr.io/home-assistant/home-assistant:stable"    
    [...]  
    command: sh -c '(socat pty,link=/dev/ttyRFXCOM,b38400,raw,echo=0,user=root,group=uucp,mode=777 tcp:192.168.1.123:5123) &'

and hoping that this command runs in the background before HA starts. But, for a reason I didn't yet figured out, this command prevents HA to start...

So I ended up with some workaround: I didn't create the socat serial port from my docker-compose but let HA execute that command itself on startup event. First I added a _shellcommand in my configuration.yaml file:

shell_command:
  ttyrfxcom: (socat pty,link=/dev/ttyRFXCOM,b38400,raw,echo=0,user=root,group=uucp,mode=777 tcp:192.168.1.123:5123) &

Then I added an automation in my configuration.yaml file:

automation:
   - alias: open_rfxcom_serial_port
     trigger:
       platform: homeassistant
       event: start
     action:
       - service: shell_command.ttyrfxcom
       - service: homeassistant.reload_config_entry
         target:
           device_id: 988fa84a9abad15adb8bac568ef7367c

this last automation, is triggered on HA startup and run the previously defined _shellcommand and also reloads the RFXCOM device integration by calling the _homeassistant.reload_configentry service.

Now when my HA docker container starts, of course some timeout errors in log appears saying the serial port for the RFXCOM device is not available. But a few seconds later HA is executing the automation by making the remote serial port available and reloads the RFXCOM device integration successfully.

Now by delegating the remote serial port communication to socat, I hope that the HA RFXCOM virtually connected over network will be stable and reliable.

huwylphi commented 1 year ago

Hi again, after some days I had some issue because of network interruptions. So I research on how to keep the socat client re-trying to connect event if the server side is restarted. I came to not use ser2net on the server side (where the USB device is hosted), but to use socat too. This time as TCP server. I also added some parameters to the socat client to keep retrying to connect and also on HA restart to kill any previous socat client connection.

Now I have in the HA configuration the following shell command executed on any start or restart:

shell_command:
  ttyrfxcom: pkill socat && sleep 5 && (socat pty,link=/dev/ttyRFXCOM,b38400,raw,echo=0,user=root,group=uucp,mode=777 tcp:192.168.1.123:5123,forever,interval=10,fork,keepalive,keepidle=10,keepintvl=10,keepcnt=100) &

and on USB host, I removed ser2net and replaced by the the following socat command: socat -ls -d -d FILE:/dev/ttyUSB1,b38400,raw,echo=0,ignoreeof TCP-LISTEN:5123,reuseaddr

furthermore it is possible to run the socat TCP server as docker container by using the alpine/socat docker image. Here my docker-compose.yml file:

version: "3.8"
services:
  rfxcom2ethernet:
    image: alpine/socat
    container_name: rfxcom2ethernet
    command: "-ls -d -d FILE:/dev/ttyUSB1,b38400,raw,echo=0,ignoreeof TCP-LISTEN:5123,reuseaddr"
    ports:
      - "5123:5123"
    restart: unless-stopped
    devices:
      - "/dev/ttyUSB1:/dev/ttyUSB1"

then start that container with: docker-compose up -d

Now it is possible to restart the USB host or reboot HA via the app or the HA container in case is runs as docker container. In each use case, the end-to-end connection between the emulated USB RFXCOM device in HA and the physical USB device is rebuilt over the TCP bridge.

Hope this might help somebody.

huwylphi commented 1 year ago

Update: after updating to HA version 2023.4.1, it seems that chaining commands in the _shellcommand (with &&) doesn't work anymore? My current workaround is: splitting each command in single _shellcommand and call each _shellcommand one after the other in the automation action list (triggered on HA startup).

shell_command:
  ttyrfxcom_kill: pkill socat
  ttyrfxcom_create: (socat pty,link=/dev/ttyRFXCOM,b38400,raw,echo=0,user=root,group=uucp,mode=777 tcp:192.168.1.123:5123,forever,interval=10,keepalive,keepidle=10,keepintvl=10,keepcnt=100) &

automation:
- alias: open_rfxcom_serial_port
  trigger:
    platform: homeassistant
    event: start
  action:
    - service: shell_command.ttyrfxcom_kill
    - service: shell_command.ttyrfxcom_create
    - service: homeassistant.reload_config_entry
      target:
        device_id: 988fa84a9abad15adb8bac568ef7367c
sesardelaisla commented 1 year ago

Experiencing the same problem with a new RFX433 device I just integrated into Home Assistant latest version. RFXTRX integration does not reconnect through network to the transceiver upon a short connection drop (i.e.: power cycle) of the device.

Verdorie69 commented 1 year ago

@huwylphi:

Now it is possible to restart the USB host or reboot HA via the app or the HA container in case is runs as docker container. In each use case, the end-to-end connection between the emulated USB RFXCOM device in HA and the physical USB device is rebuilt over the TCP bridge.

Hope this might help somebody.

I guess this workaround will not work for the WIFI edition of RFXLan. I now restart HA every night, so in most cases it will work, but that is ofcourse a pretty annoying workaround. Since the bug is reported in 2020 I think it will never be solved and this integration is pretty useless. Unfortunately I don't have the skills myself.

Cikkajes commented 1 year ago

Facing the same extremely annoying issue myself, and unfortunately, I too do not have the skills to work on it.

When there is a power outage and the RFXCOM reboots, HA loses the connection to it. HA is plugged in with a UPS, so it doesn't turn off, while I know the RFXCOM is configured correctly because even after reboot it reconnects correctly to the Wi-Fi.

After a few HA reboots, it could be that the connection is somewhat restored, although some commands are scrambled, for example I press down/close for blind 1, but actually blinds 3 and 4 together close.

issue-triage-workflows[bot] commented 10 months ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment πŸ‘ This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

bvduijv commented 10 months ago

Issue is not solved. Looking for alternatives.. Any luck om for others?

elupus commented 10 months ago

Somebody need to step up and solve the problem in the library. I dont have any time nor interest to do so. Just reporting here is not going to solve it.

issue-triage-workflows[bot] commented 7 months ago

There hasn't been any activity on this issue recently. Due to the high number of incoming GitHub notifications, we have to clean some of the old issues, as many of them have already been resolved with the latest updates. Please make sure to update to the latest Home Assistant version and check if that solves the issue. Let us know if that works for you by adding a comment πŸ‘ This issue has now been marked as stale and will be closed if no further activity occurs. Thank you for your contributions.

Cikkajes commented 7 months ago

My RFXCOM is just standing there, doing nothing, waiting for this fix to be actually used.

huwylphi commented 7 months ago

Hi, on my side too. as you can read in my previous posts, I've tested several kind of workaround using serial tunneling over tcp. It helped to make it a bit more stable and flexible, but I still have regular broken communication on the serial communication layer. I'm currently running HA v2024.1.6 but didn't check the latest RFX433 firmware changes. Also, I just extended my installation a few days ago with 2 new Somfy RTS blind motors and will try to configure and test all that system once again. Maybe I will be able to contribute with some new information eventually. But this might not happen in the next days but will try my best... Still most probably, some fix/optimization might be needed in the HA RFXCOM interface, where I could ev. take a look if someone could share some advise or guidance where to find that (I have some development skills but never yet analyzed the HA dev project).

elupus commented 7 months ago

See this comment: https://github.com/home-assistant/core/issues/99266#issuecomment-1922076051

andreheuer commented 2 months ago

Hi @elupus, I do have an RFX433LAN in use with Core 2024.6.4, OS 12.4, running under Proxmox as VM.

I am also experiencing the same issues as described here, even after the fix in #111366. After about 15 hours, no more values are being received by HA. However, checking in RFXmngr, the device is continuously receiving data frames. So there is no issues from the RFXmngr side. It seems that the above fix did not solve the issue.

Is there still anything open or anyway to debug this?

BR AndrΓ©

elupus commented 2 months ago

Turn on debug logs and check for errors or warnings in log.

andreheuer commented 2 months ago

Hi @elupus, thank you for you quick feedback. I did this now. However, after the last log (this morning) from receiving an update, no further action was logged from the integration (see below).

After restarting my HA instance, the integration starts logging (and processing) newly received values from the integration.

BR AndrΓ©

2024-07-01 19:54:06.522 DEBUG (SyncWorker_4) [homeassistant.components.rfxtrx] Using modes: oregon,lacrosse
2024-07-01 19:54:06.525 DEBUG (SyncWorker_4) [RFXtrx] Connected to network socket
2024-07-01 19:54:06.525 DEBUG (Thread-2 (_connect)) [RFXtrx] Send: 0x0d 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
2024-07-01 19:54:06.826 DEBUG (Thread-2 (_connect)) [RFXtrx] Send: 0x0d 0x00 0x00 0x01 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
2024-07-01 19:54:07.254 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x14 0x01 0x00 0x01 0x02 0x53 0x20 0x00 0x08 0x20 0x00 0x03 0x03 0x1c 0x14 0x5c 0x00 0x00 0x24 0x00 0x00
2024-07-01 19:54:07.254 DEBUG (Thread-2 (_connect)) [RFXtrx] Send: 0x0d 0x00 0x00 0x00 0x03 0x53 0x1c 0x00 0x08 0x20 0x00 0x00 0x00 0x00
2024-07-01 19:54:07.366 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x14 0x01 0x00 0x00 0x03 0x53 0x20 0x00 0x08 0x20 0x00 0x03 0x03 0x1c 0x14 0x5c 0x00 0x00 0x24 0x00 0x00
2024-07-01 19:54:07.366 DEBUG (Thread-2 (_connect)) [RFXtrx] Send: 0x0d 0x00 0x00 0x01 0x02 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
2024-07-01 19:54:07.591 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x14 0x01 0x00 0x01 0x02 0x53 0x20 0x00 0x08 0x20 0x00 0x03 0x03 0x1c 0x14 0x5c 0x00 0x00 0x24 0x00 0x00
2024-07-01 19:54:07.591 DEBUG (Thread-2 (_connect)) [RFXtrx] Status: Status [subtype=433.92MHz, firmware=32, output_power=28, devices=['lacrosse', 'oregon']]
2024-07-01 19:54:07.592 DEBUG (Thread-2 (_connect)) [RFXtrx] Send: 0x0d 0x00 0x00 0x03 0x07 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00
2024-07-01 19:54:08.272 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x14 0x01 0x07 0x03 0x07 0x43 0x6f 0x70 0x79 0x72 0x69 0x67 0x68 0x74 0x20 0x52 0x46 0x58 0x43 0x4f 0x4d
2024-07-01 19:54:10.108 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x00 0x6b 0x00 0x00 0xe4 0x37 0x01 0x89
2024-07-01 19:54:10.109 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205006b0000e4370189', 'values': {'Temperature': 22.8, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:54:10.109 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:10.109 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:10.109 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:10.110 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:10.110 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:18.651 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.helpers.event. This is deprecated and will stop working in Home Assistant 2024.11, it should be updated to import functions used from event directly at custom_components/hacs/base.py, line 630: self.hass.helpers.event.async_track_time_interval(, please create a bug report at https://github.com/hacs/integration/issues
2024-07-01 19:54:23.645 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x01 0x83 0x00 0x00 0xe4 0x36 0x01 0x99
2024-07-01 19:54:23.646 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a520501830000e4360199', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:54:23.646 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:23.646 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:23.646 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:23.646 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:23.646 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:24.185 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x02 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 19:54:24.185 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520502930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:54:24.185 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:24.185 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:24.186 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:24.186 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:24.186 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:25.916 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x03 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:54:25.916 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520503130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:54:25.917 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:25.917 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:25.917 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:25.917 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:25.917 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:30.670 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x04 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:54:30.670 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a520504600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:54:30.670 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:30.670 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:41.970 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x05 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 19:54:41.970 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205059a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:54:41.970 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:41.971 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:41.971 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:41.971 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:41.971 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:55.319 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x06 0xcd 0x02 0x00 0xdf 0x38 0x01 0x89
2024-07-01 19:54:55.320 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a520506cd0200df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:54:55.320 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:55.320 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:55.320 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:55.320 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:54:55.320 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:00.109 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x07 0x6b 0x00 0x00 0xe4 0x37 0x01 0x89
2024-07-01 19:55:00.110 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205076b0000e4370189', 'values': {'Temperature': 22.8, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:55:00.110 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:00.110 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:00.111 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:00.111 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:00.111 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:13.646 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x08 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 19:55:13.647 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a520508830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:55:13.647 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:13.647 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:13.647 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:13.647 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:13.647 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:15.965 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x09 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:55:15.966 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520509130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:55:15.966 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:15.966 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:15.966 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:15.966 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:15.966 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:20.699 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x0a 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:55:20.699 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a52050a600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:55:20.699 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:20.699 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:20.700 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:20.700 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:20.700 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:31.975 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x0b 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 19:55:31.976 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a52050b9a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:55:31.976 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:31.976 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:31.976 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:31.977 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:31.977 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:50.144 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x0c 0x6b 0x00 0x00 0xe4 0x37 0x01 0x89
2024-07-01 19:55:50.144 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a52050c6b0000e4370189', 'values': {'Temperature': 22.8, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:55:50.145 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:50.145 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:50.145 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:50.145 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:50.145 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:51.354 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x0d 0xcd 0x02 0x00 0xdf 0x38 0x01 0x89
2024-07-01 19:55:51.355 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a52050dcd0200df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:55:51.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:51.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:51.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:51.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:55:51.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:03.686 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x0e 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 19:56:03.686 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a52050e830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:56:03.687 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:03.687 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:03.687 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:03.687 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:03.687 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:04.190 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x0f 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 19:56:04.191 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a52050f930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:56:04.191 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:04.191 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:04.191 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:04.191 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:04.191 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:05.954 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x10 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:56:05.955 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520510130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:56:05.955 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:05.955 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:05.955 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:05.955 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:05.955 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:10.687 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x11 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:56:10.688 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a520511600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:56:10.688 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:10.688 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:10.689 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:10.689 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:10.689 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:22.012 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x12 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 19:56:22.013 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205129a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:56:22.013 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:22.013 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:22.013 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:22.013 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:22.013 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:40.132 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x13 0x6b 0x00 0x00 0xe4 0x37 0x01 0x89
2024-07-01 19:56:40.133 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205136b0000e4370189', 'values': {'Temperature': 22.8, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:56:40.134 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:40.134 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:40.135 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:40.135 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:40.135 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:47.332 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x14 0xcd 0x02 0x00 0xdf 0x38 0x01 0x89
2024-07-01 19:56:47.333 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a520514cd0200df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:56:47.333 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:47.334 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:47.334 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:47.335 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:47.335 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:53.676 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x15 0x83 0x00 0x00 0xe4 0x36 0x01 0x99
2024-07-01 19:56:53.677 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a520515830000e4360199', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:56:53.677 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:53.678 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:53.678 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:53.678 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:53.679 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:54.233 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x16 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 19:56:54.233 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520516930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:56:54.234 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:54.234 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:54.234 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:54.234 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:54.234 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:55.947 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x17 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:56:55.948 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520517130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:56:55.949 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:55.949 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:55.949 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:55.950 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:56:55.950 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:00.681 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x18 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:57:00.682 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a520518600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:57:00.682 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:00.683 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:00.683 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:00.683 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:00.683 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:12.007 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x19 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 19:57:12.008 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205199a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:57:12.009 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:12.009 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:12.010 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:12.010 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:12.010 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:30.125 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x1a 0x6b 0x00 0x00 0xe4 0x37 0x01 0x89
2024-07-01 19:57:30.126 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a52051a6b0000e4370189', 'values': {'Temperature': 22.8, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:57:30.127 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:30.127 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:30.128 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:30.128 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:30.128 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:43.362 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x1b 0xcd 0x02 0x00 0xdf 0x38 0x01 0x99
2024-07-01 19:57:43.363 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a52051bcd0200df380199', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:57:43.363 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:43.363 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:43.363 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:43.363 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:43.363 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:44.219 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x1c 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 19:57:44.223 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a52051c930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:57:44.223 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:44.224 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:44.224 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:44.224 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:44.225 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:45.933 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x1d 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:57:45.935 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a52051d130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:57:45.935 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:45.936 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:45.937 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:45.937 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:45.937 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:50.716 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x1e 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:57:50.717 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a52051e600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:57:50.717 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:50.718 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:50.718 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:50.718 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:57:50.718 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:01.560 WARNING (MainThread) [homeassistant.components.dlna_dmr] Failed connecting to recently alive device at http://10.0.10.21:9197/dmr: UpnpResponseError('Did not receive HTTP 200 but 400')
2024-07-01 19:58:01.990 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x1f 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 19:58:01.992 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a52051f9a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:58:01.992 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:01.992 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:01.993 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:01.993 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:01.993 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:20.105 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x20 0x6b 0x00 0x00 0xe3 0x37 0x01 0x89
2024-07-01 19:58:20.106 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205206b0000e3370189', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:58:20.106 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:20.106 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:20.106 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:20.106 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:20.106 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:33.644 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x21 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 19:58:33.644 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a520521830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:58:33.644 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:33.645 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:33.645 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:33.645 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:33.645 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:34.200 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x22 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 19:58:34.201 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520522930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:58:34.201 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:34.201 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:34.201 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:34.201 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:34.201 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:35.964 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x23 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:58:35.965 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520523130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:58:35.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:35.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:35.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:35.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:35.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:39.336 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x24 0xcd 0x02 0x00 0xdf 0x38 0x01 0x89
2024-07-01 19:58:39.336 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a520524cd0200df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:58:39.337 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:39.337 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:39.337 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:39.337 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:39.337 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:40.697 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x25 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:58:40.698 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a520525600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:58:40.698 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:40.698 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:40.698 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:40.698 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:40.698 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:51.971 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x26 0x9a 0x00 0x00 0xd8 0x44 0x01 0x79
2024-07-01 19:58:51.972 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205269a0000d8440179', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 7}}
2024-07-01 19:58:51.972 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:51.972 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:51.972 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:51.972 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:51.972 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:58:54.851 WARNING (MainThread) [homeassistant.components.dlna_dmr] Failed connecting to recently alive device at http://10.0.10.20:9197/dmr: UpnpResponseError('Did not receive HTTP 200 but 400')
2024-07-01 19:59:23.364 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x27 0x6b 0x00 0x00 0xe3 0x37 0x01 0x89
2024-07-01 19:59:23.365 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205276b0000e3370189', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:59:23.365 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.365 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.365 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.365 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.365 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.670 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x28 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 19:59:23.671 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a520528830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:59:23.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.672 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.672 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.672 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:23.673 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:24.226 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x29 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 19:59:24.227 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520529930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:59:24.227 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:24.227 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:24.227 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:24.227 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:24.227 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:25.890 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x2a 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 19:59:25.891 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a52052a130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:59:25.891 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:25.891 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:25.891 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:25.891 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:25.891 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:30.670 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x2b 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 19:59:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a52052b600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 19:59:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:30.671 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:35.353 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x2c 0xcd 0x02 0x00 0xdf 0x38 0x01 0x89
2024-07-01 19:59:35.354 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a52052ccd0200df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 19:59:35.354 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:35.354 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:35.354 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:35.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:35.355 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:41.999 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x2d 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 19:59:41.999 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a52052d9a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 19:59:41.999 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:41.999 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:41.999 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:42.000 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 19:59:42.000 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:00.117 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x2e 0x6b 0x00 0x00 0xe4 0x37 0x01 0x89
2024-07-01 20:00:00.117 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a52052e6b0000e4370189', 'values': {'Temperature': 22.8, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 20:00:00.117 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:00.118 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:00.118 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:00.118 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:00.118 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:13.655 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x2f 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 20:00:13.656 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a52052f830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 20:00:13.656 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:13.656 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:13.656 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:13.656 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:13.656 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:14.212 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x30 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 20:00:14.212 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520530930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 20:00:14.212 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:14.212 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:14.212 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:14.213 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:14.213 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:15.925 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x31 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 20:00:15.926 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520531130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 20:00:15.926 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:15.926 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:15.927 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:15.927 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:15.927 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:20.709 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x32 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 20:00:20.710 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a520532600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 20:00:20.710 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:20.710 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:20.710 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:20.710 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:20.711 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.327 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x33 0xcd 0x02 0x00 0xdf 0x38 0x01 0xf9
2024-07-01 20:00:31.328 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a520533cd0200df3801f9', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 15}}
2024-07-01 20:00:31.328 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.328 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.329 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.329 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.329 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.985 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x34 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 20:00:31.985 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205349a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 20:00:31.985 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.986 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.986 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.986 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:31.986 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:50.153 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x35 0x6b 0x00 0x00 0xe3 0x37 0x01 0x89
2024-07-01 20:00:50.154 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205356b0000e3370189', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 20:00:50.154 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:50.154 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:50.155 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:50.155 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:00:50.155 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:03.641 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x36 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 20:01:03.641 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a520536830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 20:01:03.641 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:03.642 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:03.642 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:03.642 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:03.642 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:03.947 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x08 0x50 0x05 0x37 0x93 0x00 0x00 0xe4 0x80
2024-07-01 20:01:03.947 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 80, 'sub_type': 5, 'type_string': 'La Crosse TX2, TX3, TX4, TX17', 'id_string': '93:00', 'data': '08500537930000e480', 'values': {'Temperature': 22.8, 'Battery numeric': 0, 'Rssi numeric': 8}}
2024-07-01 20:01:04.201 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x38 0x93 0x00 0x00 0xe4 0x36 0x01 0x89
2024-07-01 20:01:04.202 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520538930000e4360189', 'values': {'Temperature': 22.8, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 20:01:04.202 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:04.202 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:04.202 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:04.202 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:04.202 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:05.915 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x39 0x13 0x00 0x00 0xd7 0x44 0x01 0x69
2024-07-01 20:01:05.916 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520539130000d7440169', 'values': {'Temperature': 21.5, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 20:01:05.916 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:05.916 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:05.916 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:05.916 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:05.916 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:10.666 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x3a 0x60 0x00 0x00 0xe3 0x37 0x01 0x99
2024-07-01 20:01:10.667 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a52053a600000e3370199', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-01 20:01:10.667 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:10.667 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:10.668 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:10.668 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:10.668 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:21.964 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x3b 0x9a 0x00 0x00 0xd8 0x44 0x01 0x69
2024-07-01 20:01:21.964 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a52053b9a0000d8440169', 'values': {'Temperature': 21.6, 'Humidity': 68, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-01 20:01:21.964 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:21.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:21.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:21.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:21.965 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:27.314 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x3c 0xcd 0x02 0x00 0xdf 0x38 0x01 0x89
2024-07-01 20:01:27.315 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a52053ccd0200df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 20:01:27.315 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:27.315 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:27.315 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:27.315 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:27.315 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:40.102 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x3d 0x6b 0x00 0x00 0xe3 0x37 0x01 0x89
2024-07-01 20:01:40.102 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a52053d6b0000e3370189', 'values': {'Temperature': 22.7, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-01 20:01:40.102 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:40.103 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:40.103 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:40.103 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:40.103 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-01 20:01:53.639 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x3e 0x83 0x00 0x00 0xe3 0x36 0x01 0x99
2024-07-01 20:01:53.640 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a52053e830000e3360199', 'values': {'Temperature': 22.7, 'Humidity': 54, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}

[...]

2024-07-02 03:38:40.348 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:40.348 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:40.348 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:40.348 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:40.348 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:47.143 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe0 0xcd 0x02 0x00 0xd8 0x38 0x01 0x89
2024-07-02 03:38:47.143 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a5205e0cd0200d8380189', 'values': {'Temperature': 21.6, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:38:47.143 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:47.143 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:47.143 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:47.144 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:47.144 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:51.573 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe1 0x9a 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:38:51.573 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205e19a0000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:38:51.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:51.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:51.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:51.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:38:51.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:09.739 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe2 0x6b 0x00 0x00 0xdf 0x38 0x01 0xb9
2024-07-02 03:39:09.740 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205e26b0000df3801b9', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 11}}
2024-07-02 03:39:09.740 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:09.740 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:09.740 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:09.740 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:09.740 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.224 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe3 0x83 0x00 0x00 0xdd 0x37 0x01 0x99
2024-07-02 03:39:23.225 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a5205e3830000dd370199', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:39:23.225 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.225 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.225 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.225 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.225 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.932 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe4 0x93 0x00 0x00 0xdd 0x37 0x01 0x89
2024-07-02 03:39:23.932 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a5205e4930000dd370189', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:39:23.932 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.932 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.932 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.932 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:23.932 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:25.796 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe5 0x13 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:39:25.797 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a5205e5130000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:39:25.797 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:25.797 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:25.797 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:25.797 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:25.797 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:30.629 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe6 0x60 0x00 0x00 0xdc 0x38 0x01 0x99
2024-07-02 03:39:30.630 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a5205e6600000dc380199', 'values': {'Temperature': 22.0, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:39:30.631 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:30.631 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:30.631 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:30.632 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:30.632 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:41.598 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe7 0x9a 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:39:41.598 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205e79a0000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:39:41.598 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:41.598 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:41.598 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:41.598 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:41.599 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:43.160 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe8 0xcd 0x02 0x00 0xd8 0x38 0x01 0x89
2024-07-02 03:39:43.161 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a5205e8cd0200d8380189', 'values': {'Temperature': 21.6, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:39:43.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:43.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:43.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:43.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:43.162 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:59.718 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xe9 0x6b 0x00 0x00 0xdf 0x38 0x01 0x89
2024-07-02 03:39:59.719 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205e96b0000df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:39:59.719 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:59.719 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:59.719 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:59.720 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:39:59.720 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.206 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xea 0x83 0x00 0x00 0xdd 0x37 0x01 0x99
2024-07-02 03:40:13.207 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a5205ea830000dd370199', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:40:13.207 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.207 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.207 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.207 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.207 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.912 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xeb 0x93 0x00 0x00 0xdd 0x37 0x01 0x89
2024-07-02 03:40:13.912 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a5205eb930000dd370189', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:40:13.912 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.913 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.913 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.913 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:13.913 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:15.827 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xec 0x13 0x00 0x00 0xd2 0x43 0x01 0x69
2024-07-02 03:40:15.827 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a5205ec130000d2430169', 'values': {'Temperature': 21.0, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:40:15.827 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:15.828 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:15.828 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:15.828 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:15.828 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:20.358 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xed 0x60 0x00 0x00 0xdd 0x38 0x01 0x99
2024-07-02 03:40:20.359 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a5205ed600000dd380199', 'values': {'Temperature': 22.1, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:40:20.359 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:20.359 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:20.359 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:20.359 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:20.359 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:31.583 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xee 0x9a 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:40:31.583 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205ee9a0000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:40:31.584 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:31.584 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:31.584 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:31.584 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:31.584 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:39.135 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xef 0xcd 0x02 0x00 0xd8 0x38 0x01 0x89
2024-07-02 03:40:39.136 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a5205efcd0200d8380189', 'values': {'Temperature': 21.6, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:40:39.136 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:39.136 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:39.137 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:39.137 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:39.137 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:49.704 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf0 0x6b 0x00 0x00 0xdf 0x38 0x01 0x89
2024-07-02 03:40:49.705 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205f06b0000df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:40:49.705 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:49.705 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:49.705 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:49.705 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:40:49.706 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.243 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf1 0x83 0x00 0x00 0xdd 0x37 0x01 0x99
2024-07-02 03:41:03.244 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a5205f1830000dd370199', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:41:03.244 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.244 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.244 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.244 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.244 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.650 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf2 0x93 0x00 0x00 0xdd 0x37 0x01 0x89
2024-07-02 03:41:03.650 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a5205f2930000dd370189', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:41:03.650 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.650 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.650 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.650 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:03.650 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:06.118 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf3 0x13 0x00 0x00 0xd2 0x43 0x01 0x69
2024-07-02 03:41:06.119 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a5205f3130000d2430169', 'values': {'Temperature': 21.0, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:41:06.119 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:06.119 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:06.119 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:06.119 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:06.119 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:10.348 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf4 0x60 0x00 0x00 0xdd 0x38 0x01 0x99
2024-07-02 03:41:10.350 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a5205f4600000dd380199', 'values': {'Temperature': 22.1, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:41:10.350 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:10.351 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:10.351 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:10.351 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:10.352 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:21.571 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf5 0x9a 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:41:21.572 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205f59a0000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:41:21.573 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:21.573 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:21.573 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:21.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:21.574 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:35.160 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf6 0xcd 0x02 0x00 0xd8 0x38 0x01 0x89
2024-07-02 03:41:35.160 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a5205f6cd0200d8380189', 'values': {'Temperature': 21.6, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:41:35.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:35.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:35.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:35.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:35.161 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:39.994 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf7 0x6b 0x00 0x00 0xdf 0x38 0x01 0x89
2024-07-02 03:41:39.994 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205f76b0000df380189', 'values': {'Temperature': 22.3, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:41:39.995 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:39.995 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:39.995 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:39.995 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:39.995 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.633 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf8 0x83 0x00 0x00 0xdd 0x37 0x01 0x99
2024-07-02 03:41:53.633 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a5205f8830000dd370199', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:41:53.633 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.633 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.633 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.634 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.634 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.936 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xf9 0x93 0x00 0x00 0xdd 0x37 0x01 0x89
2024-07-02 03:41:53.937 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a5205f9930000dd370189', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:41:53.937 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.938 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.938 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.938 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:53.938 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:55.800 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xfa 0x13 0x00 0x00 0xd2 0x43 0x01 0x69
2024-07-02 03:41:55.801 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a5205fa130000d2430169', 'values': {'Temperature': 21.0, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:41:55.801 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:55.801 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:55.801 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:55.801 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:41:55.801 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:00.332 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xfb 0x60 0x00 0x00 0xdc 0x38 0x01 0x99
2024-07-02 03:42:00.333 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a5205fb600000dc380199', 'values': {'Temperature': 22.0, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:42:00.333 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:00.333 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:00.333 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:00.333 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:00.333 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:11.607 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xfc 0x9a 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:42:11.607 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205fc9a0000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:42:11.607 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:11.608 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:11.608 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:11.608 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:11.608 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:29.722 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xfd 0x6b 0x00 0x00 0xde 0x38 0x01 0x89
2024-07-02 03:42:29.723 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205fd6b0000de380189', 'values': {'Temperature': 22.2, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:42:29.723 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:29.724 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:29.724 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:29.724 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:29.724 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:31.134 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xfe 0xcd 0x02 0x00 0xd8 0x38 0x01 0x89
2024-07-02 03:42:31.135 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': 'cd:02', 'data': '0a5205fecd0200d8380189', 'values': {'Temperature': 21.6, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:42:31.135 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:31.136 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:31.136 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:31.136 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:31.136 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: cd:02 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.214 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0xff 0x83 0x00 0x00 0xdd 0x37 0x01 0x99
2024-07-02 03:42:43.215 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '83:00', 'data': '0a5205ff830000dd370199', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:42:43.215 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.215 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.215 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.215 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.215 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 83:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.670 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x00 0x93 0x00 0x00 0xdd 0x37 0x01 0x89
2024-07-02 03:42:43.672 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '93:00', 'data': '0a520500930000dd370189', 'values': {'Temperature': 22.1, 'Humidity': 55, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:42:43.672 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.673 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.673 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.673 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:43.673 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 93:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:45.834 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x01 0x13 0x00 0x00 0xd2 0x43 0x01 0x69
2024-07-02 03:42:45.835 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '13:00', 'data': '0a520501130000d2430169', 'values': {'Temperature': 21.0, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:42:45.835 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:45.835 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:45.835 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:45.835 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:45.835 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 13:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:50.316 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x02 0x60 0x00 0x00 0xdc 0x38 0x01 0x99
2024-07-02 03:42:50.317 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '60:00', 'data': '0a520502600000dc380199', 'values': {'Temperature': 22.0, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 9}}
2024-07-02 03:42:50.317 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:50.318 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:50.318 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:50.318 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:42:50.318 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 60:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:01.589 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x03 0x9a 0x00 0x00 0xd3 0x43 0x01 0x69
2024-07-02 03:43:01.590 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '9a:00', 'data': '0a5205039a0000d3430169', 'values': {'Temperature': 21.1, 'Humidity': 67, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 6}}
2024-07-02 03:43:01.590 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:01.590 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:01.590 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:01.590 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:01.591 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 9a:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:19.706 DEBUG (Thread-2 (_connect)) [RFXtrx] Recv: 0x0a 0x52 0x05 0x04 0x6b 0x00 0x00 0xde 0x38 0x01 0x89
2024-07-02 03:43:19.706 DEBUG (MainThread) [homeassistant.components.rfxtrx] Receive RFXCOM event: {'packet_type': 82, 'sub_type': 5, 'type_string': 'WTGR800', 'id_string': '6b:00', 'data': '0a5205046b0000de380189', 'values': {'Temperature': 22.2, 'Humidity': 56, 'Humidity status': 'comfort', 'Humidity status numeric': 1, 'Battery numeric': 9, 'Rssi numeric': 8}}
2024-07-02 03:43:19.706 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:19.706 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:19.707 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:19.707 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
2024-07-02 03:43:19.707 DEBUG (MainThread) [homeassistant.components.rfxtrx.sensor] Sensor update (Device ID: 6b:00 Class: RFXtrxDevice Sub: 5)
elupus commented 2 months ago

I dont really see anything odd there. No errors or anything. It should have logged some errors if it lost connection to the device.