Hi,
I am facing the issue the a mqtt sensor is working as expected while the (same) binary sensor is not:
My main system has Mosquito Broker 4.2 installed.
I have two sensors subscribing the same topics:
sensor:
- platform: mqtt
state_topic: ‘ha_slave01topic/input_boolean/test_trigger_remote/state’
name: “mqtt_sensor_remote”
binary_sensor:
- platform: mqtt
state_topic: ‘ha_slave01topic/input_boolean/test_trigger_remote/state’
name: “mqtt_binary_sensor_remote”
The state per mqtt gets updated:
While the sensor gets updated the binary sensor does not:
I also get an error message for the binary sensor that no matching payloads exist. I don’t get that message for the sensor.
.Any idea what is wrong with my binary_sensor configuration?