diff --git a/TODO.txt b/TODO.txt index 072a70d13..d4143b316 100644 --- a/TODO.txt +++ b/TODO.txt @@ -9,4 +9,6 @@ implement button implement LED Control (NeoPixelBus?) -- vip implement HSB slider option implement default color on boot +change color submit from get to post, rewrite with args, requires no buffer +change color submit from rgb to hex diff --git a/wled00/wled00.ino b/wled00/wled00.ino index c8ff97b9c..6a8cd6788 100644 --- a/wled00/wled00.ino +++ b/wled00/wled00.ino @@ -7,7 +7,7 @@ #include #include -//NeoPixelBus strip = NeoPixelBus(pixelCount, 8, NEO_GRB | NEO_KHZ800); +NeoPixelBus strip(16); String clientssid = "Your_Network_Here"; String clientpass = "Dummy_Pass"; @@ -21,8 +21,6 @@ IPAddress staticip(0, 0, 0, 0); IPAddress staticgateway(0, 0, 0, 0); IPAddress staticsubnet(255, 255, 255, 0); -//boolean wasConnected = false; - byte col[3]; byte bri; byte hue, sat; @@ -500,11 +498,10 @@ void handleFileList() { void setLeds() { - /*for (int i=0; i