bokub
(Boris)
November 12, 2019, 10:56am
61
What about something like this ?
It will only change the brightness of your LED strip
type: entities
entities:
- type: 'custom:rgb-light-card'
entity: light.example_light # < Your LED strip here
colors:
- brightness: 0
icon_color: '#222'
- brightness: 128
icon_color: '#ff8'
- brightness: 255
icon_color: '#ffa'
bokub
(Boris)
November 21, 2019, 10:37am
62
Iāve released the version 1.3.0
of this card
You can now call scripts and scenes when clicking on icons, so you can set multiple lights on a single click
Documentation is available here:
1 Like
Anyone having issues with this in HACS?
The latest version shows red like this:
and it says āThis plugin is not added to your Lovelace resources.ā
But yet it works fine just as it has before.
I only noticed this after updating to the latest HACS, but I donāt really watch that closely so it may have been there before that.
seantibb
(Sean Tibbetts)
December 20, 2019, 1:59am
65
This got me closer than anything else! Thank you! My only issue now (Tuya bulb) is using the icons to change the colors. I loaded up, clicked on pink, got a pink light. Clicked on the other colors and no change. Any suggestions?
mekki
December 31, 2019, 4:06pm
66
Hello,
It would be cool if we can add the RGB colors at the bottom of this light card :
any idea of how we could do that ?
bokub
(Boris)
December 31, 2019, 4:33pm
67
seantibb:
Any suggestions?
Can you share your config if you still have this issue?
jimz011
(Jim)
December 31, 2019, 5:12pm
68
Just create a vertical stack:
first card: thermostat
second card rgb-card
Choose the correct justify settings and done.
If you need 2 thermostats next to each other and a rgb card below do the following:
Vertical stack
first card: horizontal-stack
thermostat 1
thermostat 2
second card: rgb-card
1 Like
bokub
(Boris)
January 3, 2020, 9:26am
69
You can use a vertical-stack , or a borderless vertical-stack , in which you include:
Your light cards
An āentitiesā card containing the RGB Light Card
Example:
type: 'custom:vertical-stack-in-card' # or 'vertical-stack'
cards:
# Your lights
- type: horizontal-stack
cards:
- type: light
entity: light.bedroom
- type: light
entity: light.office
# The RGB Light card
- type: entities
entities:
- type: 'custom:rgb-light-card'
entity: light.bedroom
colors:
- ...
- ...
2 Likes
sweup
(sweup)
January 5, 2020, 2:31pm
70
Is it possible to have āColor temperatureā circles, ie TrĆ„dfri / IKEA?
bokub
(Boris)
January 5, 2020, 3:40pm
71
Sure !
You can do something like that
type: entities
entities:
- type: 'custom:rgb-light-card'
entity: light.example_light
colors:
- color_temp: 160
icon_color: '#ffead9'
- color_temp: 350
icon_color: '#ffa859'
- color_temp: 550
icon_color: '#ff8000'
Iāll let you decide which values are the best suited for you, and which colors you want on your icons
2 Likes
mekki
January 5, 2020, 7:11pm
73
thanks a lot, working good.
how did you manage to get the last color icon ? is it a .png ?
bokub
(Boris)
January 6, 2020, 1:25pm
74
Yes ! Itās a .png
which is imported like this:
icon_color: center/100% url("/local/rainbow.png")
Here is the image:
Sam04
(Sam)
January 6, 2020, 9:19pm
76
thanks alot, great plugin!
would it be possible to add a overlay function for material design icons?
and what about a long press function for actions?
stban1983
(stban1983)
January 16, 2020, 6:37pm
77
Hi!
Very good card, but i have one problem with my Yeelight:
- rgb_color:
- 255
- 186
- 129
brightness: 255
With this configuration, i should have a white warm very bright, but when i click on the color icon, i got very low brightness. States og the light says that i am a 255 of brightnessā¦ but itās very dark.
Any ideas ?
bokub
(Boris)
January 17, 2020, 8:19am
78
Yeah, I have the same problem on my Yeelight, I created an issue on Home Assistant, but it seems like itās a Yeelight related problem
opened 05:08PM - 17 Oct 19 UTC
closed 11:33AM - 19 Oct 19 UTC
Home Assistant release with the issue: 0.100.1
Operating environment (Hass.io/Docker/Windows/etc.): Raspberry Pi w/ virtual env
Integration: Yeelight Bulb
Description of problem:
So I have a...
integration: yeelight
Donāt you have the same problem when you use the color wheel from the UI ?
One way to solve the problem is using color_temp
instead of rgb_color
, but youāll have less colors to choose fromā¦
stban1983
(stban1983)
January 17, 2020, 9:03am
79
ho so sadā¦ I think itās working with the color wheel. But i have same problem in HomeHabit app.
I recently plug an old yeelight bulb and it was working, then i update the firmware and brightness is broken nowā¦
Maybe we can post on Yeelight forum ?
geeked
(Boomer)
January 17, 2020, 2:14pm
80
This will be great for my sons Philips Hue Play light bar in his room. Thank you!