[APP][Pro] Home Assistant - Community App

New test version 1.0.1:

  • Flow action added for lights to set a relative light temperature (+ or - a percentage value).
    grafik

  • Added possibility to use deep JSON paths in Compound definition.
    Example: a weather entity with an array of forecast attributes:


    This entity has an attribute “forecast” of type array. You can access the lines using the index (starting with 0).

weather:
  name: Wetter
  capabilities:
    measure_temperature.current: weather.dwd_weather_mainz_zdf.temperature
    measure_temperature.0d: weather.dwd_weather_mainz_zdf.forecast[0].temperature
    measure_temperature.1d: weather.dwd_weather_mainz_zdf.forecast[1].temperature
    measure_temperature.2d: weather.dwd_weather_mainz_zdf.forecast[2].temperature
  capabilitiesTitles:
    measure_temperature.current: "Temp. aktuell"
    measure_temperature.0d: "Temp. Vorh."
    measure_temperature.1d: "Temp. Vorh. +1d"
    measure_temperature.2d: "Temp. Vorh. +2d"
5 Likes