Hi there. I need help to diagnose the problem.
Some time ago I’ve started adding binary sensors on mqtt platform which are collected from Sonoff RF bridge (Tasmota)
- platform: mqtt
state_topic: “tele/rf/RESULT”
name: ‘PIR Hall 1’
value_template: ‘{{value_json.RfReceived.Data}}’
payload_on: ‘1C1DB0’
off_delay: 3
device_class: motion
I have more than 20 of this inputs in my config.yaml. They seem to working fine but my logs are full of:
2020-03-02 12:19:28 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: Window Bathroom with state topic: tele/rf/RESULT. Payload: FA1C5E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:28 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: PIR Hall 1 with state topic: tele/rf/RESULT. Payload: FA1C5E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:28 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: PIR Hall 2 with state topic: tele/rf/RESULT. Payload: FA1C5E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: PIR Hall 3 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: SonoffB3 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: PIR Stairs with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: SonoffB4 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: SonoffB5 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: SonoffB6 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: SonoffB7 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
2020-03-02 12:19:31 WARNING (MainThread) [homeassistant.components.mqtt.binary_sensor] No matching payload found for entity: SonoffB8 with state topic: tele/rf/RESULT. Payload: FA502E, with value template Template("{{value_json.RfReceived.Data}}")
This is only small bit of log. Where I made mistake? Anyone can see anything obvious?
Thanks