From acaad9b698e318129171f3899b10b1b148cc4a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=B8yer=20Iversen?= Date: Wed, 27 Apr 2016 15:58:42 +0200 Subject: [PATCH] Update customizing-devices.markdown (#429) --- source/getting-started/customizing-devices.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/getting-started/customizing-devices.markdown b/source/getting-started/customizing-devices.markdown index d7803014947..43caeed11a5 100644 --- a/source/getting-started/customizing-devices.markdown +++ b/source/getting-started/customizing-devices.markdown @@ -19,6 +19,9 @@ You may have to create the `www` directory yourself as it is not made automatica You can also use `icon` and refer to any icon from [MaterialDesignIcons.com](http://MaterialDesignIcons.com). +For switches with an assumed state two buttons are shown (turn off, turn on) instead of a switch. By setting `assumed_state` to `false` you will get the default switch icon. + + ```yaml # Example configuration.yaml entry homeassistant: @@ -37,6 +40,8 @@ homeassistant: switch.wemo_switch_2: friendly_name: Kitchen kettle icon: mdi:kettle + switch.rfxtrx_switch: + assumed_state: false ``` ### [Next step: Setting up presence detection »](/getting-started/presence-detection/)