Compare commits
2 Commits
4fa09ba107
...
aad02f646b
| Author | SHA1 | Date | |
|---|---|---|---|
|
aad02f646b
|
|||
|
5e9d0efdca
|
@@ -6,7 +6,7 @@
|
|||||||
{% set time = time|default('day') %}
|
{% set time = time|default('day') %}
|
||||||
{% if method in ['text','dashboard'] %}
|
{% if method in ['text','dashboard'] %}
|
||||||
{% if type in ['current','full'] %}
|
{% if type in ['current','full'] %}
|
||||||
The current weather is {{ states('weather.iron_nerd_weather_station') | lower }}. It is {{ state_attr('weather.iron_nerd_weather_station','temperature') | round }} degrees outside and feels like {{ states('sensor.home_temperature_feels_like') | round }} degrees.
|
The current weather is {{ states('weather.iron_nerd_weather_station') | lower }}. It is {{ state_attr('weather.iron_nerd_weather_station','temperature') | round }} degrees outside and feels like {{ state_attr('weather.iron_nerd_weather_station','apparent_temperature') | round }} degrees.
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if type in ['forecast','full'] %}
|
{% if type in ['forecast','full'] %}
|
||||||
{% if 14400 <= ct <= 61200 %}
|
{% if 14400 <= ct <= 61200 %}
|
||||||
|
|||||||
@@ -34,9 +34,9 @@ template:
|
|||||||
{{ states(sensor) | float }}
|
{{ states(sensor) | float }}
|
||||||
apparent_temperature_template: >
|
apparent_temperature_template: >
|
||||||
{% set apparent_temps = [
|
{% set apparent_temps = [
|
||||||
states.sensor.home_tempest_feels_like,
|
|
||||||
states.sensor.home_temperature_feels_like,
|
|
||||||
states.sensor.pirateweather_apparent_temperature,
|
states.sensor.pirateweather_apparent_temperature,
|
||||||
|
states.sensor.home_temperature_feels_like,
|
||||||
|
states.sensor.home_tempest_feels_like,
|
||||||
states.sensor.stratton_ave_apparent_temperature
|
states.sensor.stratton_ave_apparent_temperature
|
||||||
] %}
|
] %}
|
||||||
{% set sensor = apparent_temps | selectattr('state','ne','unavailable') | selectattr('state','ne','unknown') | map(attribute='entity_id') | list | first %}
|
{% set sensor = apparent_temps | selectattr('state','ne','unavailable') | selectattr('state','ne','unknown') | map(attribute='entity_id') | list | first %}
|
||||||
@@ -148,9 +148,9 @@ template:
|
|||||||
{{ states(sensor) | float }}
|
{{ states(sensor) | float }}
|
||||||
apparent_temperature_template: >
|
apparent_temperature_template: >
|
||||||
{% set apparent_temps = [
|
{% set apparent_temps = [
|
||||||
states.sensor.home_tempest_feels_like,
|
|
||||||
states.sensor.home_temperature_feels_like,
|
|
||||||
states.sensor.pirateweather_apparent_temperature,
|
states.sensor.pirateweather_apparent_temperature,
|
||||||
|
states.sensor.home_temperature_feels_like,
|
||||||
|
states.sensor.home_tempest_feels_like,
|
||||||
states.sensor.stratton_ave_apparent_temperature
|
states.sensor.stratton_ave_apparent_temperature
|
||||||
] %}
|
] %}
|
||||||
{% set sensor = apparent_temps | selectattr('state','ne','unavailable') | selectattr('state','ne','unknown') | map(attribute='entity_id') | list | first %}
|
{% set sensor = apparent_temps | selectattr('state','ne','unavailable') | selectattr('state','ne','unknown') | map(attribute='entity_id') | list | first %}
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ ## HACS Components
|
|||||||
- [Union Pacific Big Boy Tracker](https://github.com/jheizer/up_4014_tracker)
|
- [Union Pacific Big Boy Tracker](https://github.com/jheizer/up_4014_tracker)
|
||||||
- [WeatherFlow Forecast](https://github.com/briis/weatherflow_forecast)
|
- [WeatherFlow Forecast](https://github.com/briis/weatherflow_forecast)
|
||||||
- [NWS SPC Outlook](https://github.com/sedward5/nws_spc_outlook)
|
- [NWS SPC Outlook](https://github.com/sedward5/nws_spc_outlook)
|
||||||
|
- [Music Assistant Queue Actions](https://github.com/droans/mass_queue)
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
@@ -113,6 +114,7 @@ ## HACS Lovelace Cards
|
|||||||
- [Versatile Thermostat UI Card](https://github.com/jmcollin78/versatile-thermostat-ui-card)
|
- [Versatile Thermostat UI Card](https://github.com/jmcollin78/versatile-thermostat-ui-card)
|
||||||
- [Gauge Card Pro](https://github.com/benjamin-dcs/gauge-card-pro)
|
- [Gauge Card Pro](https://github.com/benjamin-dcs/gauge-card-pro)
|
||||||
- [AdGuard Card](https://github.com/homeassistant-extras/adguard-card)
|
- [AdGuard Card](https://github.com/homeassistant-extras/adguard-card)
|
||||||
|
- [Music Assistant Player Card](https://github.com/droans/mass-player-card)
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user