Awesome suggestion: Tasmota allowed to look at Receivers data (hex format),
from Tasmota: {“Data”:“0x8546C224”,“Bits”:32,“Protocol”:1,“Pulse”:252}}
then I converted to binary and got it working on esphome with some tuning to set and repeats and not using the “protocol: 1” instead supplying specific pulses:
switch:
- platform: template
name: "RF test switch"
turn_on_action:
- remote_transmitter.transmit_rc_switch_raw:
code: '10000101010001101100001000100100'
protocol:
pulse_length: 252
repeat:
times: 10
wait_time: 0ms