SonOff Bridge with Tasmota

I have just flashed a SOnOff bridge with Tasmota and I have it talking to the Mqtt server on Hassio. I have added a simple switch to the bridge and I was able to get the state topic and data code.
I have added the following to my config file as per the following post (Sonoff RF Bridge. Strategies for receiving data):

  platform: mqtt
  name: 'Portable Switch 1'
  state_topic: 'tele/tasmota_4345DE/RESULT'
  value_template: >-
    {% if value_json.RfReceived.Data == '2B2284' %}
      {{'ON'}}
    {% else %}
      {{states('binary_sensor.switch_1') | upper}}
    {% endif %}
  off_delay: 15
  device_class: None

I’m not getting any errors but I am unable to see the switch anywhere. I’m not even sure it’s working. Is there a way to verify I’m getting a response back from the bridge?
Thanks for the help

Please format your data

platform: mqtt
name: ‘Portable Switch 1’
state_topic: ‘tele/tasmota_4345DE/RESULT’
value_template: >-
{% if value_json.RfReceived.Data == ‘2B2284’ %}
{{‘ON’}}
{% else %}
{{states(‘binary_sensor.switch_1’) | upper}}
{% endif %}
off_delay: 15
device_class: None

see that looks beater. now we can fix it

you haven’t got a payload_on and payload_off needs to know what ON is and what OFF is

  - platform: mqtt
    name: 'Portable Switch 1'
    state_topic: "tele/RF_Bridge/RESULT"
    value_template: '{{value_json.RfReceived.Data}}'
    payload_on: '2B2284'
    payload_off: '2B2284off'
    off_delay: 1
    qos: 1   

Thanks. Figured it out following this post: