What does your notify.everyone notification setup look like?
Also are all your devices ever ‘not_home’ this includes anything that is tracked by home assistant. If you have a smart device that HA tracks it will likely always be home and this automation will never fire.
Thanks. I have another automation to turn on our cameras that does trigger when the devices leave home, and also uses notify.everyone do I don’t think it is that.
I think the trigger isn’t triggering but I can’t figure out why.
Does the nest sensor return a string value? If so can anyone show me how to convert the above into a templated automation as I’ve not done that before.
As a bit of a long shot, try taking the quotes off your trigger value. I just looked at the docs and my automatons and they don’t use quotes. HA/YAML/etc. can be very finicky sometimes with this kind of stuff.
I was wrong. The quote removal made this trigger when I set this sensor value manually. Which leads me to believe I need to use climate.nest_hallway.current_temperature but that isn’t an accepted entity. How would I use that in this automation?
FWIW, I have a Nest thermostat, too, and my understanding is that sensor.xxx_thermostat_temperature is the same as climate.xxx.attributes.current_temperature. So, if you’re now trying to use climate.nest_hallway.attributes.current_temperature, does that mean that in your original post you should have been using sensor.nest_hallway_thermostat_temperature? (You were using sensor.hallway_thermostat_nest_temperature. Is it possible that was just a typo?)
It is very very possible. I was doing it at work when I should have been working but if this works I think I now understand the attribute and entity link in automations so it was a valuable change to make
Edit: just checked and actually it wasn’t a typo. It was what the sensor shows as in HA. I do wonder if that sensor equals the temp the nest is set to. It sounds like explicitly stating current temperature seems a less ambiguous route to go down.