mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-29 22:36:50 +00:00
52 lines
1.9 KiB
Markdown
52 lines
1.9 KiB
Markdown
---
|
|
title: Demo
|
|
description: Instructions on how to use the Platform demos with Home Assistant.
|
|
logo: home-assistant.png
|
|
ha_category:
|
|
- Other
|
|
ha_release: 0.7
|
|
ha_quality_scale: internal
|
|
ha_codeowners:
|
|
- '@home-assistant/core'
|
|
---
|
|
|
|
The `demo` platform allows you to use integrations which are providing a demo of their implementation. The demo entities are dummies but show you how the actual platform looks like. This way you can run own demonstration instance like the online [Home Assistant demo](/demo/) or `hass --demo-mode` but combined with your own real/functional platforms.
|
|
|
|
Available demo platforms:
|
|
|
|
- [Air Quality](/integrations/air_quality/) (`air_quality`)
|
|
- [Alarm control panel](/integrations/alarm_control_panel/) (`alarm_control_panel`)
|
|
- [Binary sensor](/integrations/binary_sensor/) (`binary_sensor`)
|
|
- [Camera](/integrations/camera/) (`camera`)
|
|
- [Climate](/integrations/climate/) (`climate`)
|
|
- [Cover](/integrations/cover/) (`cover`)
|
|
- [Fan](/integrations/fan/) (`fan`)
|
|
- [Geolocation](/integrations/geo_location/) (`geo_location`)
|
|
- [Image Processing](/integrations/image_processing/) (`image_processing`)
|
|
- [Light](/integrations/light/) (`light`)
|
|
- [Lock](/integrations/lock/) (`lock`)
|
|
- [Mailbox](/integrations/mailbox/) (`mailbox`)
|
|
- [Media Player](/integrations/media_player/) (`media_player`)
|
|
- [Notification](/integrations/notify/) (`notify`)
|
|
- [Remote](/integrations/remote/) (`remote`)
|
|
- [Sensor](/integrations/sensor/) (`sensor`)
|
|
- [Switch](/integrations/switch/) (`switch`)
|
|
- [Text-to-speech](/integrations/tts/) (`tts`)
|
|
- [Weather](/integrations/weather/) (`weather`)
|
|
|
|
|
|
To integrate a demo platform in Home Assistant, add the following section to your `configuration.yaml` file:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
[component]:
|
|
- platform: demo
|
|
```
|
|
|
|
{% configuration %}
|
|
"[component]":
|
|
description: The name of the integration as stated in the listing above the configuration example.
|
|
required: true
|
|
type: string
|
|
{% endconfiguration %}
|