Trying to get home assistant recognizing my rf devices

Fixed with help from the HA forum

I’m using Home Assistant 0.95.4

output from MQTT (home/OpenMQTTGateway/SRFBtoMQTT)

doorbell :

{“raw”:“24FE01400398D81F91”,“delay”:9470,“val_Tlow”:320,“val_Thigh”:920,“value”:14163857}

light switch :

{“raw”:“2724016803D41285A2”,“delay”:1002,“val_Tlow”:360,“val_Thigh”:980,“value”:1213858}

rf outlet :

on : {“raw”:“118A009601CCFFD55F”,“delay”:4490,“val_Tlow”:150,“val_Thigh”:460,“value”:16766303}

off : {“raw”:“119400A001C2FFD55F”,“delay”:4500,“val_Tlow”:160,“val_Thigh”:450,“value”:16766303}

this is my configuration.yaml

Blockquote
binary_sensor:
platform: mqtt
name: doorbell
state_topic: ‘home/OpenMQTTGateway/SRFBtoMQTT’
value_template: “{{ value_json.raw }}”
off_delay: 30
payload_on: “24EA01400398D81F91”
payload_off: “0”
device_class: ‘sound’

binary_sensor:
platform: mqtt
name: light_back_sensor
state_topic: ‘home/OpenMQTTGateway/SRFBtoMQTT’
value_template: ‘{{ value_jason.value }}’
off_delay: 5
payload_on: 1213858
payload_off: “0”

binary_sensor:
platform: mqtt
name: rf_outlet_sensor
state_topic: ‘home/OpenMQTTGateway/SRFBtoMQTT’
value_template: ‘{{ value_json.raw }}’
payload_on: “119E00A001C2FFD55F”
payload_off: “119400A001C2FFD55F”

No success until now with all the tries. What am I doing wrong ?

(tried to format my configuration.yalm, but the bord does not seem to accept it)