Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions source/_integrations/weather.template.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ weather:
condition_template: "sunny"
temperature_template: "{{ states('sensor.temperature') | float}}"
humidity_template: "{{ states('sensor.humidity')| float }}"
wind_bearing_template: "{{ state_attr('weather.home', 'wind_bearing') }}"
wind_speed_template: "{{ state_attr('weather.home', 'wind_speed') }}"
forecast_template: "{{ states.weather.my_region.attributes.forecast }}"
```

Expand All @@ -56,6 +58,14 @@ pressure_template:
description: The current air pressure.
required: false
type: template
visibility_template:
description: The current visibility.
required: false
type: template
wind_bearing_template:
description: The current wind direction.
required: false
type: template
wind_speed_template:
description: The current wind speed.
required: false
Expand Down