Skip to content

Commit

Permalink
Tweak our ROYGBIV colors to not pull more than half an amp
Browse files Browse the repository at this point in the history
  • Loading branch information
obra committed Mar 20, 2017
1 parent 245d52b commit 14666f8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Model01-Firmware.ino
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ const Key keymaps[][ROWS][COLS] PROGMEM = {

};

static LEDSolidColor solidRed (60, 0, 0);
static LEDSolidColor solidOrange (60, 20, 0);
static LEDSolidColor solidYellow (40, 35, 0);
static LEDSolidColor solidGreen (0, 100, 0);
static LEDSolidColor solidBlue (0, 15, 100);
static LEDSolidColor solidIndigo (0, 0, 100);
static LEDSolidColor solidViolet (70, 0, 60);
static LEDSolidColor solidRed (160, 0, 0);
static LEDSolidColor solidOrange (140, 70, 0);
static LEDSolidColor solidYellow (130, 100, 0);
static LEDSolidColor solidGreen (0, 160, 0);
static LEDSolidColor solidBlue (0, 70, 130);
static LEDSolidColor solidIndigo (0, 0, 170);
static LEDSolidColor solidViolet (130, 0, 120);

const macro_t *macroAction(uint8_t macroIndex, uint8_t keyState) {
if (macroIndex == TOGGLENUMLOCK && key_toggled_on(keyState)) {
Expand Down

0 comments on commit 14666f8

Please sign in to comment.