Sonoff 433Mhz 4 button remote & RF bridge ( tasmota )

Hi Guys
Can you guys please share your configuration of 433Mhz remote to turn a light off and on?

Is possible to use the A button to turn a light off & on. The same button to turn a light on & off.
I see the code of the button in the console of the RF Bridge ( tasmota console ) I can get to turn the light on but if I press the button again, the light does not turn off.

Thanks

You can create a Template switch for this function.

switch:
  - platform: template
    switches:
      remote_1:
        turn_on:
          service: mqtt.publish
          data:
            topic: cmnd/tasmotaRF1/RFsend
            payload: '{"Data":"0x846008","Bits":24,"Protocol":1,"Pulse":192}'
        turn_off:
          service: mqtt.publish
          data:
            topic: cmnd/tasmotaRF1/RFsend
            payload: '{"Data":"0x846008","Bits":24,"Protocol":1,"Pulse":192}'

Replace tasmotaRF1 with your mqtt topic and also the payload with the code you see in concole.

1 Like