Button box

Copyright Claim

Button box

Boost
0
1
0

Print Profile(1)

All
X1 Carbon
P1S
P1P
X1
X1E
A1

0.16mm layer, 3 walls, 25% infill
0.16mm layer, 3 walls, 25% infill
Designer
5.1 h
1 plate

Boost
0
1
0
0
4
0
Released

Description

This is a Buttonbox with 12 Switches and a Arduino pro micro Atmega32U4.

 

https://amzn.eu/d/gm1DsS2

 

You have to change the Keybindings for your needs!

 

ArduinoCode:

 

#include <Keyboard.h>

#include <Keypad.h>


 

int ledPin = 10;


 

const byte ROWS = 4;

const byte COLS = 3;


 

char keys[ROWS][COLS] = {

{'a', 'e', 'i'},

{'b', 'f', 'j'},

{'c', 'g', 'k'},

{'d', 'h', 'l'},

};


 

byte rowPins[ROWS] = {6, 7, 8, 9};

byte colPins[COLS] = {15, 14, 16};


 

Keypad keypad = Keypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS );


 

void setup() {

Keyboard.begin();

}


 

void loop() {

analogWrite(ledPin, 250);

char key = keypad.getKey();


 

if (key) {

switch (key) {

case 'a': // Ship POWER

Keyboard.press('u');

break;

case 'b': // Ship Engin

Keyboard.press('i');

break;

case 'c': // Lights EXT

Keyboard.press('l');

break;

//case 'd': // Lights int

// Keyboard.press('a');

//break;

case 'e': // Lock ext

Keyboard.press(KEY_LEFT_CTRL);

Keyboard.press('z');

break;

case 'f': // Lock int

Keyboard.press(KEY_LEFT_CTRL);

Keyboard.press('y');

break;

case 'g': // DPLY RMP

Keyboard.press(KEY_LEFT_GUI);

Keyboard.press('t');

break;

case 'h': // DPLY GEAR

Keyboard.press('n');

break;

case 'i': //Landing REQ

Keyboard.press(KEY_LEFT_ALT);

Keyboard.press('n');

break;

case 'j': //EXept

Keyboard.press('ü');

break;

case 'k': //ALLERT ON OFF

Keyboard.press(KEY_LEFT_ALT);

Keyboard.press(KEY_TAB);

break;

case 'l': //ALERT MUTE

Keyboard.press(KEY_LEFT_ALT);

Keyboard.press(KEY_ESC);

break;

}


 

delay(100);

Keyboard.releaseAll();

}

}


Documentation (1)

Other Files (1)
ButtBox_2b98b2cd-b5f0-43a2-8be5-f9a61c59b00a.pdf

Comment & Rating (0)

Please fill in your opinion
(0/5000)

No more