This repository has been archived on 2023-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
homeassistant-config/packages/climate/weather.yaml

37 lines
1.3 KiB
YAML
Raw Normal View History

2022-07-29 01:05:27 +00:00
## -------------------------------------------------------------------------------------------------##
2022-07-31 00:46:27 +00:00
## pirateweather
2022-07-29 01:05:27 +00:00
## -------------------------------------------------------------------------------------------------##
## -------------------------------------------------------------------------------------------------##
## Wetter-Plattform
## -------------------------------------------------------------------------------------------------##
weather:
2022-07-31 00:46:27 +00:00
- platform: pirateweather
api_key: !secret pirateweather
2022-07-29 01:05:27 +00:00
mode: daily
sun:
sensor:
- platform: template
sensors:
temperature_outside:
value_template: '{{ states.weather.home.attributes.temperature }}'
2022-08-02 12:03:44 +00:00
friendly_name: 'Outside Temperature'
2022-08-09 15:53:26 +00:00
unit_of_measurement: '°C'
temperature_today_max:
value_template: >
{{ state_attr('weather.pirateweather', 'forecast')[0].temperature }}
friendly_name: 'Max Temperature'
unit_of_measurement: '°C'
temperature_today_min:
value_template: >
{{ state_attr("weather.pirateweather", "forecast")[0].templow }}
friendly_name: 'Min Temperature'
unit_of_measurement: '°C'
temperature_today_condition:
value_template: >
{{ state_attr('weather.pirateweather', 'forecast')[0].condition }}
friendly_name: 'Condition'