-
-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add image and light doc * add fan doc * add cover doc * add person doc * add template doc * add alarm doc * add link to readme * add emoji * add theme docs * add chip docs * add overview image * Update README.md * Update overview
- Loading branch information
Showing
37 changed files
with
303 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Alarm control panel card | ||
|
||
![Alarm light](../images/alarm-light.png) | ||
![Alarm dark](../images/alarm-dark.png) | ||
|
||
## Description | ||
|
||
A alarm control panel card allow you to control a alarm panel entity. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :------------ | :------ | :----------------------------- | :--------------------------------------- | | ||
| `entity` | string | Required | Alarm control panel entity | | ||
| `icon` | string | Optional | Custom icon | | ||
| `name` | string | Optional | Custom name | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `hide_state` | boolean | `false` | Hide the entity state | | ||
| `states` | list | `["armed_home", "armed_away"]` | List of arm states to display | | ||
| `tap_action` | action | `more-info` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `more-info` | Home assistant action to perform on hold | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Chips card | ||
|
||
## Description | ||
|
||
A chips card allow you to small information at the top of your dashboard | ||
|
||
### Action chip | ||
|
||
![Chip action light](../images/chip-action-light.png) | ||
![Chip action dark](../images/chip-action-dark.png) | ||
|
||
An action chip allow you to perform a Home Assistant action (navigate, call-service, etc...). | ||
|
||
### Back chip | ||
|
||
![Chip back light](../images/chip-back-light.png) | ||
![Chip back dark](../images/chip-back-dark.png) | ||
|
||
An action chip allow you to perform a back action. | ||
|
||
### Entity chip | ||
|
||
![Chip entity light](../images/chip-entity-light.png) | ||
![Chip entity dark](../images/chip-entity-dark.png) | ||
|
||
An entity chip allow you to display entity state. | ||
|
||
### Menu chip | ||
|
||
![Chip menu light](../images/chip-menu-light.png) | ||
![Chip menu dark](../images/chip-menu-dark.png) | ||
|
||
A menu chip allow you to open the drawer in mobile. | ||
|
||
### Template chip | ||
|
||
![Chip template light](../images/chip-template-light.png) | ||
![Chip template dark](../images/chip-template-dark.png) | ||
|
||
A template chip allow you to build custom chip using [templates](https://www.home-assistant.io/docs/configuration/templating/). | ||
|
||
### Weather chip | ||
|
||
![Chip weather light](../images/chip-weather-light.png) | ||
![Chip weather dark](../images/chip-weather-dark.png) | ||
|
||
A weather chip allow you to display the weather. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Cover card | ||
|
||
![Cover light](../images/cover-light.png) | ||
![Cover dark](../images/cover-dark.png) | ||
|
||
## Description | ||
|
||
A cover card allow you to control a cover entity. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :---------------------- | :------ | :---------- | :--------------------------------------------- | | ||
| `entity` | string | Required | Cover entity | | ||
| `icon` | string | Optional | Custom icon | | ||
| `name` | string | Optional | Custom name | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `hide_state` | boolean | `false` | Hide the entity state | | ||
| `show_buttons_control` | boolean | `false` | Show buttons to open, close and stop cover | | ||
| `show_position_control` | boolean | `false` | Show a slider to control position of the cover | | ||
| `tap_action` | action | `toggle` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `more-info` | Home assistant action to perform on hold | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Light card | ||
|
||
![Fan light](../images/fan-light.png) | ||
![Fan dark](../images/fan-dark.png) | ||
|
||
## Description | ||
|
||
A fan card allow you to control a fan entity. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :------------------------ | :------ | :---------- | :--------------------------------------- | | ||
| `entity` | string | Required | Fan entity | | ||
| `icon` | string | Optional | Custom icon | | ||
| `name` | string | Optional | Custom name | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `hide_state` | boolean | `false` | Hide the entity state | | ||
| `icon_animation` | boolean | `false` | Animate the icon when fan is `on` | | ||
| `show_percentage_control` | boolean | `false` | Show a slider to control speed | | ||
| `show_oscillate_control` | boolean | `false` | Show a button to control oscillation | | ||
| `tap_action` | action | `toggle` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `more-info` | Home assistant action to perform on hold | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Light card | ||
|
||
![Light light](../images/light-light.png) | ||
![Light dark](../images/light-dark.png) | ||
|
||
## Description | ||
|
||
A light card allow you to control a light entity. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :------------------------ | :------ | :---------- | :----------------------------------------- | | ||
| `entity` | string | Required | Light entity | | ||
| `icon` | string | Optional | Custom icon | | ||
| `name` | string | Optional | Custom name | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `hide_state` | boolean | `false` | Hide the entity state | | ||
| `show_brightness_control` | boolean | `false` | Show a slider to control brightness | | ||
| `show_color_temp_control` | boolean | `false` | Show a slider to control temperature color | | ||
| `tap_action` | action | `toggle` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `more-info` | Home assistant action to perform on hold | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Person card | ||
|
||
![Person light](../images/person-light.png) | ||
![Person dark](../images/person-dark.png) | ||
|
||
## Description | ||
|
||
A cover card allow you to control a person entity. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :------------------- | :------ | :---------- | :--------------------------------------------------- | | ||
| `entity` | string | Required | Person entity | | ||
| `icon` | string | Optional | Custom icon | | ||
| `name` | string | Optional | Custom name | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `hide_state` | boolean | `false` | Hide the entity state | | ||
| `use_entity_picture` | boolean | `false` | Use the picture of the person entity instead of icon | | ||
| `tap_action` | action | `more-info` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `more-info` | Home assistant action to perform on hold | | ||
|
||
entity: string; | ||
name?: string; | ||
icon?: string; | ||
use_entity_picture?: boolean; | ||
vertical?: boolean; | ||
hide_state?: boolean; | ||
tap_action?: ActionConfig; | ||
hold_action?: ActionConfig; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Sensor card | ||
|
||
![Sensor light](../images/sensor-light.png) | ||
![Sensor dark](../images/sensor-dark.png) | ||
|
||
## Description | ||
|
||
A sensor card allow you to control a sensor entity. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :--------------- | :------ | :-------------------------------------------------- | :--------------------------------------- | | ||
| `entity` | string | Required | Sensor entity | | ||
| `icon` | string | Optional | Custom icon | | ||
| `icon_color` | string | `blue` | Custom color for icon | | ||
| `name` | string | Optional | Custom name | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `primary_info` | boolean | `name` `state` | Info to show as primary info | | ||
| `secondary_info` | boolean | `name` `state` `last-changed` `last-updated` `none` | Info to show as secondary info | | ||
| `tap_action` | action | `more-info` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `more-info` | Home assistant action to perform on hold | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Template card | ||
|
||
![Template light](../images/template-light.png) | ||
![Template dark](../images/template-dark.png) | ||
|
||
## Description | ||
|
||
A template card allow you to build custom card. | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :------------ | :-------------- | :------- | :---------------------------------------------------------------------------------------------------------------------------------- | | ||
| `icon` | string | Optional | Icon to render. May contain [templates](https://www.home-assistant.io/docs/configuration/templating/). | | ||
| `icon_color` | string | Optional | Icon color to render. May contain [templates](https://www.home-assistant.io/docs/configuration/templating/). | | ||
| `primary` | string | Optional | Primary info to render. May contain [templates](https://www.home-assistant.io/docs/configuration/templating/). | | ||
| `secondary` | string | Optional | Secondary info to render. May contain [templates](https://www.home-assistant.io/docs/configuration/templating/). | | ||
| `vertical` | boolean | `false` | Vertical layout | | ||
| `hide_state` | boolean | `false` | Hide the entity state | | ||
| `tap_action` | action | `none` | Home assistant action to perform on tap | | ||
| `hold_action` | action | `none` | Home assistant action to perform on hold | | ||
| `entity_id` | `string` `list` | Optional | Only reacts to the state changes of these entities. This can be used if the automatic analysis fails to find all relevant entities. | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.