Tasmota RF brigde - RfRaw On/Off

When I send command (turn light on/off) to Sonoff RF Bridge with Home Assistant it change status of RfRaw to On.
After that my binnary sensor (door sensor) stop working. I recive message:

MQT: tele/RF_Bridge/RESULT = {"Time":"2020-12-10T14:28:38","RfRaw":{"Data":"AAA41D5600E602BC1D08F155"}}

I have to change RfRaw to Off manually through tasmota console to work again

14:29:40 CMD: rfraw 0
14:29:40 MQT: stat/RF_Bridge/RESULT = {"RfRaw":"OFF"}
14:29:47 MQT: tele/RF_Bridge/RESULT = {"Time":"2020-12-10T14:29:47","RfReceived":{"Sync":7480,"Low":260,"High":740,"Data":"1D08F1","RfKey":"None"}}14:29:40 CMD: rfraw 0
14:29:40 MQT: stat/RF_Bridge/RESULT = {"RfRaw":"OFF"}

Is there any solution to automatically turn off RfRaw?

My scripts has something like:

reluxa_close:
  alias: 'Close reluxa'
  sequence:
    - service: mqtt.publish
      data_template:
        topic: sonoffrf433/cmnd/Backlog
        retain: true
        payload: "RfRaw AAB035051412840618012C0302274C481A3A3A3A3A3B2A3B2A3A3B2B2A3A3B2A3A3B2A3B2A3B2B2B2B2B2A3B2A3A3A3A3A3A3B2B2A3A3B2B55"
    - service: input_boolean.turn_off
      entity_id: input_boolean.reluxa_open
    - delay:
        seconds: 1
    - service: mqtt.publish
      data_template:
        topic: sonoffrf433/cmnd/Backlog
        retain: false
        payload: "RfRaw 0xA7"

however I think 0xA7 should rather be 0.
At least when the command is to be sent from Tasmota console it should be something like:
backlog rfraw AAB035051412840618012C0302274C481A3A3A3A3A3B2A3B2A3A3B2B2A3A3B2A3A3B2A3B2A3B2B2B2B2B2A3B2A3A3A3A3A3A3B2B2A3A3B2B55; rfraw 0

1 Like

and here is mind

lounge_fan_1:
  alias: lounge fan Speed 1
  sequence:
    - service: mqtt.publish
      data:
        topic: "cmnd/RF_Bridge_raw/Backlog"
        payload: "RFRAW AA B0 1E 03 08 0172 02E4 2620 28090909181818180909090909090918180909091809 55 RFRAW 0"
    - service: mqtt.publish
      data:
        topic: "home/lounge-fan"
        payload: "1"
    - service: mqtt.publish
      data:
        topic: "home/lounge/fan/cmnd/FanSpeed"
        payload: "on"
  mode: single

did you put the raw in the BitBucket Converter

1 Like