Hello,
I would like to receive requests from a transmitter via CC1101 so I can analyze them. I've managed to get it working enough that I can see the incoming requests in the log, but unfortunately I can't select the ByronSX as a trigger because the command found in the log isn't supported.
Unknown value ‘0x07’, valid options are ‘1’, ‘2’, ‘3’, ‘5’, ‘6’, ‘9’, ‘13’, ‘14’, ‘16’.
This is what I receive when I press the remote control:
[18:00:15.009][D][remote.byronsx:134]: Received ByronSX: address=0x00000055, command=0x07
[18:00:15.010][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.010][I][remote.pronto:239]: 0000 006D 000D 0000 000E 000D 001A 001C 000C 0010 0018 001D 000B 000F 0019 001D 000C 000F 0019 001C 000B 000F 0019 001C 000C 001C 000B 001C 000B 0181
[18:00:15.047][D][remote.byronsx:134]: Received ByronSX: address=0x00000055, command=0x07
[18:00:15.047][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.047][I][remote.pronto:239]: 0000 006D 000D 0000 000D 000E 001A 001B 000C 000F 0019 001D 000B 000F 0019 001C 000C 000E 001A 001B 000C 000E 0019 001D 000B 001D 000C 001B 000C 0181
[18:00:15.060][D][remote.byronsx:134]: Received ByronSX: address=0x00000055, command=0x07
[18:00:15.061][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.071][I][remote.pronto:239]: 0000 006D 000D 0000 000C 000E 001A 001C 000B 000F 0019 001B 000B 000F 0019 001C 000D 000E 0019 001C 000C 000F 0019 001C 000C 001C 000B 001D 000B 0181
[18:00:15.098][D][remote.byronsx:134]: Received ByronSX: address=0x00000055, command=0x07
[18:00:15.098][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.098][I][remote.pronto:239]: 0000 006D 000D 0000 000D 000E 001A 001B 000C 000F 0019 001C 000B 000F 0019 001C 000D 000E 001A 001B 000C 000F 0019 001C 000B 001C 000B 001C 000C 01CE
[18:00:15.127][D][remote.byronsx:134]: Received ByronSX: address=0x00000055, command=0x07
[18:00:15.127][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.127][I][remote.pronto:239]: 0000 006D 000D 0000 000C 000F 0019 001C 000C 000E 001A 001B 000C 000F 0019 001C 000C 000F 0019 001C 000C 000F 0019 001C 000B 001D 000C 001D 000B 01CF
[18:00:15.156][D][remote.byronsx:134]: Received ByronSX: address=0x00000055, command=0x07
[18:00:15.157][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.157][I][remote.pronto:239]: 0000 006D 000D 0000 000C 000E 0019 001D 000C 000F 0019 001C 000C 000E 001A 001B 000C 000F 0019 001C 000B 0010 0018 001C 000B 001D 000C 001B 000C 01CF
[18:00:15.184][I][remote.canalsatld:098]: Received CanalSatLD: device=0x49, address=0x3F, command=0x7F, repeat=0x1
[18:00:15.185][I][remote.pronto:231]: Received Pronto: data=
[18:00:15.185][I][remote.pronto:239]: 0000 006D 0006 0000 000B 000F 0019 001C 000C 000F 0019 001C 000C 000E 001A 0181
And here is my code:
binary_sensor:
- platform: remote_receiver
name: "Einfahrt erkannt"
byronsx:
address: '0x00000055'
command: '0x07'
I’ve already tried it with Pronto and RAW, but with both methods I always get different data; with ByronSX, there’s only the address and command, which is why I hoped to achieve my goal with it.
Did I make a mistake, or am I simply unable to use the command ‘0x07’?
Regards
Nick