I’m using room assistant to track room presence, using the mqtt_room sensor. I also created a template sensor to give me a home/away value to beef up my presence detection. However this never seems update the group it’s added to, even when it shows marked as home the group will still be marked as away.
Do I need to create a different type of sensor in order to update the group?
Blockquote
- platform: template
sensors:
michael_mi:
friendly_name: “Michael Mi”
value_template: ‘{% if is_state(“sensor.michael_miband”, “not_home”) %} Away {% else %} Home {%- endif %}’
Blockquote