diff --git a/source/_docs/configuration/customizing-devices.markdown b/source/_docs/configuration/customizing-devices.markdown index b7183f87f59..a5d6074e7ec 100644 --- a/source/_docs/configuration/customizing-devices.markdown +++ b/source/_docs/configuration/customizing-devices.markdown @@ -41,23 +41,31 @@ homeassistant: customize_domain: light: icon: mdi:home + automation: + initial_state: 'on' # Customize entities matching a pattern customize_glob: "light.kitchen_*": icon: mdi:description - + "scene.month_*_colors": + hidden: true + emulated_hue: false + homebridge_hidden: true ``` ### {% linkable_title Possible values %} | Attribute | Description | | --------- | ----------- | -| `friendly_name` | Name of the entity +| `friendly_name` | Name of the entity. | `hidden` | Set to `true` to hide the entity. -| `entity_picture` | Url to use as picture for entity +| `homebridge_hidden` | Set to `true` to hide the entity from `HomeBridge`. +| `emulated_hue` | Set to `false` to hide the entity from emulated_hue. +| `entity_picture` | Url to use as picture for entity. | `icon` | Any icon from [MaterialDesignIcons.com](http://MaterialDesignIcons.com). Prefix name with `mdi:`, ie `mdi:home`. | `assumed_state` | 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. | `device_class` | Sets the class of the device, changing the device state and icon that is displayed on the UI (see below). +| `initial_state` | Sets the initial state for automations. `on` or `off`. ### {% linkable_title Device Class %}