Firmware for HexBoard MIDI controller
| -rw-r--r-- | HexBoard_V1.1.ino | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/HexBoard_V1.1.ino b/HexBoard_V1.1.ino index f76f38d..7741d76 100644 --- a/HexBoard_V1.1.ino +++ b/HexBoard_V1.1.ino @@ -357,16 +357,19 @@ void commandPress(byte command) { midiVelocity = 100; setCMD_LEDs(); strip.setPixelColor(cmdBtn1, strip.ColorHSV(65536 / 12, 255, defaultBrightness)); + strip.setBrightness(255); // Set BRIGHTNESS (max = 255) } if (command == CMDB_2) { midiVelocity = 60; setCMD_LEDs(); strip.setPixelColor(cmdBtn2, strip.ColorHSV(65536 / 3, 255, defaultBrightness)); + strip.setBrightness(127); // Set BRIGHTNESS (max = 255) } if (command == CMDB_3) { midiVelocity = 20; setCMD_LEDs(); strip.setPixelColor(cmdBtn3, strip.ColorHSV(65536 / 2, 255, defaultBrightness)); + strip.setBrightness(63); // Set BRIGHTNESS (max = 255) } if (command == CMDB_4) { } |