Additional Values and examples. (#2953)

Added additional customize examples and values that I use in my config.
This commit is contained in:
Carlo Costanzo 2017-07-09 03:06:24 -04:00 committed by Fabian Affolter
parent 15da89597b
commit 4d2804f0a2

View File

@ -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 %}