diff --git a/custom_components/chihiros/chihiros_led_control/device/wrgb2.py b/custom_components/chihiros/chihiros_led_control/device/wrgb2.py index f5932c3..632f07f 100644 --- a/custom_components/chihiros/chihiros_led_control/device/wrgb2.py +++ b/custom_components/chihiros/chihiros_led_control/device/wrgb2.py @@ -9,7 +9,6 @@ class WRGBII(BaseDevice): _model_name = "WRGB II" _model_codes = ["DYNWRGB", "DYNW30", "DYNW45", "DYNW60", "DYNW90", "DYNW12P"] _colors: dict[str, int] = { - "white": 3, "red": 0, "green": 1, "blue": 2, diff --git a/custom_components/chihiros/chihiros_led_control/device/wrgb2_slim.py b/custom_components/chihiros/chihiros_led_control/device/wrgb2_slim.py index eb31ba7..eef467d 100644 --- a/custom_components/chihiros/chihiros_led_control/device/wrgb2_slim.py +++ b/custom_components/chihiros/chihiros_led_control/device/wrgb2_slim.py @@ -9,7 +9,6 @@ class WRGBIISlim(BaseDevice): _model_name = "WRGB II Slim" _model_codes = ["DYSILN"] _colors: dict[str, int] = { - "white": 3, "red": 0, "green": 1, "blue": 2, diff --git a/custom_components/chihiros/manifest.json b/custom_components/chihiros/manifest.json index 82766a1..2e178e1 100644 --- a/custom_components/chihiros/manifest.json +++ b/custom_components/chihiros/manifest.json @@ -74,5 +74,5 @@ "requirements": [ "typer[all]==0.9.0" ], - "version": "0.6.1" + "version": "0.6.2" }