Browse Source

finalized local control code

Toby Chui 1 year ago
parent
commit
735c891dce
3 changed files with 3 additions and 2 deletions
  1. 1 0
      firmware/rgbfill/mod_presets.ino
  2. 1 1
      firmware/rgbfill/mode_rgb.ino
  3. 1 1
      firmware/rgbfill/rgbfill.ino

+ 1 - 0
firmware/rgbfill/mod_presets.ino

@@ -120,4 +120,5 @@ void renderColorPallete(int palleteID){
     
     //Update light color
     setLightColor(palleteRGB[0], palleteRGB[1], palleteRGB[2]);
+    delay(100);
 }

+ 1 - 1
firmware/rgbfill/mode_rgb.ino

@@ -15,7 +15,7 @@ void loadRGBModeDefault() {
 
   //Set current controlling to red
   setControlLEDColor(MAX_CTRLBRIGHTNESS, 0, 0);
-
+  
   //Set LED color to white
   setLightColor(values[0], values[1], values[2]);
 }

+ 1 - 1
firmware/rgbfill/rgbfill.ino

@@ -22,7 +22,7 @@
 #define BUTTON_MINUS D0
 
 #define BUTTON_AUTOINC_DELAY 300 //Delay before auto increments
-#define BUTTON_HOLD_DELAY 100 //Auto-increment delays
+#define BUTTON_HOLD_DELAY 50 //Auto-increment delays
 #define BUTTON_DEBOUNCE 50 //Naive debounce delay in ms
 #define MAX_BRIGHTNESS 256 //Make sure the battery you using can output the current required by LEDs
 #define MAX_CTRLBRIGHTNESS 32 //Max brightness for signaling LED (the one above the button)