You can use whatever is your home assistant url prefix that you use to access your HA instance.
See the integration troubleshooting instructions if you get an error message on the url not matching.
You specify the prefix for the auth external callback URL exactly the same way as the base URL you use to access your HA system. If you use a port number then callback has to have a port number. If not, then no port numberâŚ
no i use the link that create nabucasa
edit: itâs work if i connect with nabucasa but if i use local ip donât work (fail called)
Just append /auth/external/callback to your EXTERNAL URL
If that URL has a :port_number
then include it.
If not, donât try and make things up 'cause it wonât work!
https://my_name.duckdns.org:8123
would be https://my_name.duckdns.org:8123/auth/external/callback
https://my_name.duckdns.org:8080
would be https://my_name.duckdns.org:8080/auth/external/callback
https://#xxl#xxxxxxxx#xx#x#xxx#xxxxxxx#.ui.nabu.casa/
would be https://#xxl#xxxxxxxx#xx#x#xxx#xxxxxxx#.ui.nabu.casa/auth/external/callback
ok thanks with external url work.
Oh gosh I now noticed that the latency means the snapshot doesnât even pick up the person!!! So this change will definitely be welcome, if the snapshot could come directly from Nest then Iâd actually have a person in the field. By the time my automation triggers from the person_detected event and HA takes a snapshot, the image doesnât have a person as the latency is too big between the event being received and the snapshot being taken.
Especially with how quick the busy couriers come and go now a days!
Just wanted to add a âthank youâ to those that contributed to the integration update and the implementation instructions. Very nice work and much appreciated!
I think I can say on behalf of everyone here, youâre welcome!
Also, welcome to the community! Congratulations on successfully integrating Google Nest!!
Is anyone else having a problem with the thermostatâs attribute hvac_action? No matter what my thermostat is doing or what state itâs in, itâs showing as off.
Thatâs literally my only problem; this is working fantastically. Thanks to everyone who contributed to this.
I can only tell you it works for me. When the boiler is firing for heating (not water), the hvac_action turns to âheatâ.
Huh. Quick question: does your current state match the hvac_action?
Example: my nest has âcoolâ for state and âoffâ for hvac_action. Is state supposed to be one of the HVAC modes or is it supposed to be on/off?
My UK Nest doesnât support cooling (as far as I know), so State says heat and hvac_action says off or heat.
I think hvac_action will be one of the hvac_modes.
hvac_modes is the list of modes the thermostat has available and the state of the thermostat is which of those modes is the thermostat currently set to: heat, cool, off. hvac_action is what is the thermostat currently doing.
Furnace only:
state: [ heat | off ]
hvac_modes: 'heat, off'
hvac_action: [ heating | off ]
A/C only:
state: [ cool | off ]
hvac_modes: 'cool, off'
havc_action: [ cooling | off ]
Combined:
state: [ heat | cool | off ]
havc_modes: 'heat, cool, off'
hvac_action: [ heating | cooling | off ]
So what is the state? Does it match the hvac_action or is it on/off
The thermostat state is set to one of the hvac_modes to indicate which mode the thermostat is set to.
Thank you! Time to check the code against my logs: thereâs got to be an explanation.
@dbrunt - thanks, I stand corrected, I was going from memory. I assume from this you equate hvac_mode (singular) with entity state, because my hvac_modes (plural) is âoff, heatâ. My hvac_action is âoffâ or âheatingâ.
My bad! Not enough coffee yet today. Iâve edited my posts aboveâŚ