diff --git a/custom_components/ui_lovelace_minimalist/lovelace/ulm_templates/card_templates/cards/card_weather.yaml b/custom_components/ui_lovelace_minimalist/lovelace/ulm_templates/card_templates/cards/card_weather.yaml index 9f51362e3..f70434f6f 100644 --- a/custom_components/ui_lovelace_minimalist/lovelace/ulm_templates/card_templates/cards/card_weather.yaml +++ b/custom_components/ui_lovelace_minimalist/lovelace/ulm_templates/card_templates/cards/card_weather.yaml @@ -29,6 +29,7 @@ card_weather: primary_info: "[[[ return variables.ulm_card_weather_primary_info ]]]" secondary_info: "[[[ return variables.ulm_card_weather_secondary_info ]]]" backdrop: "[[[ return variables.ulm_card_weather_backdrop ]]]" + custom: "[[[ return variables.ulm_card_weather_custom ]]]" style: | ha-card { border-radius: 14px; diff --git a/docs/usage/cards/card_weather.md b/docs/usage/cards/card_weather.md index 6bbf47589..269dce877 100644 --- a/docs/usage/cards/card_weather.md +++ b/docs/usage/cards/card_weather.md @@ -22,6 +22,7 @@ This is a card based on simple-weather-card to show your weather. | ulm_card_weather_primary_info | `extrema` | | customize primary info. Set to `false` to disable. See [simple-weather-card](https://github.com/kalkih/simple-weather-card) for more information | | ulm_card_weather_secondary_info | `precipitation` | | customize secondary info. Set to `false` to disable. See [simple-weather-card](https://github.com/kalkih/simple-weather-card) for more information | | ulm_card_weather_backdrop | `false` | | add backdrop. See [simple-weather-card](https://github.com/kalkih/simple-weather-card) for more information | +| ulm_card_weather_custom | | | customize weather data. See [simple-weather-card](https://github.com/kalkih/simple-weather-card#custom-option-array) | ## Usage @@ -36,6 +37,8 @@ This is a card based on simple-weather-card to show your weather. - precipitation_probability ulm_card_weather_backdrop: fade: true + ulm_card_weather_custom: + - temp: sensor.temperature ``` ??? note "Template Code"