Remove color1 and color2, use colors array instead

This commit is contained in:
2025-11-30 23:08:43 +13:00
parent b864f166cb
commit 4d4b91e40d
2 changed files with 0 additions and 4 deletions

View File

@@ -15,8 +15,6 @@ class Settings(dict):
self["led_pin"] = 10 self["led_pin"] = 10
self["num_leds"] = 50 self["num_leds"] = 50
self["pattern"] = "on" self["pattern"] = "on"
self["color1"] = "#00ff00"
self["color2"] = "#ff0000"
self["delay"] = 100 self["delay"] = 100
self["brightness"] = 10 self["brightness"] = 10
self["color_order"] = "rgb" self["color_order"] = "rgb"

View File

@@ -67,8 +67,6 @@ class LEDConfigTool:
("color_order", "Color Order", "choice", ["rgb", "rbg", "grb", "gbr", "brg", "bgr"]), ("color_order", "Color Order", "choice", ["rgb", "rbg", "grb", "gbr", "brg", "bgr"]),
("name", "Device Name", "text"), ("name", "Device Name", "text"),
("pattern", "Pattern", "text"), ("pattern", "Pattern", "text"),
("color1", "Color 1", "color"),
("color2", "Color 2", "color"),
("delay", "Delay (ms)", "number"), ("delay", "Delay (ms)", "number"),
("brightness", "Brightness", "number"), ("brightness", "Brightness", "number"),
("n1", "N1", "number"), ("n1", "N1", "number"),