Sean Hodgins
Published © CC BY-NC-SA

DIY RGB Cherry MX Macro Board

An 8-button mechanical switch macro keypad with RGB lighting!

IntermediateFull instructions provided1 hour4,118
DIY RGB Cherry MX Macro Board

Things used in this project

Hardware components

HCC Module
×1
Cherry MX Switch
×8
APA102-202 LED
×8

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Custom parts and enclosures

Thingiverse

https://www.thingiverse.com/thing:3020834

Schematics

HCC Mod Repository

Located in the "Demo Boards" is the Cherry MX Board

Code

TEST LED Firmware

C/C++
Test the LEDs are working.
#include "Keyboard.h"

#include <Adafruit_DotStar.h>
#include <SPI.h>         // COMMENT OUT THIS LINE FOR GEMMA OR TRINKET

#define NUMPIXELS 8 // Number of LEDs in strip

//LED CONTROL PINS
#define DATAPIN    32
#define CLOCKPIN   33

int button[8] = {13, 12, 9, 5, 11, 10, 6, 4}; //Top row left is Button 1, Bottom row right is Button 2
int buttonState[8] = {0, 0, 0, 0, 0, 0, 0, 0};

int bFlag = 9;

int LED[8] = {3, 2, 1, 0, 4, 5, 6, 7}; //Top row left is LED 1, Bottom row right is LED 8

//KEYBOARD BUTTONS, ADD MORE IF YOU LIKE
char ctrlKey = KEY_LEFT_CTRL;
char winKey = KEY_LEFT_GUI;
char shiftKey = KEY_LEFT_SHIFT;


Adafruit_DotStar strip = Adafruit_DotStar(
                           NUMPIXELS, DATAPIN, CLOCKPIN, DOTSTAR_BRG);


void setup() {


  strip.begin(); 
  strip.show();  // Turn all LEDs off ASAP

  for (int x = 0; x < 8; x++) {
    pinMode(button[x], INPUT_PULLUP);
    strip.setPixelColor(LED[x], strip.Color(75, 75, 75));

  }

}


void loop() {
     rainbowCycle(2);
}


void rainbowCycle(uint8_t wait) {
  uint16_t i, j;

  for(j=0; j<256*5; j++) { // 5 cycles of all colors on wheel
    for(i=0; i< strip.numPixels(); i++) {
      strip.setPixelColor(i, Wheel(((i * 256 / strip.numPixels()) + j) & 255));
    }
    strip.show();
    delay(wait);
  }
}

uint32_t Wheel(byte WheelPos) {
  WheelPos = 255 - WheelPos;
  if(WheelPos < 85) {
    return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
  }
  if(WheelPos < 170) {
    WheelPos -= 85;
    return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
  }
  WheelPos -= 170;
  return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
}

Macro KeyPad Firmware

C/C++
Explained well in video.
#include "Keyboard.h"

#include <Adafruit_DotStar.h>
#include <SPI.h>         // COMMENT OUT THIS LINE FOR GEMMA OR TRINKET

#define NUMPIXELS 8 // Number of LEDs in strip

//LED CONTROL PINS
#define DATAPIN    32
#define CLOCKPIN   33

int button[8] = {13, 12, 9, 5, 11, 10, 6, 4}; //Top row left is Button 1, Bottom row right is Button 2
int buttonState[8] = {0, 0, 0, 0, 0, 0, 0, 0};

int bFlag = 9;

int LED[8] = {3, 2, 1, 0, 4, 5, 6, 7}; //Top row left is LED 1, Bottom row right is LED 8

//KEYBOARD BUTTONS, ADD MORE IF YOU LIKE
char ctrlKey = KEY_LEFT_CTRL;
char winKey = KEY_LEFT_GUI;
char shiftKey = KEY_LEFT_SHIFT;


Adafruit_DotStar strip = Adafruit_DotStar(
                           NUMPIXELS, DATAPIN, CLOCKPIN, DOTSTAR_BRG);


void setup() {


  strip.begin(); 
  strip.show();  // Turn all LEDs off ASAP

  for (int x = 0; x < 8; x++) {
    pinMode(button[x], INPUT_PULLUP);
    strip.setPixelColor(LED[x], strip.Color(75, 75, 75));

  }

  strip.show();
  
}


void loop() {
    for (int x = 0; x < 8; x++) {
      strip.setPixelColor(LED[x], strip.Color(255, 255, 255));
    }
    if (digitalRead(button[0]) == LOW) {
      Keyboard.press(ctrlKey);
      Keyboard.press('c');
      strip.setPixelColor(LED[0], strip.Color(0, 150, 0));
      strip.show();
      delay(100);
      Keyboard.releaseAll();
    }
    if (digitalRead(button[1]) == LOW) {
    Keyboard.press(ctrlKey);
      Keyboard.press('v');
      strip.setPixelColor(LED[1], strip.Color(0, 150, 0));
      strip.show();
      delay(100);
      Keyboard.releaseAll();
    }
    if (digitalRead(button[2]) == LOW) {
    Keyboard.press(ctrlKey);
      Keyboard.press('z');
      strip.setPixelColor(LED[2], strip.Color(0, 150, 0));
      strip.show();
      delay(100);
      Keyboard.releaseAll();
    }
    if (digitalRead(button[3]) == LOW) {
    Keyboard.press(ctrlKey);
      Keyboard.press('y');
      strip.setPixelColor(LED[3], strip.Color(0, 150, 0));
      strip.show();
      delay(100);
      Keyboard.releaseAll();
    }
    if (digitalRead(button[4]) == LOW) {
    Keyboard.press(winKey);
      Keyboard.press('m');
      strip.setPixelColor(LED[4], strip.Color(0, 150, 0));
      strip.show();
      delay(100);
      Keyboard.releaseAll();
    }
    if (digitalRead(button[5]) == LOW) {
      strip.setPixelColor(LED[5], strip.Color(0, 150, 0));
      strip.show();
    }
    if (digitalRead(button[6]) == LOW) {
      strip.setPixelColor(LED[6], strip.Color(0, 150, 0));
      strip.show();
    }
    if (digitalRead(button[7]) == LOW) {
    strip.setPixelColor(LED[7], strip.Color(0, 150, 0) );
    strip.show();
    }
    
  strip.show();
  delay(100);                        // Pause 20 milliseconds (~50 FPS)

}


void rainbowCycle(uint8_t wait) {
  uint16_t i, j;

  for(j=0; j<256*5; j++) { // 5 cycles of all colors on wheel
    for(i=0; i< strip.numPixels(); i++) {
      strip.setPixelColor(i, Wheel(((i * 256 / strip.numPixels()) + j) & 255));
    }
    strip.show();
    delay(wait);
  }
}

uint32_t Wheel(byte WheelPos) {
  WheelPos = 255 - WheelPos;
  if(WheelPos < 85) {
    return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
  }
  if(WheelPos < 170) {
    WheelPos -= 85;
    return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
  }
  WheelPos -= 170;
  return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
}

Credits

Sean Hodgins

Sean Hodgins

22 projects • 94 followers
Just a maker who likes making.

Comments