From f343f9119ee8d0d76dea0515b8645b1840b40c61 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 4 Mar 2020 00:11:13 -0800 Subject: [PATCH] Update demo docs (#12262) --- source/_integrations/demo.markdown | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/source/_integrations/demo.markdown b/source/_integrations/demo.markdown index 571b2598e2a9..996e65954b81 100644 --- a/source/_integrations/demo.markdown +++ b/source/_integrations/demo.markdown @@ -10,7 +10,7 @@ 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. +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/)but combined with your own real/functional platforms. Available demo platforms: @@ -39,7 +39,12 @@ To integrate a demo platform in Home Assistant, add the following section to you ```yaml # Example configuration.yaml entry -[component]: + +# To load all: +demo: + +# To load for a specific integration: +light: - platform: demo ```