This dashboard card is providing light control. It is inspired by original Philips Hue app.
* intensity of color, shadow and other UI properties may be subject of change
type: custom:hue-like-light-card
entity: light.livingroom_color
Where livingroom_color is the entity id of some existing light.
For more options see Configuration or let yourself inspire in Examples of configuration
For the best experience use with hass-hue-icons. You can then use icons you are used to (from Philips Hue app).
Also this card will detect these icons installed and will use them prior to HA icons on some places (eg. brightness icon).
- Open HACS
- Go to "Frontend" section
- Click button with "+" icon
- Search for "Hue-Like Light Card"
- Install repository in HACS
- Refresh your browser
- Download
hue-like-light-card.js
file from the latest release - Save downloaded file somewhere in
<ha config>/www/
directory, e.g./config/www/custom_lovelace/hue-like-light-card.js
- Add saved file to Lovelace resources
url: /local/custom_lovelace/hue-like-light-card.js type: module
- Restart HA if you had to create
www
directory - Refresh your browser
Key | Type | Required | Since | Default | Description |
---|---|---|---|---|---|
entity |
string | yes* | 1.0.0 | - | Light entity name (eg. light.my_light ) |
entities |
list of strings | yes* | 1.0.0 | - | Multiple Light entity names |
title |
Text Template | no | 1.0.0 | Lights name | Card title |
description |
Text Template OR false |
no | 1.5.0 | automatic description | Description under the cards title. Placeholder %s can be used for showing number of lit lights. (eg. 'Is on: %s' )If set to false , description will not show. |
icon |
string | no | 1.0.0 | automatic icon | Card icon |
iconSize |
Icon size | no | 1.4.2 | original |
Card icon size |
showSwitch |
boolean | no | 1.2.1 | true |
When set to false , toggle switch will not be visible on card. This will give more space for title .(You can then use offClickAction and onClickAction to turn the lights on/off.) |
slider |
Slider type | no | 1.5.0 | default |
You can choose between diferent sliders or hide the slider. |
scenes |
list of Scenes | no | 1.1.0 | automatic detection | Scenes shown in Hue screen |
sceneOrder |
Scene Order | no | 1.5.0 | default |
Order of automatically detected scenes shown in Hue screen |
allowZero |
boolean | no | 1.0.0 | false |
If turned on, the slider can be moved to and from value 0. (turning off/on the the lights) |
defaultColor |
Color | no | 1.0.0 | 'warm' |
If selected light (or lights) doesn't have RGB mode, this value is used as color when the light is on. |
offColor |
ColorExtended | no | 1.0.0 | '#666' ( '#363636' for Hue Screen) |
The color of the pane, when all lights are off.
When set, also used in Hue Screen header (recommended setting also hueScreenBgColor accordingly).
|
hueScreenBgColor |
ColorExtended | no | 1.1.0 | '#171717' |
Background color of Hue Screen |
theme |
Installed theme name | no | 1.2.1 | Global HA theme | Will use specific theme for this single card. Other than the current selected globally in Home Assistant. |
disableOffShadow |
boolean | no | removed in 1.6.0 | false |
|
offShadow |
boolean | no | 1.3.0 | true |
If turned off, the card will not have inner shadow, when all lights are off. |
hueBorders |
boolean | no | 1.0.0 | true |
If turned off, the card will take border settings from current Home Assistant theme. |
resources |
Resources object | no | removed in 1.5.0 |
- | Replaced with integrated localization. |
style |
no | 1.4.0 | - | Support for the card-mod. | |
card_mod |
no | 1.4.0 | - | Support for the card-mod. | |
* At least one of this two must be filled in. Only entities of light domain are supported.
|
Key | Type | Required | Since | Default | Description |
---|---|---|---|---|---|
offClickAction |
Action | no | 1.1.0 | hue-screen |
Action when tile is clicked and all lights are off |
offClickData |
Action Data | no | 1.1.0 | - | Data for offClickAction |
onClickAction |
Action | no | 1.1.0 | hue-screen |
Action when tile is clicked and any of lights is on |
onClickData |
Action Data | no | 1.1.0 | - | Data for onClickAction |
offHoldAction |
Action | no | 1.6.0 | more-info |
Action when tile is pressed and all lights are off |
offHoldData |
Action Data | no | 1.6.0 | - | Data for offHoldAction |
onHoldAction |
Action | no | 1.6.0 | more-info |
Action when tile is pressed and any of lights is on |
onHoldData |
Action Data | no | 1.6.0 | - | Data for onHoldAction |
- If the card has one light entity attached, the icon is taken from entity.
- If the card has two lights
mdi:lightbulb-multiple
() is used. - If the card has three or more lights attached,
mdi:lightbulb-group
() is used.
When hass-hue-icons is installed (Since version 1.4.1):
- If the card has one light entity attached, the icon is taken from entity.
- If the card has two lights
hue:bulb-group-classic
() is used. - If the card has three lights attached,
hue:bulb-group-classic-3
() is used. - If the card has four or more lights attached,
hue:bulb-group-classic-4
() is used.
Since version 1.5.0
Based on number of lit lights in group, one of the 4 localized text is used (priority from top):
- 0 lights on
- ALL lights on
- 1 light on
- X/Y lights on
Since version 1.4.2
You can set size of the icon on hue card. Possibilities are:
big
- default icon size for versions <= 1.4.1 [value: 2.0]original
- default icon size [value: 1.41666667]small
- [value: 1.0]- any size you want (as number), examples:
0.5
= 12px1.0
= 24px1.5
= 36px2.0
= 48px- ... you got it
Since version 1.5.0
You can set slider to on of following options:
default
- will use default slidernone
- will hide the slider entirely (same state, as if the light does not have brightness control)mushroom
- will use Mushroom slider.
Mushroom must be installed for this option to work.
You can customize properties of mushroom slider using Card mod:
type: custom:hue-like-light-card-test
entity: light.office
slider: mushroom
theme: synthwave
style: |
.brightness-slider {
--mush-control-height: 42px;
--slider-color: white;
}
Since version 1.2.0
Localized since 1.4.0
The text supports showing entity states and attributes using double curly {{
brackets }}
.
When you insert entity name inside these brackets, entity status will be resolved and shown on given place. You can also show attribute on this entity.
type: custom:hue-like-light-card
title: TV - {{ light.tv_backlight }}
entity: light.tv_backlight
type: custom:hue-like-light-card
title: Kitchen - desk ({{ light.kitchen_desk1.brightness }}, {{light.kitchen_desk2.brightness}})
icon: mdi:wall-sconce-flat
offColor: '#363636'
entities:
- light.kitchen_desk1
- light.kitchen_desk2
When attribute is not available (or is empty) on entity, state of the entity will be shown instead.
Since version 1.5.0
type: custom:hue-like-light-card
title: Kitchen - desk
description: 'Lights on: %s ({{ light.kitchen_desk1.brightness }}, {{light.kitchen_desk2.brightness}})'
icon: mdi:wall-sconce-flat
offColor: '#363636'
entities:
- light.kitchen_desk1
- light.kitchen_desk2
The color can be defined in following ways:
- HEX:
'#fff'
,'#ffffff'
- HEX (with alpha):
'#fffa'
,'#ffffffaa'
(since version 1.4.0) - RGB:
'rgb(255,255,255)'
- RGBA:
'rgba(255,255,255,0.9)'
(since version 1.4.0) - WEB name:
'red'
,'salmon'
,'DarkSeaGreen'
, etc. - predefined:
'warm'
or'cold'
(in places where it does make sense)
Since version 1.2.0
Same as Color and can also be defined as
theme-color
When the card is clicked or pressed, something can happen. This can be configured through configuration.
type: custom:hue-like-light-card
...
offClickAction: turn-on
onClickAction: turn-off
offHoldAction: hue-screen
onHoldAction: hue-screen
Simple example to toggle lights on click.
Key | Possible data* | Data required | Since | What is happening |
---|---|---|---|---|
default |
yes | no | 1.1.0 |
Click: hue-screen Hold: more-info
|
none |
no | no | 1.1.0 | nothing |
turn-on |
no | no | 1.1.0 | turn on all lights |
turn-off |
no | no | 1.1.0 | turn off all lights |
more-info |
yes (entity ) |
no | 1.1.0 |
Shows system more-info dialog of one light. If any light is on, the first lit light will be selected. If all light are off, first light will be selected. When action data are used, any entity can be selected. |
scene |
yes (scene ) |
yes | 1.1.0 | activate selected scene |
hue-screen |
no (is using general scenes config) |
no | 1.1.0 | show Hue Screen |
Some actions can be configured using action data. Action data parameter can have name (as defined in table above) but it is not mandatory. Both styles are possible.
Action data without name:
type: custom:hue-like-light-card
...
onClickAction: more-info
onClickData: media_player.television
Action data with name:
type: custom:hue-like-light-card
...
offClickAction: scene
offClickData:
scene: scene.tv_citron
To enable switching between scenes, you can configure scenes, that can be activated in Hue Screen.
When no scenes are defined, scenes will be detected automatically.
Key | Type | Required | Since | Default | Description |
---|---|---|---|---|---|
entity |
string | yes | 1.1.0 | - | Scene entity name (eg. scene.tv_orange ) |
title |
string | no | 1.1.0 | Scene name* | Text on scene-button |
icon |
string | no | 1.1.0 | Icon of scene or 'mdi:palette' |
Icon on scene-button |
color |
Color | no | 1.1.0 | 'darkgoldenrod' |
Accent color current scene (shown on scene-button) |
activation |
Service name | no | 1.2.0 | 'scene.turn_on' |
Service called when scene is activated |
activationData |
object | no | 1.2.0 | - | Data for activation service.** |
* If the scene name begins with the same text as the card title is, this text is removed. | |||||
** Data always have entity_id parameter filled with entity name. You can change this value, when another value is supplied with this name.
|
type: custom:hue-like-light-card
...
scenes:
- scene.colors_bluered # if only entity is used, it can be written directly
- entity: scene.colors_cyan
title: My really favorite scene
color: cyan
- entity: scene.colors_blue_xmass
icon: mdi:tree-outline
- entity: scene.colors_white
color: white
icon: '' # when you don't want the icon, you can set it to empty string
For the best experience, please fill in both icon
and color
for all scenes.
Automatic scene detection will take place when no scenes are configured.
Scenes are detected from areas where lights are placed.
All scenes from all areas, where configured lights are placed, are taken (duplicates are removed).
Example:
entities:
- light.kitchen_main
=> 'Kitchen'
(area) => ['scene.kitchen_lit'
, 'scene.sink_lit'
]
- light.kitchen_corner
=> 'Kitchen'
(area) => ['scene.kitchen_lit'
, 'scene.sink_lit'
]
- light.room1
=> 'Living room'
(area) => ['scene.daylight'
, 'scene.nighttime'
, 'scene.reduced'
]
Scenes Detected: ['scene.kitchen_lit'
, 'scene.sink_lit'
, 'scene.daylight'
, 'scene.nighttime'
, 'scene.reduced'
]
Icon of detected scenes is taken from your Home Assistant settings. You can change the icon in entity settings.
Color of scene cannot be detected automatically, for the best experience fill scenes and respective colors manually.
Since version 1.5.0
Automatically detected scenes can be ordered with sceneOrder
option. Possible values are:
default
- order of areas depends on order of (first area) light entities.
- scenes inside areas have default order from Home assistant (alphabetically by scene id).
name-asc
- all scenes (across all areas) are ordered alphabetically by name a -> z
name-desc
- all scenes (across all areas) are ordered alphabetically by name z -> a
This order is not applied, when scenes are configured manually.
Note, that scenes are listed in two rows populated like this:
| 1 | 3 | 5 |
---------------------
| 2 | 4 | ...
type: custom:hue-like-light-card
...
scenes:
...
- entity: scene.colors_tokio
color: rgb(168, 25, 255)
icon: mdi:home-city
title: Tokio (dynamic)
activation: hue.activate_scene
activationData:
dynamic: true
brightness: 180
speed: 40
Hue screen will allow you to activate scenes, set light colors, temp and brightness (same functionality as official Hue App). Function of effects activation will come in the future.
type: custom:hue-like-light-card
title: TV colors
entities:
- light.tvlight_color1
- light.tvlight_color2
- light.tvlight_color3
- light.tvlight_color4
type: custom:hue-like-light-card
entity: light.livingroom_lamp
title: Reading light
icon: mdi:floor-lamp
type: custom:hue-like-light-card-test
title: '[ TV - {{ light.tv_backlight }} ] No switch = more space for title'
entity: light.tv_backlight
icon: mdi:television
showSwitch: false
offClickAction: turn-on
onClickAction: turn-off
offColor: rgb(28,28,28)
type: custom:hue-like-light-card
title: TV colors
entities:
- light.tvlight_color1
- light.tvlight_color2
- light.tvlight_color3
- light.tvlight_color4
offColor: theme-color
hueScreenBgColor: theme-color
offShadow: false
hueBorders: false
type: custom:hue-like-light-card
title: Living room
entity: light.livingroom_light
allowZero: true
type: custom:hue-like-light-card-test
title: Living room
icon: mdi:sofa
offColor: theme-color
hueScreenBgColor: theme-color
offShadow: false
hueBorders: false
allowZero: true
entities:
- light.livingroom_light
- light.livingroom_color
theme: synthwave
type: custom:hue-like-light-card
title: Bathroom
iconSize: big
entity: light.bathroom
defaultColor: 'rgb(230,230,255)'
type: custom:hue-like-light-card
entity: light.office
description: false
- reactions on sliding event instead of on change (value will be changed in the moment of sliding, not after)
- faster reactions between multiple cards (instant change of value on other cards)
- ui editor?