Add section about default dashboards (#31696)

This commit is contained in:
c0ffeeca7 2024-03-01 13:22:48 +01:00 committed by GitHub
parent c9d4eb4d0d
commit 03a823eb11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 34 additions and 4 deletions

View File

@ -6,7 +6,7 @@
<ul class="divided sidebar-menu">
<li>{% active_link /dashboards/ Introduction %}</li>
<li>
{% active_link /dashboards/dashboards/ Multiple Dashboards %}
{% active_link /dashboards/dashboards/ Multiple dashboards %}
</li>
<li>
{% active_link /dashboards/views/ Views %}

View File

@ -5,16 +5,40 @@ description: "Multiple powerful and configurable dashboards in Home Assistant."
You can define multiple dashboards in Home Assistant. Each dashboard can be added to the sidebar. This makes it possible to create separate control dashboards for each individual part of your house.
You can manage your dashboards via the user interface. Go to {% my lovelace_dashboards title="**Settings** > **Dashboards**" %}. Here you can see all defined dashboards and create new ones.
You can manage your dashboards via the user interface. Go to {% my lovelace_dashboards title="**Settings** > **Dashboards**" %}. Here you can see some of the defined dashboards and create new ones.
<p class='img'>
<img src='/images/dashboards/dashboard-manage-01.png' alt='Screenshot of the dashboard list'>
Screenshot of the Dashboard list.
</p>
## Using YAML for the default dashboard
## Home Assistant default dashboards
To change the default dashboard, create a new file `ui-lovelace.yaml` in your configuration directory and add the following section to your `configuration.yaml` and restart Home Assistant:
Home Assistant ships with 5 predefined dashboards:
- Overview
- Energy
- Map
- Logbook
- History
Not all of predefined dashboards are listed under {% my lovelace_dashboards title="**Settings** > **Dashboards**" %}. **Map**, **Logbook**, and **History**, are powered by their respective integrations.
### Map panel
The predefined **Map** dashboard is powered by the [Map integration](/integrations/map/). If you see a [person](/integrations/person/) on the map, it means you have connected a device that allows [presence detection](/integrations/#presence-detection). This is the case for example if you have the [Home Assistant Companion App](https://companion.home-assistant.io/) on your phone and allowed location tracking.
### Logbook panel
The predefined **Logbook** dashboard is powered by the [Logbook integration](/integrations/logbook/). To control which events to show or filter out, refer to the documentation of the Logbook integration.
### History panel
The predefined **History** dashboard is powered by the [History integration](/integrations/logbook/). To learn about the data sources used and how to export data, refer to the documentation of the History integration.
## Using YAML for the Overview dashboard
To change the **Overview** dashboard, create a new file `ui-lovelace.yaml` in your configuration directory and add the following section to your `configuration.yaml` and restart Home Assistant:
```yaml
lovelace:
@ -197,3 +221,9 @@ views:
content: >
Welcome to your **dashboard**.
```
## Related topics
- [Logbook integration](/integrations/logbook/)
- [Map integration](/integrations/map/)
- [History integration](/integrations/history/)