mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2025-12-19 22:24:15 +01:00
implementes #539
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
import colorsys
|
import colorsys
|
||||||
import math
|
import math
|
||||||
|
import apis
|
||||||
|
|
||||||
def scale(val, src, dst):
|
def scale(val, src, dst):
|
||||||
"""
|
"""
|
||||||
@@ -37,6 +38,8 @@ def rgb_brightness(rgb_color, brightness):
|
|||||||
return [int(red), int(green), int(blue)]
|
return [int(red), int(green), int(blue)]
|
||||||
|
|
||||||
def rgb_dec565(rgb_color):
|
def rgb_dec565(rgb_color):
|
||||||
|
if type(rgb_color) is str:
|
||||||
|
rgb_color = apis.ha_api.render_template(rgb_color)
|
||||||
red = rgb_color[0]
|
red = rgb_color[0]
|
||||||
green = rgb_color[1]
|
green = rgb_color[1]
|
||||||
blue = rgb_color[2]
|
blue = rgb_color[2]
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ class LuiPagesGen(object):
|
|||||||
|
|
||||||
def get_entity_color(self, entity, ha_type=None, overwrite=None):
|
def get_entity_color(self, entity, ha_type=None, overwrite=None):
|
||||||
if overwrite is not None:
|
if overwrite is not None:
|
||||||
if type(overwrite) is list:
|
if type(overwrite) in [str, list]:
|
||||||
return rgb_dec565(overwrite)
|
return rgb_dec565(overwrite)
|
||||||
if type(overwrite) is dict:
|
if type(overwrite) is dict:
|
||||||
state = entity.state
|
state = entity.state
|
||||||
|
|||||||
@@ -45,6 +45,11 @@ It is also possible to configure different color overwrites per state:
|
|||||||
"on": [255,0,0]
|
"on": [255,0,0]
|
||||||
"off": [0,0,255]
|
"off": [0,0,255]
|
||||||
```
|
```
|
||||||
|
Dynamic color overwrites using homeassistant templates:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
color: '{{iif(states("binary_sensor.test")=="on", "[0,255,0]", "[255,165,0]")}}'
|
||||||
|
```
|
||||||
|
|
||||||
It is also possible to use text instead of icons with `text:X`
|
It is also possible to use text instead of icons with `text:X`
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user