Hi, I’m trying to turn my group.persons presence sensor into a binary sensor (for use with Versatile Thermostat). For some reason, this is giving me the opposite result. When Group.presence is “Home”, it gives me “Away”. Any idea why?
- platform: template
sensors:
presence_binary:
friendly_name: "Home Presence"
value_template: "{{ is_state('group.presence', 'home') }}"
device_class: presence
I have inverted the sensor with the “Invert” helper from the Spook integration but wth. Thanks!