Honeywell CH/DHW via RF - evohome, sundial, hometronics, chronotherm

OK, but you flashed it via the Arduino IDE - use that:

  • Tools menu, then Serial monitor
1 Like

Or try, in teh Web UI:
Settings > System > Logs

Thanks.

When you can, could you please confirm that you can switch back from 0.30.0 to 0.22.x without difficulty.

Could you PM me the ramses_cc section form your configuration.yaml?

Also, I need packet logs, not HA logs.

OK, this is a bug:

2023-11-11 17:07:13.483 WARNING (MainThread) [py.warnings] 
/config/custom_components/ramses_cc/remote.py:202: 
RuntimeWarning: coroutine 'RamsesBroker.async_update' was never awaited
  self._broker.async_update()

… I don’t think it would cause any issues you’d notice, however.

Revert it back without issues and upgrade again, ( From 0.30 to 0.22.40)
Re-download causing issues.
Please note I do not use “re-download” but delete first the addon and then install the required version. I have HA 11.2

My config

serial_port:
#  port_name: /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_A50285BI-if00-port0 # Black One
  port_name: /dev/serial/by-id/usb-SparkFun_evofw3_atmega32u4-if00 # White One
  baudrate: 115200
scan_interval: 60
advanced_features:
  send_packet: true
#  message_events: None
ramses_rf:
#  enforce_known_list: false  # if not true, still enforces the block_list      # Disabled by 0.30 update
  disable_discovery: false
#  disable_sending: false  # do not transmit any packets, ever                  # Disabled by 0.30 update
  enable_eavesdrop: true  # can be used to create an initial system schema      # True as testing 0.30
packet_log:
#  file_name: ramses_packet_via_black.log
  file_name: ramses_packet_via_white.log
  rotate_bytes: null
  rotate_backups: 28
restore_cache:
  restore_schema: false                                                         # False as testing 0.30
  restore_state: false                                                          # False as testing 0.30
orphans_hvac: [18:004628, 30:071287, 32:205847] 
known_list:
#  18:000730  # ramses_rf itself
#  18:135172: # nanoCul 868 Mhz dongle # Black One
#    class: HGI
#    _note: nanoCul 868 Mhz
  18:004628: # SparkFun_evofw3 ssm-32u4d2 # White One
    class: HGI
    _note: ssm-d2 868 Mhz
  30:071287:  # by fan ID FAN:071287
    class: FAN
    _note: Nuaire Drimaster Eco Heat DRI-ECO-HEAT-HC
  32:205847:  # by real remote REM:205847
    class: REM
    faked: true
    commands:
     normal:      ' I --- 32:205847 30:071287 --:------ 22F1 003 00020A'
     boost:       ' I --- 32:205847 30:071287 --:------ 22F1 003 00030A'
     heater_auto: ' I --- 32:205847 30:071287 --:------ 22F1 003 000A0A'
     heater_off:  ' I --- 32:205847 30:071287 --:------ 22F1 003 00090A'
    _note: Nuaire DRI-ECO-4S (4-way switch)

This issue triggers only when the system service runs a command.
However, for the particular option, occasionally, it works. ie for boosting pressing multiple times failing then suddenly works. For normal mode, it does not work at all
Some other errors appeared

2023-11-11 18:10:18.910 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Other error
2023-11-11 18:10:18.967 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:09:55.412', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:21.025 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:09:55.596', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:23.077 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:09:55.596', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:25.139 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:09:55.596', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:25.598 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Timeout (outer) has expired
2023-11-11 18:10:27.198 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:09:55.596', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:39.193 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 312, in _send_cmd
    assert isinstance(self.state, WantEcho), f"{self}: Expects WantEcho"
AssertionError: Context(IsFailed, len(Queue)=9/5): Expects WantEcho
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 277, in _process_queued_cmds
    result = await self._send_cmd(*params)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 317, in _send_cmd
    raise _ProtocolWaitFailed(f"{msg}: {exc}") from exc
ramses_tx.protocol_fsm._ProtocolWaitFailed: Context(IsFailed, len(Queue)=9/5): Failed to Tx echo 7FFF| I|18:000730: Context(IsFailed, len(Queue)=9/5): Expects WantEcho
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 279, in _process_queued_cmds
    fut.set_exception(exc)
asyncio.exceptions.InvalidStateError: invalid state
2023-11-11 18:10:39.197 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Timeout (outer) has expired
2023-11-11 18:10:39.244 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Timeout (outer) has expired
2023-11-11 18:10:39.260 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:10:09.243', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:39.297 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 310, in _send_cmd
    self.state.sent_cmd(cmd)
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 464, in sent_cmd
    raise exceptions.ProtocolFsmError(
ramses_tx.exceptions.ProtocolFsmError: IsFailed(tx_hdr=7FFF| I|18:000730, sends=1): Can't send 7FFF| I|18:000730: Protocol FSM is in a failed state
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 277, in _process_queued_cmds
    result = await self._send_cmd(*params)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 317, in _send_cmd
    raise _ProtocolWaitFailed(f"{msg}: {exc}") from exc
ramses_tx.protocol_fsm._ProtocolWaitFailed: Context(IsFailed, len(Queue)=7/3): Failed to Tx echo 7FFF| I|18:000730: IsFailed(tx_hdr=7FFF| I|18:000730, sends=1): Can't send 7FFF| I|18:000730: Protocol FSM is in a failed state
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/site-packages/ramses_tx/protocol_fsm.py", line 279, in _process_queued_cmds
    fut.set_exception(exc)
asyncio.exceptions.InvalidStateError: invalid state
2023-11-11 18:10:39.301 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Timeout (outer) has expired
2023-11-11 18:10:39.343 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:10:09.243', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:39.346 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Timeout (outer) has expired
2023-11-11 18:10:39.397 ERROR (MainThread) [ramses_rf.gateway] Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Timeout (outer) has expired
2023-11-11 18:10:39.541 INFO (MainThread) [ramses_rf.dispatcher] ||  18:004628 |  63:262142 |  I | puzzle_packet    |      || {'datetime': '2023-11-11T18:10:09.345', 'impersonating': '22F1| I|32:205847', 'parser': 'v0.30.0'}
2023-11-11 18:10:44.369 INFO (MainThread) [ramses_rf.dispatcher] ||  30:071287 |            |  I | system_sync      |      || {'remaining_seconds': 123.5, '_next_sync': '18:12:47'}
2023-11-11 18:12:47.869 INFO (MainThread) [ramses_rf.dispatcher] ||  30:071287 |            |  I | system_sync      |      || {'remaining_seconds': 123.5, '_next_sync': '18:14:51'}

Packet Log

2023-11-11T18:04:40.295977 # ramses_tx 0.30.0
2023-11-11T18:04:40.430356 000  I --- 18:004628 63:262142 --:------ 7FFF 015 0010018BBF8EAC0A76302E33302E30
2023-11-11T18:04:55.447733 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:04:55.676627 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:04:56.103097 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:04:56.734005 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:04:57.562941 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:05:50.773314 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:05:51.403902 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:05:52.263472 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF8FC1E932324631204933323A323035383437
2023-11-11T18:05:52.302134 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF8FC1E932324631204933323A323035383437
2023-11-11T18:05:52.450500 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:05:52.678883 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:05:53.110048 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:05:53.741294 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:05:54.577715 000  I --- 32:205847 30:071287 --:------ 22F1 003 00030A
2023-11-11T18:05:54.618823 067  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:05:54.666244 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:05:54.894767 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:05:55.322119 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:05:55.953018 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:05:56.786269 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:05:57.013767 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:05:57.441950 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:05:58.074763 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:05:58.911481 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:05:59.141240 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:05:59.568559 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:06:00.193253 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:06:03.444174 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF8FF07932324631204933323A323035383437
2023-11-11T18:06:03.523877 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF8FF07932324631204933323A323035383437
2023-11-11T18:06:03.715782 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF8FF07932324631204933323A323035383437
2023-11-11T18:06:03.916157 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF8FF07932324631204933323A323035383437
2023-11-11T18:06:04.093648 000 RQ --- 18:004628 30:071287 --:------ 10D0 001 00
2023-11-11T18:06:04.321136 000 RQ --- 18:004628 30:071287 --:------ 10D0 001 00
2023-11-11T18:06:13.783807 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:06:14.414034 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:06:15.276676 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF9019A532324631204933323A323035383437
2023-11-11T18:06:15.421908 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF9019A532324631204933323A323035383437
2023-11-11T18:06:15.624243 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF9019A532324631204933323A323035383437
2023-11-11T18:06:17.375507 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF9019A532324631204933323A323035383437
2023-11-11T18:06:18.259037 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:06:25.556333 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:06:26.465535 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:06:27.375104 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:06:28.288873 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:06:30.376114 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF904A7632324631204933323A323035383437
2023-11-11T18:06:32.589968 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF904A7632324631204933323A323035383437
2023-11-11T18:06:34.486557 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF904A7632324631204933323A323035383437
2023-11-11T18:06:36.547796 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF904A7632324631204933323A323035383437
2023-11-11T18:06:37.364482 067  I --- 30:071287 --:------ 30:071287 1F09 003 0004D3
2023-11-11T18:06:37.423943 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:06:38.338590 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:06:39.245962 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:06:40.160808 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:06:41.074368 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:06:41.983958 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:06:42.898252 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:06:43.809154 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:06:44.545734 058  I --- 32:205847 30:071287 --:------ 22F1 003 00020A
2023-11-11T18:06:44.585454 068  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:06:44.718185 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:06:45.628965 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:06:46.540861 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:06:47.451940 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:06:48.363963 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00

2023-11-11T18:07:08.416315 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:07:09.328147 000 RQ --- 18:004628 30:071287 --:------ 22E0 001 00
2023-11-11T18:07:10.239947 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:07:11.151817 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:07:12.066372 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:07:12.969721 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:07:13.399540 048  I --- 32:205847 30:071287 --:------ 22F1 003 00020A
2023-11-11T18:07:13.442150 067  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:07:13.883504 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:07:14.791613 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:07:15.710531 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:07:16.620498 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:07:17.530353 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:07:18.357485 068  I --- 32:205847 30:071287 --:------ 22F1 003 00020A
2023-11-11T18:07:18.404666 067  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:07:18.442372 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:07:19.352987 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:07:20.266476 000 RQ --- 18:004628 30:071287 --:------ 22F2 001 00
2023-11-11T18:07:20.616748 056  I --- 32:205847 30:071287 --:------ 22F1 003 00020A
2023-11-11T18:07:20.656673 066  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:07:20.760259 052  I --- 32:205847 --:------ 32:205847 1060 003 00FF01
2023-11-11T18:07:21.176140 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:07:22.086439 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:07:22.997516 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:07:23.913182 000 RQ --- 18:004628 30:071287 --:------ 22F4 001 00
2023-11-11T18:07:25.996566 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91240F32324631204933323A323035383437
2023-11-11T18:07:28.049797 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91240F32324631204933323A323035383437
2023-11-11T18:07:30.113554 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91240F32324631204933323A323035383437
2023-11-11T18:07:32.168559 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91240F32324631204933323A323035383437
2023-11-11T18:07:33.052190 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:07:33.964007 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:07:34.873547 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:07:35.785201 000 RQ --- 18:004628 30:071287 --:------ 22F8 001 00
2023-11-11T18:07:37.874268 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF913C2432324631204933323A323035383437
2023-11-11T18:07:39.930680 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF913C2432324631204933323A323035383437
2023-11-11T18:07:41.981784 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF913C2432324631204933323A323035383437
2023-11-11T18:07:44.047772 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF913C2432324631204933323A323035383437
2023-11-11T18:07:44.931443 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:07:45.836536 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:07:45.927549 056  I --- 32:205847 30:071287 --:------ 22F1 003 00020A
2023-11-11T18:07:45.982022 068  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:07:46.752049 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:07:47.657912 000 RQ --- 18:004628 30:071287 --:------ 313E 001 00
2023-11-11T18:07:48.570936 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:07:49.482973 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:07:50.398925 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:07:51.309741 000 RQ --- 18:004628 30:071287 --:------ 3222 001 00
2023-11-11T18:07:53.383929 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF918E0232324631204933323A323035383437
2023-11-11T18:07:55.452927 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF918E0232324631204933323A323035383437
2023-11-11T18:07:57.508721 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF918E0232324631204933323A323035383437
2023-11-11T18:07:59.569106 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF918E0232324631204933323A323035383437
2023-11-11T18:08:00.448316 000 RQ --- 18:004628 30:071287 --:------ 10D0 001 00
2023-11-11T18:08:01.359081 000 RQ --- 18:004628 30:071287 --:------ 10D0 001 00
2023-11-11T18:08:02.271172 000 RQ --- 18:004628 30:071287 --:------ 10D0 001 00
2023-11-11T18:08:03.186568 000 RQ --- 18:004628 30:071287 --:------ 10D0 001 00
2023-11-11T18:08:04.094938 000 RQ --- 18:004628 30:071287 --:------ 22F1 001 00
2023-11-11T18:08:05.003952 000 RQ --- 18:004628 30:071287 --:------ 22F1 001 00
2023-11-11T18:08:05.920127 000 RQ --- 18:004628 30:071287 --:------ 22F1 001 00
2023-11-11T18:08:06.830497 000 RQ --- 18:004628 30:071287 --:------ 22F1 001 00
2023-11-11T18:08:08.920877 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CCE532324631204933323A323035383437
2023-11-11T18:08:10.977444 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CCE532324631204933323A323035383437
2023-11-11T18:08:13.028834 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CCE532324631204933323A323035383437
2023-11-11T18:08:15.088211 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CCE532324631204933323A323035383437
2023-11-11T18:08:17.149649 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CD8C32324631204933323A323035383437
2023-11-11T18:08:19.202133 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CD8C32324631204933323A323035383437
2023-11-11T18:08:21.255615 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CD8C32324631204933323A323035383437
2023-11-11T18:08:23.315904 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CD8C32324631204933323A323035383437
2023-11-11T18:08:25.371266 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CE3332324631204933323A323035383437
2023-11-11T18:08:27.435536 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CE3332324631204933323A323035383437
2023-11-11T18:08:29.490006 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CE3332324631204933323A323035383437
2023-11-11T18:08:31.537932 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CE3332324631204933323A323035383437
2023-11-11T18:08:32.003453 045  I --- 32:205847 30:071287 --:------ 22F1 003 00020A
2023-11-11T18:08:32.051251 066  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00
2023-11-11T18:08:33.611992 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CEDA32324631204933323A323035383437
2023-11-11T18:08:35.660038 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CEDA32324631204933323A323035383437
2023-11-11T18:08:37.711677 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF91CEDA32324631204933323A323035383437
2023-11-11T18:08:40.867716 065  I --- 30:071287 --:------ 30:071287 1F09 003 0004D3
2023-11-11T18:08:50.897002 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A9C32324631204933323A323035383437
2023-11-11T18:08:51.035881 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A9C32324631204933323A323035383437
2023-11-11T18:08:51.242730 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A9C32324631204933323A323035383437
2023-11-11T18:08:51.440352 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A9C32324631204933323A323035383437
2023-11-11T18:08:51.646110 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A0432324631204933323A323035383437
2023-11-11T18:08:51.845237 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A0432324631204933323A323035383437
2023-11-11T18:08:52.115790 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A0432324631204933323A323035383437
2023-11-11T18:08:54.168881 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A0432324631204933323A323035383437
2023-11-11T18:08:56.223185 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF921A3732324631204933323A323035383437
2023-11-11T18:09:07.693293 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF927E8A32324631204933323A323035383437
2023-11-11T18:09:07.737439 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF927E8A32324631204933323A323035383437
2023-11-11T18:09:07.905057 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:09:08.130749 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:09:08.557929 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:09:09.186773 000 RQ --- 18:004628 30:071287 --:------ 22E5 001 00
2023-11-11T18:09:10.016496 000  I --- 32:205847 30:071287 --:------ 22F1 003 00030A
2023-11-11T18:09:10.111984 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:09:10.342014 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:09:10.769266 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00
2023-11-11T18:09:11.400158 000 RQ --- 18:004628 30:071287 --:------ 22E9 001 00

2023-11-11T18:09:35.054674 000 RQ --- 18:004628 30:071287 --:------ 2210 001 00
2023-11-11T18:09:35.966461 000 RQ --- 18:004628 30:071287 --:------ 2210 001 00
2023-11-11T18:09:36.885065 000 RQ --- 18:004628 30:071287 --:------ 2210 001 00
2023-11-11T18:09:37.790353 000 RQ --- 18:004628 30:071287 --:------ 2210 001 00
2023-11-11T18:09:47.566094 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF935BF832324631204933323A323035383437
2023-11-11T18:09:47.694375 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF935BF832324631204933323A323035383437
2023-11-11T18:09:47.899843 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF935BF832324631204933323A323035383437
2023-11-11T18:09:48.091660 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF935BF832324631204933323A323035383437
2023-11-11T18:09:54.953115 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF9378D332324631204933323A323035383437
2023-11-11T18:10:27.197784 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF937B8C32324631204933323A323035383437
2023-11-11T18:10:39.259650 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF93B0DB32324631204933323A323035383437
2023-11-11T18:10:39.342633 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF93B0DB32324631204933323A323035383437
2023-11-11T18:10:39.540261 000  I --- 18:004628 63:262142 --:------ 7FFF 023 0011018BBF93B14132324631204933323A323035383437
2023-11-11T18:10:44.368624 071  I --- 30:071287 --:------ 30:071287 1F09 003 0004D3
2023-11-11T18:12:47.869159 071  I --- 30:071287 --:------ 30:071287 1F09 003 0004D3
2023-11-11T18:14:51.372077 071  I --- 30:071287 --:------ 30:071287 1F09 003 0004D3
2023-11-11T18:15:03.382286 070  I --- 30:071287 --:------ 30:071287 31DA 030 21EF007FFFEFEF7FFF7FFF7FFF7FFF0002EF18FFFF000000EF7FFF7FFF00

Thanks for the quick response! Yes I got these three sensors. I started up the nanoCUL yesterday and the ramses_cc found all three components in my system very fast. Since yesterday boiler_return_temp was always unavailable, boiler output temp and dhw temp sometimes got valid values but sometimes they are also unavailable. They looks like this on the graph:
image
Do you have any idea, why are they unavailable sometimes?

I have fixed a few bugs you have helped me identify.

If you know how, you may want to download the master branch, instead of tag 0.30.0.

The obvious reason would be due to patchy reception between the gateway (the USB dongle) and the OTB (opentherm bridge).

BTW, it’s up to you, but I wouldn’t bother redacting the device IDs.

I wonder why there are no RPs for any of your gateway’s RQs…

And the impersonated packets are not working(i.e. no echo received) at all?

This bug has been fixed, and will be part of 0.30.1 - thanks for helping!

On 0.30.0, for

service: remote.send_command
data:
  command: normal
target:
  entity_id: remote.32_205847

I am able to reproduce the following error.

2023-11-11 21:26:40.600 ERROR ... Unexpected error for call_service at pos 1: must be exactly one command to send
Traceback (most recent call last):
  File "/home/dbonnes/clients/hass/homeassistant/helpers/script.py", line 468, in _async_step
    await getattr(self, handler)()
...
  File "/home/dbonnes/clients/ramses_cc/custom_components/ramses_cc/remote.py", line 181, in async_send_command
    raise TypeError("must be exactly one command to send")

Fix coming.

On 0.30.0, for:

service: remote.send_command
data:
  command: normal
target:
  entity_id: remote.32_205847

I am able to reproduce the following error.

2023-11-11 21:33:21.496 ERROR (MainThread) [ramses_rf.gateway] 
Failed to send 22F1| I|32:205847: 7FFF| I|18:000730: Other error

Fix coming.

I am not sure if it came flashed with anything. I have flashed at 115200 with the evofw3 firmware.

I get nothing when using the device plugged into my pc and executing from the Arduino IDE -

  • Tools menu, then Serial monitor.
    Not sure if i am meant to enter a command but theres nothing feeding through. Assuring it is monitoring.

I redownloaded from master and the issue persists.

EDIT: Had to delete the integration and reinstall from master, upgrading from 0.30.0 → master didn’t work.

Please be more helpful.

I have listed several issues, above. Which one are you referring to?

Have a look at: 0.30.0 known issues

I was referring directly to your suggestion to upgrade to master - it didn’t work in my case, I had to delete the integration and install again using master.

The issue I was having was the missing configuration options.

That is definitely fixed - what is the latest commit you used?

(venv) dbonnes@db-laptop ~/c/ramses_cc (master)> git log --oneline | head
cc4a23e tweak config schema
5355cf8 rename SC params to same as HA
78f08ed doctweak
b2a3701 Merge branch 'master' of https://github.com/zxdavb/ramses_cc
64e8c9b fix #74 - must be exactly one command
f149622 Bugfix # 74
5553eb7 fix #72 - enforced_known_list broken
689c7e9 missing await
23a83ba bump to 0.30.0

Your fix is 5553eb7 .

Well seeing as HACS doesn’t give such detail I presume it 5553eb7.

Let me expand because I don’t think I’m being unhelpful, I responded directly to a comment so it should be in context…

  • I upgraded to 0.30.0 using HACS as I got an upgrade notification
  • When HA restarted the integration was in error because of the missing config items - I checked GitHub, got pointed here, saw you comment to upgrade to master and did just that - it didn’t work, the error remained.
  • I deleted the integration, restarted HA and then installed again via HACS using master - the error went away

Now all my ramses_cc entities are unavailable.

All of them - or most? Did your cache get restored?