meta data for this page
  •  

This is an old revision of the document!


appdaemon

Within release v0.15.0 the appdaemon data folder will migrate/move out of the Home Assistant configuration folder into a dedicated folder for this add-on.

To access new folder from VSCode , simply open /root folder. There will be folder /root/addon_configs.

CHANGELOG

weather sensors

Access as sensor:

wind = self.get_state("sensor.openweathermap_wind_speed")
temp = self.get_state("sensor.openweathermap_feels_like_temperature")

Access as weather:

WEATHER_SENSOR="weather.openweathermap"
temp = self.get_state(WEATHER_SENSOR, attribute="temperature")
tempa = self.get_state(WEATHER_SENSOR, attribute="apparent_temperature")
wind = self.get_state(WEATHER_SENSOR, attribute="wind_speed")