Nest attributes

I recently migrated to the new Nest integration and got that up and running on HA, but am having problems with getting it to play well with node red. The climate.family_room entity houses most of the various states for the nest including mode, current temp, target temp, etc… When I set the event state node to monitor climate.family_room it does not pick up changes to various attributes only the mode. I have automations that trigger based on current set temperature (data.new_state.attributes.temperature), but can’t get any of these to fire now. Any suggestions?

@osufnl499
You can use the Get entities node and filter for the entity (climate.family_room) which will also have all the attributes you require. From there select the attribute current_temperature with the value you want to trigger with in this example it’s 72F.

The node will only fire based on the condition you define (in this example >= 72F). Hope this helps

Screen Shot 2021-02-11 at 5.36.30 PM

[{"id":"63808309.7bfb8c","type":"ha-get-entities","z":"6e482e4a.3e4bb","server":"8a3231e1.3f0e1","name":"Get Current Temperature from Nest","rules":[{"property":"attributes.current_temperature","logic":"gte","value":"72","valueType":"num"}],"output_type":"array","output_empty_results":false,"output_location_type":"msg","output_location":"payload","output_results_count":1,"x":1458.5713348388672,"y":2864.285177230835,"wires":[["3e129899.70e818"]]},{"id":"89692222.cbdc3","type":"inject","z":"6e482e4a.3e4bb","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":1198.571388244629,"y":2867.143018722534,"wires":[["63808309.7bfb8c"]]},{"id":"3e129899.70e818","type":"debug","z":"6e482e4a.3e4bb","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":1684.2857208251953,"y":2864.28559589386,"wires":[]},{"id":"8a3231e1.3f0e1","type":"server","name":"Hassio","legacy":false,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"y|yes|true|on|home|open","connectionDelay":false,"cacheJson":true}]

Thanks I got it working!