mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-06-03 00:36:50 +00:00

* Fix configuration descriptions * Fix syntax * Minor changes * Other fixes * Update configuration description * Check syntax * Remove {% configuration %}
37 lines
845 B
Markdown
37 lines
845 B
Markdown
---
|
|
layout: page
|
|
title: "Weather Forecast Card"
|
|
sidebar_label: Weather Forecast
|
|
description: "The Weather card allows you a visual card to display the weather."
|
|
date: 2018-07-01 10:28 +00:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
The weather forecast is a card to display the weather. Very useful to include on interfaces that people display on the wall.
|
|
|
|
<p class='img'>
|
|
<img src='/images/lovelace/lovelace_weather.png' alt='Screenshot of the weather card'>
|
|
Screenshot of the weather card.
|
|
</p>
|
|
|
|
{% configuration %}
|
|
type:
|
|
required: true
|
|
description: weather-forecast
|
|
type: string
|
|
entity:
|
|
required: true
|
|
description: "The `entity_id` of the `weather` platform to use."
|
|
type: string
|
|
{% endconfiguration %}
|
|
|
|
{% linkable_title Example %}
|
|
|
|
```yaml
|
|
- type: weather-forecast
|
|
entity: weather.demo_weather_north
|
|
```
|