Template Weather Provider
The template
integrations creates weather provider that combines integrations and an existing weather provider into a fused weather provider.
There are several powerful ways to use this integration, including localizing your weather provider information with local information from temperature, humidity, pressure sensors that you own.
Another use case could be using temperature and humidity from one weather plaform, with forecasts from a different one.
Configuration
To enable a Template Weather provider in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
weather:
- platform: template
name: "my very own weather station"
condition_template: "sunny"
temperature_template: "{{ states('sensor.temperature') | float}}"
humidity_template: "{{ states('sensor.humidity')| float }}"
forecast_template: "{{ states.weather.my_region.attributes.forecast }}"
Configuration Variables
An ID that uniquely identifies this weather entity. Set this to a unique value to allow customization through the UI.
The current weather condition.
The current temperature.
The current humidity.
The current air pressure.
The current wind speed.
The current wind bearing.
The current ozone level.
The current visibility.
Daily forecast data.
Suggest an edit to this page, or provide/view feedback for this page.