Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

climate.set_temperature with multiple zones: not all are updated #149

Open
phdelodder opened this issue Feb 1, 2024 · 23 comments
Open

climate.set_temperature with multiple zones: not all are updated #149

phdelodder opened this issue Feb 1, 2024 · 23 comments
Assignees
Labels
ramses_rf The issue is likely due to an underlying bug in the ramses_rf library.

Comments

@phdelodder
Copy link
Contributor

phdelodder commented Feb 1, 2024

When executing the service call climate.set_temperature for 4 zones at the same time, not all zones are updated:

service: climate.set_temperature
  target:
    entity_id:
    - climate.margot
    - climate.dressing
    - climate.slaapkamer
    - climate.febe
  data:
    temperature: 5

Here is the corresponding log file:

2024-02-01T11:11:54.749463 095  W --- 18:005567 01:223036 --:------ 2309 003 0701F4
2024-02-01T11:11:54.773573 095  W --- 18:005567 01:223036 --:------ 2309 003 0901F4
2024-02-01T11:11:54.796573 095  W --- 18:005567 01:223036 --:------ 2309 003 0601F4
2024-02-01T11:11:54.819548 095  W --- 18:005567 01:223036 --:------ 2309 003 0A01F4
2024-02-01T11:11:54.838314 045  I --- 01:223036 --:------ 01:223036 2349 013 0A01F404FFFFFF0012010207E8
2024-02-01T11:11:54.850516 045  I --- 01:223036 --:------ 01:223036 2309 003 0A01F4
2024-02-01T11:11:54.862608 045  I --- 01:223036 18:005567 --:------ 2309 003 0A01F4

After adding:

ramses_cc:
  ramses_rf:
    disable_qos: False

Note that disable_qos currently defaults to None (in v0.31.6), but will default to False in future.

The issue remains:

2024-02-01T13:17:51.685084 095  W --- 18:005567 01:223036 --:------ 2309 003 0601F4
2024-02-01T13:17:51.714182 095  W --- 18:005567 01:223036 --:------ 2309 003 0A01F4
2024-02-01T13:17:51.729139 045  I --- 01:223036 18:005567 --:------ 2309 003 0601F4
2024-02-01T13:17:51.749049 095  W --- 18:005567 01:223036 --:------ 2309 003 0901F4
2024-02-01T13:17:51.776891 095  W --- 18:005567 01:223036 --:------ 2309 003 0701F4
2024-02-01T13:17:51.792989 045  I --- 01:223036 18:005567 --:------ 2309 003 0901F4
@phdelodder
Copy link
Contributor Author

phdelodder commented Feb 1, 2024

Suggested as a workaround:

- service: climate.set_temperature
  target:
    entity_id:
      - climate.margot
  data:
    temperature: 5
- delay: &delay
  seconds: 5
- service: climate.set_temperature
  target:
    entity_id:
      - climate.dressing
  data:
    temperature: 5
- delay: *delay
- service: climate.set_temperature
  target:
    entity_id:
      - climate.slaapkamer
  data:
    temperature: 5
- delay: *delay
- service: climate.set_temperature
  target:
    entity_id:
      - climate.febe
  data:
    temperature: 5

@zxdavb zxdavb changed the title When adding multiple zones in climate.set_temperature not everything is updated correctly Invoking climate.set_temperature with multiple zones: not everything is updated correctly Feb 2, 2024
@zxdavb zxdavb changed the title Invoking climate.set_temperature with multiple zones: not everything is updated correctly Invoking climate.set_temperature with multiple zones: not all are updated correctly Feb 2, 2024
@zxdavb zxdavb changed the title Invoking climate.set_temperature with multiple zones: not all are updated correctly Invoking climate.set_temperature with multiple zones: not all are updated Feb 2, 2024
@zxdavb zxdavb changed the title Invoking climate.set_temperature with multiple zones: not all are updated climate.set_temperature with multiple zones: not all are updated Feb 2, 2024
@zxdavb
Copy link
Owner

zxdavb commented Feb 29, 2024

This looks like an issue in ramses_rf - After sending the request (W|2309|07), it doesn't wait for the response (I|2309|07) before sending the next request (W|2309|09) for the subsequent zone.

It should look a bit like this:

2024-02-01T11:11:54.749463 095  W --- 18:005567 01:223036 --:------ 2309 003 0701F4
2024-02-01T11:11:54.862608 045  I --- 01:223036 18:005567 --:------ 2309 003 0701F4

2024-02-01T11:11:54.773573 095  W --- 18:005567 01:223036 --:------ 2309 003 0901F4
2024-02-01T11:11:54.862608 045  I --- 01:223036 18:005567 --:------ 2309 003 0901F4

2024-02-01T11:11:54.796573 095  W --- 18:005567 01:223036 --:------ 2309 003 0601F4
2024-02-01T11:11:54.862608 045  I --- 01:223036 18:005567 --:------ 2309 003 0601F4

2024-02-01T11:11:54.819548 095  W --- 18:005567 01:223036 --:------ 2309 003 0A01F4
2024-02-01T11:11:54.838314 045  I --- 01:223036 --:------ 01:223036 2349 013 0A01F404FFFFFF0012010207E8
2024-02-01T11:11:54.850516 045  I --- 01:223036 --:------ 01:223036 2309 003 0A01F4
2024-02-01T11:11:54.862608 045  I --- 01:223036 18:005567 --:------ 2309 003 0A01F4

@zxdavb zxdavb added the ramses_rf The issue is likely due to an underlying bug in the ramses_rf library. label Feb 29, 2024
@zxdavb
Copy link
Owner

zxdavb commented Feb 29, 2024

The workaround is effective because of the delay between each W, giving time for the corresponding I.

@zxdavb
Copy link
Owner

zxdavb commented Feb 29, 2024

I have this down as an issue in QoS in ramses_rf.

@zxdavb zxdavb self-assigned this Mar 16, 2024
@zxdavb
Copy link
Owner

zxdavb commented Mar 18, 2024

Hmmm...

For this call:

service: climate.set_preset_mode
target:
  entity_id: climate.01_145038_00
data:
  preset_mode: none

... I get:

2024-03-18 13:27:34.634 ERROR (MainThread) [homeassistant.helpers.script.websocket_api_script] websocket_api script: Error executing script. Unexpected error for call_service at pos 1: Non-thread-safe operation invoked on an event loop other than the current one
Traceback (most recent call last):
  File "/home/dbonnes/clients/hass/homeassistant/helpers/script.py", line 485, in _async_step
    await getattr(self, handler)()
  File "/home/dbonnes/clients/hass/homeassistant/helpers/script.py", line 723, in _async_call_service_step
    response_data = await self._async_run_long_action(
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/hass/homeassistant/helpers/script.py", line 685, in _async_run_long_action
    return long_task.result()
           ^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/hass/homeassistant/core.py", line 2319, in async_call
    response_data = await coro
                    ^^^^^^^^^^
  File "/home/dbonnes/clients/hass/homeassistant/core.py", line 2356, in _execute_service
    return await target(service_call)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/hass/homeassistant/helpers/service.py", line 905, in entity_service_call
    single_response = await _handle_entity_call(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/hass/homeassistant/helpers/service.py", line 975, in _handle_entity_call
    result = await task
             ^^^^^^^^^^
  File "/home/dbonnes/clients/hass/homeassistant/components/climate/__init__.py", line 716, in async_handle_set_preset_mode_service
    await self.async_set_preset_mode(preset_mode)
  File "/home/dbonnes/clients/hass/homeassistant/components/climate/__init__.py", line 724, in async_set_preset_mode
    await self.hass.async_add_executor_job(self.set_preset_mode, preset_mode)
  File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/ramses_cc/custom_components/ramses_cc/climate.py", line 426, in set_preset_mode
    self.async_set_zone_mode(
  File "/home/dbonnes/clients/ramses_cc/custom_components/ramses_cc/climate.py", line 476, in async_set_zone_mode
    self._device.set_mode(mode=mode, setpoint=setpoint, until=until)
  File "/home/dbonnes/clients/ramses_rf/src/ramses_rf/system/zones.py", line 759, in set_mode
    return self._send_cmd(cmd)
           ^^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/ramses_rf/src/ramses_rf/entity_base.py", line 160, in _send_cmd
    return self._gwy.send_cmd(
           ^^^^^^^^^^^^^^^^^^^
  File "/home/dbonnes/clients/ramses_rf/src/ramses_rf/gateway.py", line 542, in send_cmd
    task = self._loop.create_task(coro)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/asyncio/base_events.py", line 456, in create_task
    task = tasks.Task(coro, loop=self, name=name, context=context)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/asyncio/base_events.py", line 794, in call_soon
    self._check_thread()
  File "/usr/lib/python3.12/asyncio/base_events.py", line 831, in _check_thread
    raise RuntimeError(
RuntimeError: Non-thread-safe operation invoked on an event loop other than the current one

@zxdavb
Copy link
Owner

zxdavb commented Apr 3, 2024

Now that:

  • we have switched ramses_rf to have QoS on by default, and
  • the QoS FSM has been re-written & now (hopefully) bug-free, then...

I would expect this service call to work:

service: climate.set_temperature
  target:
    entity_id:
    - climate.margot
    - climate.dressing
    - climate.slaapkamer
    - climate.febe
  data:
    temperature: 5

@zxdavb
Copy link
Owner

zxdavb commented Apr 3, 2024

@phdelodder Can you confirm this issue is resolved?

@zxdavb zxdavb added the question Further information is requested label Apr 3, 2024
@phdelodder
Copy link
Contributor Author

@zxdavb only 2 of the 4 zones are being changed.

@zxdavb zxdavb removed the question Further information is requested label Apr 9, 2024
@zxdavb
Copy link
Owner

zxdavb commented Apr 9, 2024

I think that the cause of this is that wait_for_reply is not being set to True for these RQs.

@zxdavb
Copy link
Owner

zxdavb commented Apr 9, 2024

@phdelodder Would you be able to modify manifest.yaml, restart HA and test this? If there was an issue, you could always restore the manifest to it's original state.

@phdelodder
Copy link
Contributor Author

Where can I fond the file manifest.yaml in the custom_compontents I only find ´manifest.json´

@zxdavb
Copy link
Owner

zxdavb commented Apr 9, 2024

sorry - I meant manifest,json - I am about to release a new version of teh client library, ramses_rf that will have wait_for_reply set to True by default - that's what I'll need you to test.

@phdelodder
Copy link
Contributor Author

I'll wait on the new release then

@phdelodder
Copy link
Contributor Author

Installed the new release and now I got this error:
Traceback (most recent call last): File "/usr/src/homeassistant/homeassistant/components/automation/__init__.py", line 726, in async_trigger return await self.action_script.async_run( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 1713, in async_run return await asyncio.shield(create_eager_task(run.async_run())) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 457, in async_run await self._async_step(log_exceptions=False) File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 509, in _async_step self._handle_exception( File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 539, in _handle_exception raise exception File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 507, in _async_step await getattr(self, handler)() File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 1044, in _async_if_step await self._async_run_script(if_data["if_then"]) File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 1202, in _async_run_script result = await self._async_run_long_action( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 699, in _async_run_long_action return await long_task ^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 1713, in async_run return await asyncio.shield(create_eager_task(run.async_run())) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 457, in async_run await self._async_step(log_exceptions=False) File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 509, in _async_step self._handle_exception( File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 539, in _handle_exception raise exception File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 507, in _async_step await getattr(self, handler)() File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 736, in _async_call_service_step response_data = await self._async_run_long_action( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/script.py", line 699, in _async_run_long_action return await long_task ^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/core.py", line 2543, in async_call response_data = await coro ^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/core.py", line 2580, in _execute_service return await target(service_call) ^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 996, in entity_service_call raise result from None File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 1580, in async_request_call return await coro ^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 1043, in _handle_entity_call result = await task ^^^^^^^^^^ File "/usr/src/homeassistant/homeassistant/components/climate/__init__.py", line 917, in async_service_temperature_set await entity.async_set_temperature(**kwargs) File "/usr/src/homeassistant/homeassistant/components/climate/__init__.py", line 717, in async_set_temperature await self.hass.async_add_executor_job( File "/usr/local/lib/python3.12/concurrent/futures/thread.py", line 58, in run result = self.fn(*self.args, **self.kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/config/custom_components/ramses_cc/climate.py", line 434, in set_temperature self.async_set_zone_mode(setpoint=temperature) File "/config/custom_components/ramses_cc/climate.py", line 476, in async_set_zone_mode self._device.set_mode(mode=mode, setpoint=setpoint, until=until) File "/usr/local/lib/python3.12/site-packages/ramses_rf/system/zones.py", line 759, in set_mode return self._send_cmd(cmd) ^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/site-packages/ramses_rf/entity_base.py", line 160, in _send_cmd return self._gwy.send_cmd( ^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/site-packages/ramses_rf/gateway.py", line 553, in send_cmd task = asyncio.create_task(coro) ^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/asyncio/tasks.py", line 417, in create_task loop = events.get_running_loop() ^^^^^^^^^^^^^^^^^^^^^^^^^ RuntimeError: no running event loop

@phdelodder
Copy link
Contributor Author

@zxdavb Any Idea? ^^

@zxdavb
Copy link
Owner

zxdavb commented Apr 16, 2024

The 0.x.17 release has been yanked.

I have identified the two bugs involved, so new release soon.

@phdelodder
Copy link
Contributor Author

@zxdavb retest wit 0.x.19:
Only 2 of the 4 zones are set, do I need to do something in the config?

@zxdavb
Copy link
Owner

zxdavb commented Apr 24, 2024

Can you send me some logs please. HA log and packet log.

@phdelodder
Copy link
Contributor Author

phdelodder commented Apr 24, 2024

[downloaded & subsequently deleted]

@zxdavb
Copy link
Owner

zxdavb commented Apr 25, 2024

In the logs, we have a section (I have added blank lines / comments for readability):

2024-04-24T07:53:12.477757 095  W --- 18:005567 01:223036 --:------ 2349 007 077FFF00FFFFFF  # 2349| W|01:223036|02 (02)
2024-04-24T07:53:12.494014 049  I --- 01:223036 18:005567 --:------ 2349 007 0704B000FFFFFF  # 2349| I|01:223036|07 (07)

2024-04-24T07:53:15.480031 095  W --- 18:005567 01:223036 --:------ 2349 007 067FFF00FFFFFF
2024-04-24T07:53:15.509020 049  I --- 01:223036 --:------ 01:223036 2349 007 0604B000FFFFFF
2024-04-24T07:53:15.521890 048  I --- 01:223036 --:------ 01:223036 2309 003 0604B0
2024-04-24T07:53:15.539006 047  I --- 01:223036 18:005567 --:------ 2349 007 0604B000FFFFFF

2024-04-24T07:53:18.482923 095  W --- 18:005567 01:223036 --:------ 2349 007 0A7FFF00FFFFFF
2024-04-24T07:53:18.499895 049  I --- 01:223036 18:005567 --:------ 2349 007 0A04B000FFFFFF

2024-04-24T07:53:20.739131 048 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-24T07:53:20.764876 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0011100A00FF033800

2024-04-24T07:53:21.485034 095  W --- 18:005567 01:223036 --:------ 2349 007 097FFF00FFFFFF
2024-04-24T07:53:21.513877 049  I --- 01:223036 --:------ 01:223036 2349 007 0904B000FFFFFF
2024-04-24T07:53:21.526801 047  I --- 01:223036 --:------ 01:223036 2309 003 0904B0
2024-04-24T07:53:21.543944 049  I --- 01:223036 18:005567 --:------ 2349 007 0904B000FFFFFF

The 3EF0s are of no consequence here - they are just scheduled RQs.

All of the 2349|W|01:233036s (writes) get the expected response from the controller, 2349| I

@zxdavb
Copy link
Owner

zxdavb commented Apr 25, 2024

There is no corresponding logging in the HA log, so please configure it like so:

logger:
  default: warning
  logs:
    ramses_tx.protocol: debug      # info for packets rcvd, debug for sent/rcvd
    ramses_tx.protocol_fsm: debug  # usus. with ramses_tx.transport: info
    ramses_tx.transport: info      # info for frames Tx/Rx

And send me the logs again - just 5 mins either side of the service call, please.

@phdelodder
Copy link
Contributor Author

2024-04-25 11:38:06.313 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:38:06.449 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:38:22.454 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:38:22.595 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:38:38.601 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:38:38.738 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:38:54.753 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:38:54.889 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:39:10.897 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:39:11.035 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:39:27.041 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:39:27.175 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:39:43.184 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:39:43.325 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:39:50.498 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 00001B0000
2024-04-25 11:39:50.499 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|1B, tx_count=0/0>
2024-04-25 11:39:50.499 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|1B, tx_count=1/4>
2024-04-25 11:39:50.499 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 00001B0000\r\n'
2024-04-25 11:39:50.529 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 00001B0000\r\n'
2024-04-25 11:39:50.530 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00001B0000
2024-04-25 11:39:50.530 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|1B, tx_count=1/4>
2024-04-25 11:39:50.530 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|1B, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:39:50.530 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|1B, tx_count=1/4>: result=3220|RQ|10:040239|1B
2024-04-25 11:39:50.531 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:39:50.555 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3220 005 00401B47AB\r\n'
2024-04-25 11:39:50.556 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3220 005 00401B47AB
2024-04-25 11:39:53.532 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0000050000
2024-04-25 11:39:53.532 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|05, tx_count=0/0>
2024-04-25 11:39:53.532 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|05, tx_count=1/4>
2024-04-25 11:39:53.532 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0000050000\r\n'
2024-04-25 11:39:53.561 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000050000\r\n'
2024-04-25 11:39:53.562 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000050000
2024-04-25 11:39:53.562 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|05, tx_count=1/4>
2024-04-25 11:39:53.562 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|05, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:39:53.563 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|05, tx_count=1/4>: result=3220|RQ|10:040239|05
2024-04-25 11:39:53.563 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:39:53.581 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3220 005 00C00500FF\r\n'
2024-04-25 11:39:53.582 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C00500FF
2024-04-25 11:39:57.538 WARNING (MainThread) [homeassistant.helpers.service] Referenced entities switch.oprit_motion_detection are missing or not currently available
2024-04-25 11:39:59.331 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:39:59.463 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:39:59.524 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:39:59.524 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|00, tx_count=0/0>
2024-04-25 11:39:59.524 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:39:59.524 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:39:59.553 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:39:59.554 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:39:59.554 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:39:59.554 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:39:59.554 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: result=3220|RQ|10:040239|00
2024-04-25 11:39:59.554 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:39:59.576 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300\r\n'
2024-04-25 11:39:59.577 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25 11:40:04.586 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 0006 001 00
2024-04-25 11:40:04.587 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=0006|RQ|01:223036, tx_count=0/0>
2024-04-25 11:40:04.587 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=0006|RQ|01:223036, tx_count=1/4>
2024-04-25 11:40:04.587 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 0006 001 00\r\n'
2024-04-25 11:40:04.612 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 0006 001 00\r\n'
2024-04-25 11:40:04.613 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 0006 001 00
2024-04-25 11:40:04.613 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=0006|RQ|01:223036, tx_count=1/4>
2024-04-25 11:40:04.613 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=0006|RQ|01:223036, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:40:04.613 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=0006|RQ|01:223036, tx_count=1/4>: result=0006|RQ|01:223036
2024-04-25 11:40:04.613 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:04.626 INFO (MainThread) [ramses_tx.transport] Rx: b'047 RP --- 01:223036 18:005567 --:------ 0006 004 00050001\r\n'
2024-04-25 11:40:04.627 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 047 RP --- 01:223036 18:005567 --:------ 0006 004 00050001
2024-04-25 11:40:10.100 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 1F41 001 00
2024-04-25 11:40:10.100 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=1F41|RQ|01:223036|00, tx_count=0/0>
2024-04-25 11:40:10.100 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=1F41|RQ|01:223036|00, tx_count=1/4>
2024-04-25 11:40:10.101 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 1F41 001 00\r\n'
2024-04-25 11:40:10.126 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 1F41 001 00\r\n'
2024-04-25 11:40:10.127 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 1F41 001 00
2024-04-25 11:40:10.127 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=1F41|RQ|01:223036|00, tx_count=1/4>
2024-04-25 11:40:10.127 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=1F41|RQ|01:223036|00, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:40:10.127 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=1F41|RQ|01:223036|00, tx_count=1/4>: result=1F41|RQ|01:223036|00
2024-04-25 11:40:10.127 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:10.140 INFO (MainThread) [ramses_tx.transport] Rx: b'047 RP --- 01:223036 18:005567 --:------ 1F41 006 00FF00FFFFFF\r\n'
2024-04-25 11:40:10.141 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 047 RP --- 01:223036 18:005567 --:------ 1F41 006 00FF00FFFFFF
2024-04-25 11:40:14.531 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3EF0 001 00
2024-04-25 11:40:14.532 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3EF0|RQ|10:040239, tx_count=0/0>
2024-04-25 11:40:14.532 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:40:14.532 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:40:14.557 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:40:14.558 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25 11:40:14.558 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:40:14.558 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:40:14.558 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: result=3EF0|RQ|10:040239
2024-04-25 11:40:14.558 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:14.579 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:40:14.580 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:40:14.612 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:40:14.613 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25 11:40:14.644 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:40:14.645 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:40:15.469 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:40:15.606 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:40:17.442 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5\r\n'
2024-04-25 11:40:17.442 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25 11:40:17.472 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400904B00A04B0\r\n'
2024-04-25 11:40:17.475 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400904B00A04B0
2024-04-25 11:40:17.497 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 30C9 030 00074C0106190205820305A50505FF0604BE07051B0806600904C60A04EB\r\n'
2024-04-25 11:40:17.498 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 30C9 030 00074C0106190205820305A50505FF0604BE07051B0806600904C60A04EB
2024-04-25 11:40:17.559 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 2401 001 00
2024-04-25 11:40:17.559 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2401|RQ|10:040239, tx_count=0/0>
2024-04-25 11:40:17.559 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:40:17.560 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:40:17.585 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:40:17.587 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25 11:40:17.587 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:40:17.587 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:40:17.588 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: result=2401|RQ|10:040239
2024-04-25 11:40:17.588 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:17.601 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8\r\n'
2024-04-25 11:40:17.602 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25 11:40:18.720 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2309 003 0901F4
2024-04-25 11:40:18.721 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2309 003 0701F4
2024-04-25 11:40:18.721 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2309 003 0A01F4
2024-04-25 11:40:18.721 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2309 003 0601F4
2024-04-25 11:40:18.722 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2309| W|01:223036|09, tx_count=0/0>
2024-04-25 11:40:18.722 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2309| W|01:223036|09, tx_count=1/4>
2024-04-25 11:40:18.722 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2309 003 0901F4\r\n'
2024-04-25 11:40:18.749 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2309 003 0901F4\r\n'
2024-04-25 11:40:18.750 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2309 003 0901F4
2024-04-25 11:40:18.750 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2309| W|01:223036|09, tx_count=1/4>
2024-04-25 11:40:18.750 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2309| W|01:223036|09, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:40:18.751 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2309| W|01:223036|09, tx_count=1/4>: result=2309| W|01:223036|09
2024-04-25 11:40:18.751 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:18.751 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2309| W|01:223036|07, tx_count=0/0>
2024-04-25 11:40:18.751 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2309| W|01:223036|07, tx_count=1/4>
2024-04-25 11:40:18.751 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2309 003 0701F4\r\n'
2024-04-25 11:40:18.779 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2309 003 0701F4\r\n'
2024-04-25 11:40:18.780 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2309 003 0701F4
2024-04-25 11:40:18.780 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2309| W|01:223036|07, tx_count=1/4>
2024-04-25 11:40:18.780 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2309| W|01:223036|07, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:40:18.780 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2309| W|01:223036|07, tx_count=1/4>: result=2309| W|01:223036|07
2024-04-25 11:40:18.781 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:18.781 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2309| W|01:223036|0A, tx_count=0/0>
2024-04-25 11:40:18.781 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2309| W|01:223036|0A, tx_count=1/4>
2024-04-25 11:40:18.789 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2309 003 0A01F4\r\n'
2024-04-25 11:40:18.795 INFO (MainThread) [ramses_tx.transport] Rx: b'046  I --- 01:223036 --:------ 01:223036 2309 003 0901F4\r\n'
2024-04-25 11:40:18.796 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046  I --- 01:223036 --:------ 01:223036 2309 003 0901F4
2024-04-25 11:40:18.809 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 18:005567 --:------ 2309 003 0901F4\r\n'
2024-04-25 11:40:18.809 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 18:005567 --:------ 2309 003 0901F4
2024-04-25 11:40:18.826 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2309 003 0A01F4\r\n'
2024-04-25 11:40:18.827 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2309 003 0A01F4
2024-04-25 11:40:18.827 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2309| W|01:223036|0A, tx_count=1/4>
2024-04-25 11:40:18.827 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2309| W|01:223036|0A, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:40:18.827 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2309| W|01:223036|0A, tx_count=1/4>: result=2309| W|01:223036|0A
2024-04-25 11:40:18.827 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:18.828 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2309| W|01:223036|06, tx_count=0/0>
2024-04-25 11:40:18.828 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2309| W|01:223036|06, tx_count=1/4>
2024-04-25 11:40:18.840 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2309 003 0601F4\r\n'
2024-04-25 11:40:18.858 INFO (MainThread) [ramses_tx.transport] Rx: b'046  I --- 01:223036 --:------ 01:223036 2349 013 0A01F404FFFFFF0012190407E8\r\n'
2024-04-25 11:40:18.859 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046  I --- 01:223036 --:------ 01:223036 2349 013 0A01F404FFFFFF0012190407E8
2024-04-25 11:40:18.876 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2309 003 0601F4\r\n'
2024-04-25 11:40:18.877 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2309 003 0601F4
2024-04-25 11:40:18.877 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2309| W|01:223036|06, tx_count=1/4>
2024-04-25 11:40:18.877 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2309| W|01:223036|06, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:40:18.878 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2309| W|01:223036|06, tx_count=1/4>: result=2309| W|01:223036|06
2024-04-25 11:40:18.878 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:19.074 INFO (MainThread) [ramses_tx.transport] Rx: b'063  I --- 04:231774 --:------ 04:231774 30C9 003 000765\r\n'
2024-04-25 11:40:19.075 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 063  I --- 04:231774 --:------ 04:231774 30C9 003 000765
2024-04-25 11:40:31.295 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 2349 001 01
2024-04-25 11:40:31.295 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349|RQ|01:223036|01, tx_count=0/0>
2024-04-25 11:40:31.296 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349|RQ|01:223036|01, tx_count=1/4>
2024-04-25 11:40:31.296 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 2349 001 01\r\n'
2024-04-25 11:40:31.321 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 2349 001 01\r\n'
2024-04-25 11:40:31.322 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 2349 001 01
2024-04-25 11:40:31.322 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349|RQ|01:223036|01, tx_count=1/4>
2024-04-25 11:40:31.322 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349|RQ|01:223036|01, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:40:31.322 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349|RQ|01:223036|01, tx_count=1/4>: result=2349|RQ|01:223036|01
2024-04-25 11:40:31.322 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:31.341 INFO (MainThread) [ramses_tx.transport] Rx: b'046 RP --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF2D0C190407E8\r\n'
2024-04-25 11:40:31.342 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046 RP --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF2D0C190407E8
2024-04-25 11:40:31.614 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:40:31.749 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:40:47.753 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:40:47.892 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:40:59.576 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:40:59.576 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|00, tx_count=0/0>
2024-04-25 11:40:59.576 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:40:59.576 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:40:59.605 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:40:59.606 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:40:59.606 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:40:59.606 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:40:59.606 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: result=3220|RQ|10:040239|00
2024-04-25 11:40:59.606 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:40:59.624 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300\r\n'
2024-04-25 11:40:59.625 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25 11:41:03.901 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:41:04.041 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:41:04.480 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 10:040239 --:------ 10:040239 1FD4 003 000489\r\n'
2024-04-25 11:41:04.480 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 10:040239 --:------ 10:040239 1FD4 003 000489
2024-04-25 11:41:11.842 ERROR (MainThread) [homeassistant.components.template.template_entity] TemplateError('ZeroDivisionError: float division by zero') while processing template 'Template<template=({% if states('sensor.current_power') | float(0) == 0 %}
  {% set decimal_hours = 0 | float(0) %}
  {% set minutes = 0 | float(0) %}
{% else %}
  {% set percent = states('sensor.stp6_0_3se_40_411_battery_soc_total') | float(0) / 100.0 %}
  {% set battery_capacity = 12.8 %}
  {% set battery_capacity = battery_capacity * ((states('sensor.stp6_0_3se_40_411_battery_capacity_total') | float(0)) / 100) %}
  {% set reserve = 0.1 %}
  {% set charge = percent * (battery_capacity * (1 - reserve)) %}
  {% set current_power = states('sensor.stp6_0_3se_40_411_battery_power_discharge_total') | float (0) / 1000 %}
  {% set decimal_hours = charge / current_power %}
  {% set minutes = (decimal_hours % 1 * 60) | round(0) %}
{% endif %} {{ decimal_hours | int(0) ~ 'u' ~ minutes ~ 'min' }}) renders=78>' for attribute '_attr_native_value' in entity 'sensor.solar_battery_life'
2024-04-25 11:41:14.645 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3EF0 001 00
2024-04-25 11:41:14.645 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3EF0|RQ|10:040239, tx_count=0/0>
2024-04-25 11:41:14.645 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:41:14.646 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:41:14.672 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:41:14.672 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25 11:41:14.672 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:41:14.673 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:41:14.673 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: result=3EF0|RQ|10:040239
2024-04-25 11:41:14.673 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:41:14.697 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:41:14.697 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:41:14.769 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:41:14.769 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25 11:41:14.792 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:41:14.792 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:41:16.126 INFO (MainThread) [ramses_tx.transport] Rx: b'063  I --- 04:231774 --:------ 01:223036 3150 002 00B4\r\n'
2024-04-25 11:41:16.127 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 063  I --- 04:231774 --:------ 01:223036 3150 002 00B4
2024-04-25 11:41:16.555 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 04:231776 --:------ 01:223036 3150 002 00BA\r\n'
2024-04-25 11:41:16.555 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 04:231776 --:------ 01:223036 3150 002 00BA
2024-04-25 11:41:17.674 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 2401 001 00
2024-04-25 11:41:17.674 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2401|RQ|10:040239, tx_count=0/0>
2024-04-25 11:41:17.674 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:41:17.674 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:41:17.700 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:41:17.700 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25 11:41:17.700 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:41:17.700 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:41:17.700 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: result=2401|RQ|10:040239
2024-04-25 11:41:17.700 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:41:17.728 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8\r\n'
2024-04-25 11:41:17.728 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25 11:41:18.183 INFO (MainThread) [ramses_tx.transport] Rx: b'056  I --- 04:231772 --:------ 01:223036 3150 002 00B4\r\n'
2024-04-25 11:41:18.183 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 056  I --- 04:231772 --:------ 01:223036 3150 002 00B4
2024-04-25 11:41:20.047 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:41:20.185 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:41:22.931 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 04:231776 --:------ 04:231776 30C9 003 00076B\r\n'
2024-04-25 11:41:22.931 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 04:231776 --:------ 04:231776 30C9 003 00076B
2024-04-25 11:41:25.034 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25 11:41:25.034 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349| W|01:223036|01, tx_count=0/0>
2024-04-25 11:41:25.034 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349| W|01:223036|01, tx_count=1/4>
2024-04-25 11:41:25.034 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2349 013 01070804FFFFFF0B0D190407E8\r\n'
2024-04-25 11:41:25.072 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2349 013 01070804FFFFFF0B0D190407E8\r\n'
2024-04-25 11:41:25.072 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25 11:41:25.073 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349| W|01:223036|01, tx_count=1/4>
2024-04-25 11:41:25.073 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349| W|01:223036|01, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:41:25.073 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349| W|01:223036|01, tx_count=1/4>: result=2349| W|01:223036|01
2024-04-25 11:41:25.073 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:41:25.102 INFO (MainThread) [ramses_tx.transport] Rx: b'047  I --- 01:223036 --:------ 01:223036 2349 013 01070804FFFFFF0B0D190407E8\r\n'
2024-04-25 11:41:25.102 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 047  I --- 01:223036 --:------ 01:223036 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25 11:41:25.113 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 2309 003 010708\r\n'
2024-04-25 11:41:25.113 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 2309 003 010708
2024-04-25 11:41:25.133 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF0B0D190407E8\r\n'
2024-04-25 11:41:25.133 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25 11:41:26.387 INFO (MainThread) [ramses_tx.transport] Rx: b'055  I --- 04:231772 --:------ 04:231772 30C9 003 0007B2\r\n'
2024-04-25 11:41:26.388 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 055  I --- 04:231772 --:------ 04:231772 30C9 003 0007B2
2024-04-25 11:41:27.525 INFO (MainThread) [ramses_tx.transport] Rx: b'061  I --- 04:017541 --:------ 04:017541 30C9 003 000500\r\n'
2024-04-25 11:41:27.525 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 061  I --- 04:017541 --:------ 04:017541 30C9 003 000500
2024-04-25 11:41:36.191 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:41:36.328 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:41:52.333 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:41:52.469 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:41:59.625 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:41:59.625 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|00, tx_count=0/0>
2024-04-25 11:41:59.625 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:41:59.625 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:41:59.655 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:41:59.656 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:41:59.656 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:41:59.656 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:41:59.656 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: result=3220|RQ|10:040239|00
2024-04-25 11:41:59.656 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:41:59.681 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300\r\n'
2024-04-25 11:41:59.681 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25 11:42:08.476 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:42:08.611 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:42:13.213 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 0418 003 000000
2024-04-25 11:42:13.213 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=0418|RQ|01:223036|00, tx_count=0/0>
2024-04-25 11:42:13.213 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=0418|RQ|01:223036|00, tx_count=1/4>
2024-04-25 11:42:13.213 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 0418 003 000000\r\n'
2024-04-25 11:42:13.241 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 0418 003 000000\r\n'
2024-04-25 11:42:13.242 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 0418 003 000000
2024-04-25 11:42:13.242 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=0418|RQ|01:223036|00, tx_count=1/4>
2024-04-25 11:42:13.242 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=0418|RQ|01:223036|00, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:13.242 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=0418|RQ|01:223036|00, tx_count=1/4>: result=0418|RQ|01:223036|00
2024-04-25 11:42:13.242 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:13.267 INFO (MainThread) [ramses_tx.transport] Rx: b'046 RP --- 01:223036 18:005567 --:------ 0418 022 004000B00406010000004A180F7DFFFFFF7000125F0F\r\n'
2024-04-25 11:42:13.267 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046 RP --- 01:223036 18:005567 --:------ 0418 022 004000B00406010000004A180F7DFFFFFF7000125F0F
2024-04-25 11:42:14.792 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3EF0 001 00
2024-04-25 11:42:14.793 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3EF0|RQ|10:040239, tx_count=0/0>
2024-04-25 11:42:14.793 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:42:14.793 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:42:14.819 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:42:14.819 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25 11:42:14.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:42:14.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:14.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: result=3EF0|RQ|10:040239
2024-04-25 11:42:14.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:14.840 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:42:14.840 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:42:14.920 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:42:14.921 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25 11:42:14.940 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:42:14.940 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:42:17.822 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 2401 001 00
2024-04-25 11:42:17.822 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2401|RQ|10:040239, tx_count=0/0>
2024-04-25 11:42:17.822 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:42:17.822 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:42:17.848 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:42:17.848 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25 11:42:17.849 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:42:17.849 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:17.849 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: result=2401|RQ|10:040239
2024-04-25 11:42:17.849 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:17.877 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8\r\n'
2024-04-25 11:42:17.878 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25 11:42:17.940 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5\r\n'
2024-04-25 11:42:17.940 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25 11:42:17.970 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400901F40A01F4\r\n'
2024-04-25 11:42:17.970 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400901F40A01F4
2024-04-25 11:42:17.995 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 30C9 030 00075B0106190205820305A50505FF0604BE07051B0806600904C60A0500\r\n'
2024-04-25 11:42:17.996 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 30C9 030 00075B0106190205820305A50505FF0604BE07051B0806600904C60A0500
2024-04-25 11:42:21.603 INFO (MainThread) [ramses_tx.transport] Rx: b'063  I --- 04:231774 --:------ 04:231774 30C9 003 000778\r\n'
2024-04-25 11:42:21.603 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 063  I --- 04:231774 --:------ 04:231774 30C9 003 000778
2024-04-25 11:42:24.617 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:42:24.755 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:42:28.509 INFO (MainThread) [ramses_tx.transport] Rx: b'061  I --- 04:017541 --:------ 01:223036 3150 002 0A00\r\n'
2024-04-25 11:42:28.510 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 061  I --- 04:017541 --:------ 01:223036 3150 002 0A00
2024-04-25 11:42:35.619 INFO (MainThread) [ramses_tx.transport] Rx: b'063  I --- 04:231770 --:------ 04:231770 30C9 003 00062D\r\n'
2024-04-25 11:42:35.620 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 063  I --- 04:231770 --:------ 04:231770 30C9 003 00062D
2024-04-25 11:42:40.761 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:42:40.899 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:42:56.904 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:42:57.043 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:42:57.331 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 13:179821 --:------ 3EF1 001 00
2024-04-25 11:42:57.331 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3EF1|RQ|13:179821, tx_count=0/0>
2024-04-25 11:42:57.332 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3EF1|RQ|13:179821, tx_count=1/4>
2024-04-25 11:42:57.332 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 13:179821 --:------ 3EF1 001 00\r\n'
2024-04-25 11:42:57.357 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 13:179821 --:------ 3EF1 001 00\r\n'
2024-04-25 11:42:57.358 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 13:179821 --:------ 3EF1 001 00
2024-04-25 11:42:57.358 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3EF1|RQ|13:179821, tx_count=1/4>
2024-04-25 11:42:57.358 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3EF1|RQ|13:179821, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:57.358 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3EF1|RQ|13:179821, tx_count=1/4>: result=3EF1|RQ|13:179821
2024-04-25 11:42:57.358 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:57.541 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2349 007 037FFF00FFFFFF
2024-04-25 11:42:57.543 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349| W|01:223036|03, tx_count=0/0>
2024-04-25 11:42:57.543 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349| W|01:223036|03, tx_count=1/4>
2024-04-25 11:42:57.546 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2349 007 037FFF00FFFFFF
2024-04-25 11:42:57.546 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2349 007 037FFF00FFFFFF\r\n'
2024-04-25 11:42:57.578 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2349 007 037FFF00FFFFFF\r\n'
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2349 007 037FFF00FFFFFF
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349| W|01:223036|03, tx_count=1/4>
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349| W|01:223036|03, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349| W|01:223036|03, tx_count=1/4>: result=2349| W|01:223036|03
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349| W|01:223036|03, tx_count=0/0>
2024-04-25 11:42:57.579 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349| W|01:223036|03, tx_count=1/4>
2024-04-25 11:42:57.579 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2349 007 037FFF00FFFFFF\r\n'
2024-04-25 11:42:57.594 INFO (MainThread) [ramses_tx.transport] Rx: b'047  I --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF\r\n'
2024-04-25 11:42:57.595 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 047  I --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF
2024-04-25 11:42:57.595 WARNING (MainThread) [ramses_tx.protocol_fsm] <ProtocolContext state=WantEcho cmd_=2349| W|01:223036|03, tx_count=1/4>: Invalid state to receive a reply (expecting echo)
2024-04-25 11:42:57.595 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho rply=2349| I|01:223036|03, tx_count=1/4>: result=2349| I|01:223036|03
2024-04-25 11:42:57.595 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:57.618 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2349 007 037FFF00FFFFFF\r\n'
2024-04-25 11:42:57.618 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2349 007 037FFF00FFFFFF
2024-04-25 11:42:57.634 INFO (MainThread) [ramses_tx.transport] Rx: b'047  I --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF\r\n'
2024-04-25 11:42:57.634 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 047  I --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF
2024-04-25 11:42:57.793 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 2349 001 02
2024-04-25 11:42:57.793 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349|RQ|01:223036|02, tx_count=0/0>
2024-04-25 11:42:57.793 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349|RQ|01:223036|02, tx_count=1/4>
2024-04-25 11:42:57.793 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 2349 001 02\r\n'
2024-04-25 11:42:57.817 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0080730000
2024-04-25 11:42:57.819 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 2349 001 02\r\n'
2024-04-25 11:42:57.820 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 2349 001 02
2024-04-25 11:42:57.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349|RQ|01:223036|02, tx_count=1/4>
2024-04-25 11:42:57.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349|RQ|01:223036|02, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:57.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349|RQ|01:223036|02, tx_count=1/4>: result=2349|RQ|01:223036|02
2024-04-25 11:42:57.820 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:57.821 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|73, tx_count=0/0>
2024-04-25 11:42:57.821 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|73, tx_count=1/4>
2024-04-25 11:42:57.828 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0080730000\r\n'
2024-04-25 11:42:57.837 INFO (MainThread) [ramses_tx.transport] Rx: b'046 RP --- 01:223036 18:005567 --:------ 2349 007 0204B000FFFFFF\r\n'
2024-04-25 11:42:57.837 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046 RP --- 01:223036 18:005567 --:------ 2349 007 0204B000FFFFFF
2024-04-25 11:42:57.861 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080730000\r\n'
2024-04-25 11:42:57.862 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080730000
2024-04-25 11:42:57.862 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|73, tx_count=1/4>
2024-04-25 11:42:57.862 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|73, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:57.862 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|73, tx_count=1/4>: result=3220|RQ|10:040239|73
2024-04-25 11:42:57.862 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:57.888 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3220 005 00B0730000\r\n'
2024-04-25 11:42:57.889 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3220 005 00B0730000
2024-04-25 11:42:59.946 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 2349 001 08
2024-04-25 11:42:59.946 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349|RQ|01:223036|08, tx_count=0/0>
2024-04-25 11:42:59.946 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349|RQ|01:223036|08, tx_count=1/4>
2024-04-25 11:42:59.946 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 2349 001 08\r\n'
2024-04-25 11:42:59.972 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 2349 001 08\r\n'
2024-04-25 11:42:59.973 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 2349 001 08
2024-04-25 11:42:59.973 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349|RQ|01:223036|08, tx_count=1/4>
2024-04-25 11:42:59.973 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349|RQ|01:223036|08, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:42:59.973 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349|RQ|01:223036|08, tx_count=1/4>: result=2349|RQ|01:223036|08
2024-04-25 11:42:59.973 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:42:59.989 INFO (MainThread) [ramses_tx.transport] Rx: b'046 RP --- 01:223036 18:005567 --:------ 2349 007 08064000FFFFFF\r\n'
2024-04-25 11:42:59.990 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046 RP --- 01:223036 18:005567 --:------ 2349 007 08064000FFFFFF
2024-04-25 11:43:00.545 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2349 007 067FFF00FFFFFF
2024-04-25 11:43:00.546 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349| W|01:223036|06, tx_count=0/0>
2024-04-25 11:43:00.546 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349| W|01:223036|06, tx_count=1/4>
2024-04-25 11:43:00.546 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2349 007 067FFF00FFFFFF\r\n'
2024-04-25 11:43:00.577 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2349 007 067FFF00FFFFFF\r\n'
2024-04-25 11:43:00.578 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2349 007 067FFF00FFFFFF
2024-04-25 11:43:00.578 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349| W|01:223036|06, tx_count=1/4>
2024-04-25 11:43:00.578 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349| W|01:223036|06, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:43:00.578 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349| W|01:223036|06, tx_count=1/4>: result=2349| W|01:223036|06
2024-04-25 11:43:00.578 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:00.594 INFO (MainThread) [ramses_tx.transport] Rx: b'046  I --- 01:223036 18:005567 --:------ 2349 007 0604B000FFFFFF\r\n'
2024-04-25 11:43:00.595 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046  I --- 01:223036 18:005567 --:------ 2349 007 0604B000FFFFFF
2024-04-25 11:43:00.863 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:43:00.864 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|00, tx_count=0/0>
2024-04-25 11:43:00.864 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:43:00.864 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:43:00.893 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000\r\n'
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|00, tx_count=1/4>
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|00, tx_count=1/4>: result=3220|RQ|10:040239|00
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3220 005 0080010000
2024-04-25 11:43:00.894 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3220|RQ|10:040239|01, tx_count=0/0>
2024-04-25 11:43:00.895 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3220|RQ|10:040239|01, tx_count=1/4>
2024-04-25 11:43:00.895 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3220 005 0080010000\r\n'
2024-04-25 11:43:00.924 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080010000\r\n'
2024-04-25 11:43:00.924 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080010000
2024-04-25 11:43:00.925 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3220|RQ|10:040239|01, tx_count=1/4>
2024-04-25 11:43:00.925 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|01, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:43:00.925 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3220|RQ|10:040239|01, tx_count=1/4>: result=3220|RQ|10:040239|01
2024-04-25 11:43:00.925 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:13.050 WARNING (MainThread) [homeassistant.components.androidtv_remote] Disconnected from SHIELD at 192.168.0.79
2024-04-25 11:43:13.188 ERROR (MainThread) [androidtvremote2] Device doesn't support sending keys. Try clearing the storage of the Android TV Remove Service system app. On the Android TV device, go to Settings > Apps > See all apps > Show system apps. Then, select Android TV Remote Service > Storage > Clear data/storage.
2024-04-25 11:43:14.940 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 3EF0 001 00
2024-04-25 11:43:14.941 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=3EF0|RQ|10:040239, tx_count=0/0>
2024-04-25 11:43:14.941 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:43:14.941 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:43:14.967 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:43:14.968 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25 11:43:14.968 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=3EF0|RQ|10:040239, tx_count=1/4>
2024-04-25 11:43:14.968 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:43:14.968 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=3EF0|RQ|10:040239, tx_count=1/4>: result=3EF0|RQ|10:040239
2024-04-25 11:43:14.968 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:14.982 INFO (MainThread) [ramses_tx.transport] Rx: b'046 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:43:14.983 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25 11:43:14.999 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:43:15.000 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:43:16.138 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 04:231776 --:------ 01:223036 3150 002 00AE\r\n'
2024-04-25 11:43:16.139 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 04:231776 --:------ 01:223036 3150 002 00AE
2024-04-25 11:43:16.983 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00\r\n'
2024-04-25 11:43:16.984 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25 11:43:17.006 INFO (MainThread) [ramses_tx.transport] Rx: b'045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64\r\n'
2024-04-25 11:43:17.007 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25 11:43:17.011 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 01:223036 --:------ 2E04 001 FF
2024-04-25 11:43:17.011 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2E04|RQ|01:223036, tx_count=0/0>
2024-04-25 11:43:17.011 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2E04|RQ|01:223036, tx_count=1/4>
2024-04-25 11:43:17.012 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 01:223036 --:------ 2E04 001 FF\r\n'
2024-04-25 11:43:17.037 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 01:223036 --:------ 2E04 001 FF\r\n'
2024-04-25 11:43:17.038 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 01:223036 --:------ 2E04 001 FF
2024-04-25 11:43:17.038 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2E04|RQ|01:223036, tx_count=1/4>
2024-04-25 11:43:17.038 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2E04|RQ|01:223036, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:43:17.038 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2E04|RQ|01:223036, tx_count=1/4>: result=2E04|RQ|01:223036
2024-04-25 11:43:17.038 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:17.054 INFO (MainThread) [ramses_tx.transport] Rx: b'047 RP --- 01:223036 18:005567 --:------ 2E04 008 00FFFFFFFFFFFF00\r\n'
2024-04-25 11:43:17.055 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 047 RP --- 01:223036 18:005567 --:------ 2E04 008 00FFFFFFFFFFFF00
2024-04-25 11:43:17.233 INFO (MainThread) [ramses_tx.transport] Rx: b'063  I --- 04:231774 --:------ 01:223036 3150 002 00A8\r\n'
2024-04-25 11:43:17.234 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 063  I --- 04:231774 --:------ 01:223036 3150 002 00A8
2024-04-25 11:43:17.969 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:     RQ --- 18:000730 10:040239 --:------ 2401 001 00
2024-04-25 11:43:17.970 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2401|RQ|10:040239, tx_count=0/0>
2024-04-25 11:43:17.970 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:43:17.970 INFO (MainThread) [ramses_tx.transport] Tx:     b'RQ --- 18:000730 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:43:17.995 INFO (MainThread) [ramses_tx.transport] Rx: b'095 RQ --- 18:005567 10:040239 --:------ 2401 001 00\r\n'
2024-04-25 11:43:17.996 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25 11:43:17.996 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2401|RQ|10:040239, tx_count=1/4>
2024-04-25 11:43:17.996 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: wait_for_reply=None
2024-04-25 11:43:17.996 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2401|RQ|10:040239, tx_count=1/4>: result=2401|RQ|10:040239
2024-04-25 11:43:17.996 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:18.171 INFO (MainThread) [ramses_tx.transport] Rx: b'057  I --- 04:231772 --:------ 01:223036 3150 002 00A8\r\n'
2024-04-25 11:43:18.172 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 057  I --- 04:231772 --:------ 01:223036 3150 002 00A8
2024-04-25 11:43:23.252 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 10:040239 --:------ 10:040239 1FD4 003 00048A\r\n'
2024-04-25 11:43:23.252 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 10:040239 --:------ 10:040239 1FD4 003 00048A
2024-04-25 11:43:25.033 DEBUG (MainThread) [ramses_tx.protocol] QUEUED:      W --- 18:000730 01:223036 --:------ 2349 013 01070804FFFFFF0D0D190407E8
2024-04-25 11:43:25.033 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=IsInIdle cmd_=2349| W|01:223036|01, tx_count=0/0>
2024-04-25 11:43:25.033 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantEcho cmd_=2349| W|01:223036|01, tx_count=1/4>
2024-04-25 11:43:25.033 INFO (MainThread) [ramses_tx.transport] Tx:     b' W --- 18:000730 01:223036 --:------ 2349 013 01070804FFFFFF0D0D190407E8\r\n'
2024-04-25 11:43:25.070 INFO (MainThread) [ramses_tx.transport] Rx: b'095  W --- 18:005567 01:223036 --:------ 2349 013 01070804FFFFFF0D0D190407E8\r\n'
2024-04-25 11:43:25.071 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 095  W --- 18:005567 01:223036 --:------ 2349 013 01070804FFFFFF0D0D190407E8
2024-04-25 11:43:25.071 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantEcho echo=2349| W|01:223036|01, tx_count=1/4>
2024-04-25 11:43:25.071 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=WantRply echo=2349| W|01:223036|01, tx_count=1/4>: wait_for_reply=False
2024-04-25 11:43:25.071 DEBUG (MainThread) [ramses_tx.protocol_fsm] BEFORE = <ProtocolContext state=WantRply echo=2349| W|01:223036|01, tx_count=1/4>: result=2349| W|01:223036|01
2024-04-25 11:43:25.071 DEBUG (MainThread) [ramses_tx.protocol_fsm] AFTER. = <ProtocolContext state=IsInIdle>
2024-04-25 11:43:25.099 INFO (MainThread) [ramses_tx.transport] Rx: b'046  I --- 01:223036 --:------ 01:223036 2349 013 01070804FFFFFF0D0D190407E8\r\n'
2024-04-25 11:43:25.099 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 046  I --- 01:223036 --:------ 01:223036 2349 013 01070804FFFFFF0D0D190407E8
2024-04-25 11:43:25.111 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 --:------ 01:223036 2309 003 010708\r\n'
2024-04-25 11:43:25.112 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 --:------ 01:223036 2309 003 010708
2024-04-25 11:43:25.132 INFO (MainThread) [ramses_tx.transport] Rx: b'045  I --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF0D0D190407E8\r\n'
2024-04-25 11:43:25.133 DEBUG (MainThread) [ramses_tx.protocol] Recv'd: 045  I --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF0D0D190407E8

@phdelodder
Copy link
Contributor Author

2024-04-25T11:35:04.572120 095 RQ --- 18:005567 01:223036 --:------ 0006 001 00
2024-04-25T11:35:04.586155 046 RP --- 01:223036 18:005567 --:------ 0006 004 00050001
2024-04-25T11:35:10.084956 095 RQ --- 18:005567 01:223036 --:------ 1F41 001 00
2024-04-25T11:35:10.099944 046 RP --- 01:223036 18:005567 --:------ 1F41 006 00FF00FFFFFF
2024-04-25T11:35:14.096385 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:35:14.114307 046 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:35:14.145251 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0011100A00FF035A64
2024-04-25T11:35:17.123338 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:35:17.147269 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:35:31.275403 095 RQ --- 18:005567 01:223036 --:------ 2349 001 01
2024-04-25T11:35:31.296073 046 RP --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF2D0C190407E8
2024-04-25T11:35:56.204581 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:36:14.171665 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:36:14.211492 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:36:14.235763 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0011100A00FF035A64
2024-04-25T11:36:16.447491 045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25T11:36:16.477624 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400904B00A04B0
2024-04-25T11:36:16.502592 045  I --- 01:223036 --:------ 01:223036 30C9 030 0007400106190205820305A50505FF0604BE07051B0806600904C60A04D2
2024-04-25T11:36:17.200874 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:36:17.221839 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:36:21.733522 063  I --- 04:231770 --:------ 01:223036 3150 002 01C8
2024-04-25T11:36:24.503437 095 RQ --- 18:005567 01:223036 --:------ 2349 001 08
2024-04-25T11:36:24.521476 047 RP --- 01:223036 18:005567 --:------ 2349 007 08064000FFFFFF
2024-04-25T11:36:26.910813 045  I --- 10:040239 --:------ 10:040239 1FD4 003 000487
2024-04-25T11:36:40.069884 045  I --- 04:081849 --:------ 01:223036 3150 002 0900
2024-04-25T11:36:43.507518 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 09
2024-04-25T11:36:43.520710 046 RP --- 01:223036 18:005567 --:------ 12B0 003 090000
2024-04-25T11:36:56.235777 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:36:56.252688 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:37:13.186759 095 RQ --- 18:005567 01:223036 --:------ 0418 003 000000
2024-04-25T11:37:13.212912 046 RP --- 01:223036 18:005567 --:------ 0418 022 004000B00406010000004A180F7DFFFFFF7000125F0F
2024-04-25T11:37:14.261900 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:37:14.287748 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0011100A00FF035A64
2024-04-25T11:37:14.320648 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:37:14.342622 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0011100A00FF035A64
2024-04-25T11:37:16.679082 063  I --- 04:231774 --:------ 01:223036 3150 002 00BE
2024-04-25T11:37:17.139193 061  I --- 04:017541 --:------ 01:223036 3150 002 0A1C
2024-04-25T11:37:17.296235 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:37:17.692022 055  I --- 04:231772 --:------ 01:223036 3150 002 00BE
2024-04-25T11:37:21.866834 045  I --- 04:231776 --:------ 04:231776 30C9 003 000755
2024-04-25T11:37:57.330472 095 RQ --- 18:005567 13:179821 --:------ 3EF1 001 00
2024-04-25T11:37:57.674118 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:37:57.674318 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:37:57.735855 095  W --- 18:005567 01:223036 --:------ 2349 007 087FFF00FFFFFF
2024-04-25T11:37:57.753453 046  I --- 01:223036 18:005567 --:------ 2349 007 08064000FFFFFF
2024-04-25T11:37:57.775858 095  W --- 18:005567 01:223036 --:------ 2349 007 027FFF00FFFFFF
2024-04-25T11:37:57.792802 047  I --- 01:223036 18:005567 --:------ 2349 007 0204B000FFFFFF
2024-04-25T11:37:57.817940 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080730000
2024-04-25T11:38:00.849185 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080010000
2024-04-25T11:38:14.369201 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:38:14.405083 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0011100A00FF035A64
2024-04-25T11:38:14.410041 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:38:14.441202 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0011100A00FF035A64
2024-04-25T11:38:16.437237 095 RQ --- 18:005567 01:223036 --:------ 2E04 001 FF
2024-04-25T11:38:16.946288 046  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25T11:38:16.975100 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400904B00A04B0
2024-04-25T11:38:17.000303 045  I --- 01:223036 --:------ 01:223036 30C9 030 00073E0106190205820305A50505FF0604BE07051B0806600904C60A04D2
2024-04-25T11:38:17.011102 045 RP --- 01:223036 18:005567 --:------ 2E04 008 00FFFFFFFFFFFF00
2024-04-25T11:38:17.397381 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:38:17.412295 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:38:18.206099 064  I --- 04:231774 --:------ 04:231774 30C9 003 00074C
2024-04-25T11:38:25.497188 095 RQ --- 18:005567 01:223036 --:------ 2349 001 09
2024-04-25T11:38:25.514140 047 RP --- 01:223036 18:005567 --:------ 2349 007 0904B000FFFFFF
2024-04-25T11:38:27.565053 095 RQ --- 18:005567 01:223036 --:------ 2349 001 00
2024-04-25T11:38:27.582112 047 RP --- 01:223036 18:005567 --:------ 2349 007 0007D000FFFFFF
2024-04-25T11:38:28.325388 060  I --- 04:017541 --:------ 04:017541 30C9 003 0004EB
2024-04-25T11:38:30.780241 095 RQ --- 18:005567 01:223036 --:------ 2349 001 07
2024-04-25T11:38:30.798104 047 RP --- 01:223036 18:005567 --:------ 2349 007 0704B000FFFFFF
2024-04-25T11:38:31.013381 095 RQ --- 18:005567 01:223036 --:------ 2349 001 05
2024-04-25T11:38:31.030248 047 RP --- 01:223036 18:005567 --:------ 2349 007 0505DC00FFFFFF
2024-04-25T11:38:36.450174 045  I --- 04:155551 --:------ 01:223036 12B0 003 030000
2024-04-25T11:38:38.255472 045  I --- 04:155551 --:------ 01:223036 12B0 003 030000
2024-04-25T11:38:45.706403 045  I --- 10:040239 --:------ 10:040239 1FD4 003 000488
2024-04-25T11:38:50.430455 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000110000
2024-04-25T11:38:53.461329 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080130000
2024-04-25T11:38:53.486384 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C01347AB
2024-04-25T11:38:56.492435 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00801A0000
2024-04-25T11:38:56.511422 045 RP --- 10:040239 18:005567 --:------ 3220 005 00401A1D00
2024-04-25T11:38:57.863481 045  I --- 04:050559 --:------ 01:223036 3150 002 0800
2024-04-25T11:38:59.523434 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:38:59.554471 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00801C0000
2024-04-25T11:39:02.585519 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000120000
2024-04-25T11:39:05.617732 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080190000
2024-04-25T11:39:05.642644 045 RP --- 10:040239 18:005567 --:------ 3220 005 0040192800
2024-04-25T11:39:14.468609 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:39:14.505725 046 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:39:14.531662 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:39:17.495736 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:39:17.518378 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:39:28.103449 046  I --- 01:223036 --:------ 01:223036 3B00 002 FCC8
2024-04-25T11:39:33.424551 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 02
2024-04-25T11:39:33.436536 047 RP --- 01:223036 18:005567 --:------ 12B0 003 020000
2024-04-25T11:39:33.809805 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 07
2024-04-25T11:39:33.822530 046 RP --- 01:223036 18:005567 --:------ 12B0 003 070000
2024-04-25T11:39:33.971551 095 RQ --- 18:005567 01:223036 --:------ 1260 001 00
2024-04-25T11:39:33.983663 047 RP --- 01:223036 18:005567 --:------ 1260 003 007FFF
2024-04-25T11:39:39.279748 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 00
2024-04-25T11:39:39.294656 046 RP --- 01:223036 18:005567 --:------ 12B0 003 000000
2024-04-25T11:39:39.730529 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 05
2024-04-25T11:39:39.743507 047 RP --- 01:223036 18:005567 --:------ 12B0 003 050000
2024-04-25T11:39:41.171602 095 RQ --- 18:005567 01:223036 --:------ 2349 001 06
2024-04-25T11:39:41.189651 047 RP --- 01:223036 18:005567 --:------ 2349 007 0604B000FFFFFF
2024-04-25T11:39:41.220611 095 RQ --- 18:005567 01:223036 --:------ 2349 001 03
2024-04-25T11:39:41.237601 046 RP --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF
2024-04-25T11:39:41.258506 095 RQ --- 18:005567 01:223036 --:------ 2349 001 0A
2024-04-25T11:39:41.275437 047 RP --- 01:223036 18:005567 --:------ 2349 007 0A04B000FFFFFF
2024-04-25T11:39:45.137079 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 03
2024-04-25T11:39:45.149982 047 RP --- 01:223036 18:005567 --:------ 12B0 003 030000
2024-04-25T11:39:45.624523 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 01
2024-04-25T11:39:45.636547 046 RP --- 01:223036 18:005567 --:------ 12B0 003 010000
2024-04-25T11:39:50.529987 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00001B0000
2024-04-25T11:39:50.556087 045 RP --- 10:040239 18:005567 --:------ 3220 005 00401B47AB
2024-04-25T11:39:53.561966 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000050000
2024-04-25T11:39:53.581889 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C00500FF
2024-04-25T11:39:59.553908 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:39:59.576885 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:40:04.612941 095 RQ --- 18:005567 01:223036 --:------ 0006 001 00
2024-04-25T11:40:04.626872 047 RP --- 01:223036 18:005567 --:------ 0006 004 00050001
2024-04-25T11:40:10.126839 095 RQ --- 18:005567 01:223036 --:------ 1F41 001 00
2024-04-25T11:40:10.140998 047 RP --- 01:223036 18:005567 --:------ 1F41 006 00FF00FFFFFF
2024-04-25T11:40:14.557943 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:40:14.579922 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:40:14.612894 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:40:14.644908 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:40:17.442582 045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25T11:40:17.472999 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400904B00A04B0
2024-04-25T11:40:17.497952 045  I --- 01:223036 --:------ 01:223036 30C9 030 00074C0106190205820305A50505FF0604BE07051B0806600904C60A04EB
2024-04-25T11:40:17.586082 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:40:17.602145 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:40:18.750201 095  W --- 18:005567 01:223036 --:------ 2309 003 0901F4
2024-04-25T11:40:18.780153 095  W --- 18:005567 01:223036 --:------ 2309 003 0701F4
2024-04-25T11:40:18.795837 046  I --- 01:223036 --:------ 01:223036 2309 003 0901F4
2024-04-25T11:40:18.809269 045  I --- 01:223036 18:005567 --:------ 2309 003 0901F4
2024-04-25T11:40:18.826751 095  W --- 18:005567 01:223036 --:------ 2309 003 0A01F4
2024-04-25T11:40:18.859031 046  I --- 01:223036 --:------ 01:223036 2349 013 0A01F404FFFFFF0012190407E8
2024-04-25T11:40:18.877137 095  W --- 18:005567 01:223036 --:------ 2309 003 0601F4
2024-04-25T11:40:19.075146 063  I --- 04:231774 --:------ 04:231774 30C9 003 000765
2024-04-25T11:40:31.322027 095 RQ --- 18:005567 01:223036 --:------ 2349 001 01
2024-04-25T11:40:31.342041 046 RP --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF2D0C190407E8
2024-04-25T11:40:59.605952 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:40:59.625149 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:41:04.480330 045  I --- 10:040239 --:------ 10:040239 1FD4 003 000489
2024-04-25T11:41:14.672451 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:41:14.697233 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:41:14.769308 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:41:14.792302 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:41:16.127184 063  I --- 04:231774 --:------ 01:223036 3150 002 00B4
2024-04-25T11:41:16.555419 045  I --- 04:231776 --:------ 01:223036 3150 002 00BA
2024-04-25T11:41:17.700161 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:41:17.728278 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:41:18.183269 056  I --- 04:231772 --:------ 01:223036 3150 002 00B4
2024-04-25T11:41:22.931439 045  I --- 04:231776 --:------ 04:231776 30C9 003 00076B
2024-04-25T11:41:25.072374 095  W --- 18:005567 01:223036 --:------ 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25T11:41:25.102332 047  I --- 01:223036 --:------ 01:223036 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25T11:41:25.113268 045  I --- 01:223036 --:------ 01:223036 2309 003 010708
2024-04-25T11:41:25.133306 045  I --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF0B0D190407E8
2024-04-25T11:41:26.388034 055  I --- 04:231772 --:------ 04:231772 30C9 003 0007B2
2024-04-25T11:41:27.525420 061  I --- 04:017541 --:------ 04:017541 30C9 003 000500
2024-04-25T11:41:59.655607 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:41:59.681353 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:42:13.241750 095 RQ --- 18:005567 01:223036 --:------ 0418 003 000000
2024-04-25T11:42:13.267617 046 RP --- 01:223036 18:005567 --:------ 0418 022 004000B00406010000004A180F7DFFFFFF7000125F0F
2024-04-25T11:42:14.819648 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:42:14.840499 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:42:14.920633 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:42:14.940423 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:42:17.848603 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:42:17.877647 045 RP --- 10:040239 18:005567 --:------ 2401 004 000005C8
2024-04-25T11:42:17.940520 045  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25T11:42:17.970394 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400901F40A01F4
2024-04-25T11:42:17.995682 045  I --- 01:223036 --:------ 01:223036 30C9 030 00075B0106190205820305A50505FF0604BE07051B0806600904C60A0500
2024-04-25T11:42:21.603640 063  I --- 04:231774 --:------ 04:231774 30C9 003 000778
2024-04-25T11:42:28.509742 061  I --- 04:017541 --:------ 01:223036 3150 002 0A00
2024-04-25T11:42:35.619850 063  I --- 04:231770 --:------ 04:231770 30C9 003 00062D
2024-04-25T11:42:57.357691 095 RQ --- 18:005567 13:179821 --:------ 3EF1 001 00
2024-04-25T11:42:57.578846 095  W --- 18:005567 01:223036 --:------ 2349 007 037FFF00FFFFFF
2024-04-25T11:42:57.594697 047  I --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF
2024-04-25T11:42:57.618665 095  W --- 18:005567 01:223036 --:------ 2349 007 037FFF00FFFFFF
2024-04-25T11:42:57.634606 047  I --- 01:223036 18:005567 --:------ 2349 007 03057800FFFFFF
2024-04-25T11:42:57.819956 095 RQ --- 18:005567 01:223036 --:------ 2349 001 02
2024-04-25T11:42:57.837673 046 RP --- 01:223036 18:005567 --:------ 2349 007 0204B000FFFFFF
2024-04-25T11:42:57.861648 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080730000
2024-04-25T11:42:57.888870 045 RP --- 10:040239 18:005567 --:------ 3220 005 00B0730000
2024-04-25T11:42:59.972897 095 RQ --- 18:005567 01:223036 --:------ 2349 001 08
2024-04-25T11:42:59.989682 046 RP --- 01:223036 18:005567 --:------ 2349 007 08064000FFFFFF
2024-04-25T11:43:00.577688 095  W --- 18:005567 01:223036 --:------ 2349 007 067FFF00FFFFFF
2024-04-25T11:43:00.594725 046  I --- 01:223036 18:005567 --:------ 2349 007 0604B000FFFFFF
2024-04-25T11:43:00.893877 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:43:00.924577 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080010000
2024-04-25T11:43:14.967807 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:43:14.982917 046 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:43:14.999693 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:43:16.139156 045  I --- 04:231776 --:------ 01:223036 3150 002 00AE
2024-04-25T11:43:16.983849 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:43:17.006967 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:43:17.037946 095 RQ --- 18:005567 01:223036 --:------ 2E04 001 FF
2024-04-25T11:43:17.054977 047 RP --- 01:223036 18:005567 --:------ 2E04 008 00FFFFFFFFFFFF00
2024-04-25T11:43:17.233838 063  I --- 04:231774 --:------ 01:223036 3150 002 00A8
2024-04-25T11:43:17.995957 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:43:18.171966 057  I --- 04:231772 --:------ 01:223036 3150 002 00A8
2024-04-25T11:43:23.252240 045  I --- 10:040239 --:------ 10:040239 1FD4 003 00048A
2024-04-25T11:43:25.070940 095  W --- 18:005567 01:223036 --:------ 2349 013 01070804FFFFFF0D0D190407E8
2024-04-25T11:43:25.099396 046  I --- 01:223036 --:------ 01:223036 2349 013 01070804FFFFFF0D0D190407E8
2024-04-25T11:43:25.112003 045  I --- 01:223036 --:------ 01:223036 2309 003 010708
2024-04-25T11:43:25.133071 045  I --- 01:223036 18:005567 --:------ 2349 013 01070804FFFFFF0D0D190407E8
2024-04-25T11:43:27.610028 095 RQ --- 18:005567 01:223036 --:------ 2349 001 00
2024-04-25T11:43:27.626921 047 RP --- 01:223036 18:005567 --:------ 2349 007 0007D000FFFFFF
2024-04-25T11:43:28.532899 095 RQ --- 18:005567 01:223036 --:------ 2349 001 09
2024-04-25T11:43:28.555010 047 RP --- 01:223036 18:005567 --:------ 2349 013 0901F404FFFFFF1E12190407E8
2024-04-25T11:43:30.825901 095 RQ --- 18:005567 01:223036 --:------ 2349 001 07
2024-04-25T11:43:30.842973 046 RP --- 01:223036 18:005567 --:------ 2349 007 0704B000FFFFFF
2024-04-25T11:43:31.057866 095 RQ --- 18:005567 01:223036 --:------ 2349 001 05
2024-04-25T11:43:31.074950 046 RP --- 01:223036 18:005567 --:------ 2349 007 0505DC00FFFFFF
2024-04-25T11:43:51.028103 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000110000
2024-04-25T11:43:54.060306 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080130000
2024-04-25T11:43:57.092347 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00801A0000
2024-04-25T11:43:57.110351 045 RP --- 10:040239 18:005567 --:------ 3220 005 00401A1E00
2024-04-25T11:44:00.124451 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00801C0000
2024-04-25T11:44:00.150424 045 RP --- 10:040239 18:005567 --:------ 3220 005 00401C2200
2024-04-25T11:44:03.157188 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:44:03.176058 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:44:03.197313 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000120000
2024-04-25T11:44:03.215141 045 RP --- 10:040239 18:005567 --:------ 3220 005 0040120199
2024-04-25T11:44:06.230186 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0080190000
2024-04-25T11:44:06.245322 045 RP --- 10:040239 18:005567 --:------ 3220 005 0040192D00
2024-04-25T11:44:17.032270 095 RQ --- 18:005567 10:040239 --:------ 3EF0 001 00
2024-04-25T11:44:17.065294 045 RP --- 10:040239 18:005567 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:44:17.091149 045 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:44:17.120341 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:44:18.438104 046  I --- 01:223036 --:------ 01:223036 1F09 003 FF04B5
2024-04-25T11:44:18.468146 045  I --- 01:223036 --:------ 01:223036 2309 030 0007D00107080204B00305780505DC0604B00704B00806400901F40A01F4
2024-04-25T11:44:18.493083 045  I --- 01:223036 --:------ 01:223036 30C9 030 00075601062D0205820305A50505FF0604BE07051B0806600904C60A0500
2024-04-25T11:44:18.540252 045  I --- 04:155551 --:------ 01:223036 3150 002 0300
2024-04-25T11:44:19.251162 063  I --- 04:231774 --:------ 04:231774 30C9 003 00078F
2024-04-25T11:44:20.060124 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:44:24.233537 045  I --- 04:231776 --:------ 04:231776 30C9 003 000782
2024-04-25T11:44:25.717309 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 08
2024-04-25T11:44:25.730276 046 RP --- 01:223036 18:005567 --:------ 12B0 003 080000
2024-04-25T11:44:27.932106 045  I --- 10:040239 --:------ 10:040239 3EF0 009 0025100A00FF035A64
2024-04-25T11:44:29.920509 060  I --- 04:017541 --:------ 04:017541 30C9 003 00051A
2024-04-25T11:44:37.996025 045  I --- 04:155551 --:------ 04:155551 30C9 003 00058E
2024-04-25T11:44:53.093496 095 RQ --- 18:005567 10:040239 --:------ 3220 005 00001B0000
2024-04-25T11:44:56.126325 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000050000
2024-04-25T11:44:56.148570 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C00500FF
2024-04-25T11:45:03.206487 095 RQ --- 18:005567 10:040239 --:------ 3220 005 0000000000
2024-04-25T11:45:03.222465 045 RP --- 10:040239 18:005567 --:------ 3220 005 00C0000300
2024-04-25T11:45:04.654354 095 RQ --- 18:005567 01:223036 --:------ 0006 001 00
2024-04-25T11:45:04.668589 046 RP --- 01:223036 18:005567 --:------ 0006 004 00050001
2024-04-25T11:45:13.166368 095 RQ --- 18:005567 01:223036 --:------ 1F41 001 00
2024-04-25T11:45:13.180610 047 RP --- 01:223036 18:005567 --:------ 1F41 006 00FF00FFFFFF
2024-04-25T11:45:16.208630 063  I --- 04:231774 --:------ 04:231774 30C9 003 0007A2
2024-04-25T11:45:17.232428 046 RQ --- 01:223036 10:040239 --:------ 3EF0 001 00
2024-04-25T11:45:17.261502 045 RP --- 10:040239 01:223036 --:------ 3EF0 009 0025100A00FF035A64
2024-04-25T11:45:18.886376 095 RQ --- 18:005567 01:223036 --:------ 2349 001 0A
2024-04-25T11:45:18.906359 046 RP --- 01:223036 18:005567 --:------ 2349 013 0A01F404FFFFFF0012190407E8
2024-04-25T11:45:20.086582 095 RQ --- 18:005567 10:040239 --:------ 2401 001 00
2024-04-25T11:45:26.388875 056  I --- 04:231772 --:------ 04:231772 30C9 003 0007C8
2024-04-25T11:45:28.520690 053  I --- 04:155403 --:------ 01:223036 3150 002 0700
2024-04-25T11:45:34.580602 095 RQ --- 18:005567 01:223036 --:------ 12B0 001 0A
2024-04-25T11:45:34.593691 047 RP --- 01:223036 18:005567 --:------ 12B0 003 0A0000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ramses_rf The issue is likely due to an underlying bug in the ramses_rf library.
Projects
None yet
Development

No branches or pull requests

2 participants