|
@@ -35,11 +35,42 @@ void handleButtonLogic() {
|
|
|
delay(50);
|
|
|
|
|
|
} else if (modePressed) {
|
|
|
+ HandleModeButtonPress();
|
|
|
+ while (digitalRead(BUTTON_MODE) == LOW) {
|
|
|
+ //Wait for button up before continue
|
|
|
+ delay(BUTTON_HOLD_DELAY);
|
|
|
+ }
|
|
|
+ //Debounce
|
|
|
+ delay(50);
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
|
|
|
+//Mode button is pressed
|
|
|
+void HandleModeButtonPress() {
|
|
|
+ //Update the mode number
|
|
|
+ currentMode += 1;
|
|
|
+ if (currentMode > 3) {
|
|
|
+ currentMode = 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ //Current mode updated
|
|
|
+ //Reset the RGB values to default of each modes
|
|
|
+ if (currentMode == 0) {
|
|
|
+ Serial.println("Switched to White Balanced Mode");
|
|
|
+ loadWhiteModeDefault();
|
|
|
+ } else if (currentMode == 1) {
|
|
|
+ Serial.println("Switched to RGB Mode");
|
|
|
+ loadRGBModeDefault();
|
|
|
+ } else if (currentMode == 2) {
|
|
|
+ Serial.println("Switched to Color Palette Mode");
|
|
|
+ } else if (currentMode == 3) {
|
|
|
+ Serial.println("Switched to Preset Mode");
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
+//Color button is pressed
|
|
|
void HandleColorButtonPress() {
|
|
|
if (currentMode == 0) {
|
|
|
//White mode
|
|
@@ -52,6 +83,21 @@ void HandleColorButtonPress() {
|
|
|
//Set control LED to white
|
|
|
setControlLEDColor(MAX_CTRLBRIGHTNESS, MAX_CTRLBRIGHTNESS, MAX_CTRLBRIGHTNESS);
|
|
|
}
|
|
|
+ } else if (currentMode == 1) {
|
|
|
+ if (adjustingCatergory == 0) {
|
|
|
+ //Red -> Green
|
|
|
+ adjustingCatergory = 1;
|
|
|
+ setControlLEDColor(0, MAX_CTRLBRIGHTNESS, 0);
|
|
|
+ } else if (adjustingCatergory == 1) {
|
|
|
+ //Green -> Blue
|
|
|
+ adjustingCatergory = 2;
|
|
|
+ setControlLEDColor(0, 0, MAX_CTRLBRIGHTNESS);
|
|
|
+ } else if (adjustingCatergory == 2) {
|
|
|
+ //Blue -> Red
|
|
|
+ adjustingCatergory = 0;
|
|
|
+ //Set LED to yellow for brightness
|
|
|
+ setControlLEDColor(MAX_CTRLBRIGHTNESS, 0, 0);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -63,6 +109,7 @@ void HandleAddButtonPress() {
|
|
|
values[0] = values[0] + 100;
|
|
|
if (values[0] > 10000) {
|
|
|
values[0] = 10000;
|
|
|
+ blinkUpperLimit();
|
|
|
}
|
|
|
Serial.print("Updating color temperature to ");
|
|
|
Serial.println(values[0]);
|
|
@@ -70,11 +117,14 @@ void HandleAddButtonPress() {
|
|
|
values[1] += 1;
|
|
|
if (values[1] > MAX_BRIGHTNESS) {
|
|
|
values[1] = MAX_BRIGHTNESS;
|
|
|
+ blinkUpperLimit();
|
|
|
}
|
|
|
Serial.print("Updating brightness to ");
|
|
|
Serial.println(values[1]);
|
|
|
}
|
|
|
setColorTemperature(values[0], values[1]);
|
|
|
+ } else if (currentMode == 1) {
|
|
|
+ handleRGBModeAdd();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -86,6 +136,7 @@ void HandleMinusButtonPress() {
|
|
|
values[0] = values[0] - 100;
|
|
|
if (values[0] < 1500) {
|
|
|
values[0] = 1500;
|
|
|
+ blinkLowerLimit();
|
|
|
}
|
|
|
|
|
|
Serial.print("Updating color temperature to ");
|
|
@@ -94,10 +145,13 @@ void HandleMinusButtonPress() {
|
|
|
values[1] -= 1;
|
|
|
if (values[1] < 0) {
|
|
|
values[1] = 0;
|
|
|
+ blinkLowerLimit();
|
|
|
}
|
|
|
Serial.print("Updating brightness to ");
|
|
|
Serial.println(values[1]);
|
|
|
}
|
|
|
setColorTemperature(values[0], values[1]);
|
|
|
+ } else if (currentMode == 1) {
|
|
|
+ handleRGBModeMinus();
|
|
|
}
|
|
|
}
|