I’m currently playing around with the APIs directly.
Device status works great.
I’ve been fighting with the RTSPS streams - nothing I’ve used (VLC on Windows, VLC on Ubuntu, mplayer, ffmpeg) can seem to play them.
Haven’t tried thermostat controls yet.
Woohoo! Badnest has been working fairly well for me but it’ll be nice to get a true integration! Hopefully people detection and such will be able to be used as a trigger.
Looks like people and motion detection should be available as triggers. Some nice option in there, all of which are being used by people with blue iris and the like already but now available to those of us who needed the “easy” button.
Great! Yeah, I had previously used zoneminder with some generic cameras but switching to nest definitely passed the wife test and is mostly just less frustrating. Except for the whole no API (until now) thing.
I reckon they’ll add it - at least I hope so. I paid the $5, at this point I’ve paid Google a lot of money over the years - what’s an extra 5 bucks gonna do, right?
My great wish though is for Nest Guard support - like proper support as well, not the crap they had under WWN. I want to be able to read the status of my alarm, as well as the individual sensors attached to it. Ideally, setting the alarm state too but I doubt they’ll allow that. I’d settle for a decent read-only view.
Since my old Nest integration is still working for now, I’ll be waiting for a new HA integration before I start mucking around with it. “If it ain’t broke, don’t fix it.” (Or something. LOL)
Well, yeah I sorta had that opinion - my Nest account was old and I held off doing the Google migration to keep my HA integration working. But TBH, without the doorbell chime events and no Nest Guard integration, I didn’t really need it to be integrated.
My thermostats basically just manage themselves now so I rarely need to actually control them, and the doorbell pushes info to me whenever I need it, so which app the notification launches is kinda irrelevant to me. Home/Away is also managed entirely within the Nest ecosystem (it would be more accurate if integrated, but it’s good enough for me).
So I took the plunge, migrated the account and now my Nest is basically an island, disconnected from all the other systems. It’s actually fine, I don’t really miss it. I will integrate it again once the updated HA component comes out, but really only for the chime event integration (and any future Nest Guard stuff ) I have some nice automation plans for those!
Hi Folks,
Managed to put together some basic calls using node-red as the middle-ware to at least give me status on the thermostat - it is a bit fugly, but it’s working… I will say, trying to get the Oauth component setup was a pain in the rear - for folks trying to figure it out, here is where I would start - https://developers.google.com/nest/device-access/get-started
What the guide doesn’t tell you is that when you setup your Oauth creds, you need to make sure to include https://www.google.com as an authorized URI (screen shot below) - otherwise it doesn’t finish it’s setup when you go through the account authorization steps - this took me a while to figure out.
Once you get your auth code, you can follow the steps to get your access code and refresh code - it looks like the access codes expire after an hour - so my node-red flow is setup to use the refresh code to get the current access code, and then use the latest access code to query for the values, before setting the values for the Various entities. I am sure this could be more elegantly done - I am just happy to have it working for the moment - happy to hear other’s thoughts or feedback.
So I assume this will only work if you’ve migrated your Nest account to a Google account?
Hope we get an updated HA integration soon. I hate how Google killed the old API before they had a replacement but I like how the new API has more functionality for things like the doorbell and cameras.
Change the output of the devices http node to return a parsed JSON object. You then have all the data at your disposal, e.g. to create HA sensors. Use a debug node to explore msg.payload.
The next step would be to respond to events, but for that I’d rather wait for the HA integration rather then roll a competing bus in node-red.