mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2026-03-01 16:06:51 +01:00
fix brightness scale
This commit is contained in:
@@ -29,7 +29,7 @@ def pos_to_color(x, y):
|
||||
def rgb_brightness(rgb_color, brightness):
|
||||
# brightness values are in range 0-255
|
||||
# to make sure that the color is not completly lost we need to rescale this to 70-255
|
||||
brightness = int(scale(entity.attributes.brightness,(0,255),(70,255)))
|
||||
brightness = int(scale(brightness,(0,255),(70,255)))
|
||||
red = rgb_color[0]/255*brightness
|
||||
green = rgb_color[1]/255*brightness
|
||||
blue = rgb_color[2]/255*brightness
|
||||
|
||||
Reference in New Issue
Block a user