You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the sensor returns "Home" if at home and not the name of the Home.
What can I change / or can be changed to use the name of the home instead as state?
I tried to set it hard here
if self.hass.states.get(self._origin_entity_id) is not None:
zone_check = self.hass.states.get(self._origin_entity_id).state
else:
zone_check = 'not_home'
# Do not update location if zone is still the same and defined (not not_home)
if zone_check == self._zone_check_current and zone_check != 'not_home':
-> if zone_check == 'home':
-> self._state = 'Zu Hause'
return
self._zone_check_current = zone_check
because I thought this is the place I can tweak it, but I can't.
Any ideas or advice or plans to take the home name instead of "Home"?
The text was updated successfully, but these errors were encountered:
emufan
changed the title
Quick and Dirty Translation
Question/FR: Quick and Dirty Translation
Nov 23, 2023
I don't use this component anymore due to migrating over to the HA app but when I get some I'll take a look at getting it to work with "home" addresses in various languages.
I don't use this component anymore due to migrating over to the HA app
What does it mean? Has HA a (for me unknown) geocoding service as well? I need/use it to get the address from different tracker sensors.
when I get some I'll take a look at getting it to work with "home" addresses in various languages.
Great. If you have a hint where you set "home" to the sensor, so that I can quick&dirty overwrite it (as my try above), I would be very happy. Thought I found the right line, but as said it isn't working.
Currently the sensor returns "Home" if at home and not the name of the Home.
What can I change / or can be changed to use the name of the home instead as state?
I tried to set it hard here
because I thought this is the place I can tweak it, but I can't.
Any ideas or advice or plans to take the home name instead of "Home"?
The text was updated successfully, but these errors were encountered: