You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that, since we can't read the content of the message, the mqtt sensor uses a counter. So then when the sensor sends its heartbeat message, it throws it off and the only way to fix it is to switch the 0 and 1 between the payload values.
The problem is that, since we can't read the content of the message, the mqtt sensor uses a counter. So then when the sensor sends its heartbeat message, it throws it off and the only way to fix it is to switch the 0 and 1 between the payload values.
Below is manual setup example
unique_id: "front_door_mqtt"
state_topic: "rtl_433/SimpliSafe-Gen3/********"
device_class: "door"
value_template: >
{{ (value_json.ctr % 2) }}
payload_off: "1"
payload_on: "0"
The text was updated successfully, but these errors were encountered: