[Keyboard] Add Tripel keyboard (#12635)
parent
022e2748af
commit
7ee2b0f1ee
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "config_common.h"
|
||||
|
||||
/* USB Device descriptor parameter */
|
||||
#define VENDOR_ID 0x706A
|
||||
#define PRODUCT_ID 0x0001
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER Peej
|
||||
#define PRODUCT Tripel
|
||||
|
||||
/* key matrix size */
|
||||
#define MATRIX_ROWS 9
|
||||
#define MATRIX_COLS 8
|
||||
#define MATRIX_ROW_PINS { C6, D4, D0, B4, E6, D7, D1, D2, D3 }
|
||||
#define MATRIX_COL_PINS { B5, B6, B2, B3, B1, F7, F6, F5 }
|
||||
#define UNUSED_PINS { F4 }
|
||||
|
||||
/* COL2ROW, ROW2COL, or CUSTOM_MATRIX */
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
|
||||
#define DEBOUNCE 5
|
|
@ -0,0 +1,82 @@
|
|||
{
|
||||
"keyboard_name": "Tripel",
|
||||
"url": "https://github.com/peej/tripel-keyboard",
|
||||
"maintainer": "Peej",
|
||||
"width": 15,
|
||||
"height": 5,
|
||||
"layouts": {
|
||||
"LAYOUT_ortho_7u": {
|
||||
"layout": [
|
||||
{ "x":0, "y":0 },
|
||||
{ "x":1, "y":0 },
|
||||
{ "x":2, "y":0 },
|
||||
{ "x":3, "y":0 },
|
||||
{ "x":4, "y":0 },
|
||||
{ "x":5, "y":0 },
|
||||
{ "x":6, "y":0 },
|
||||
{ "x":7, "y":0 },
|
||||
{ "x":8, "y":0 },
|
||||
{ "x":9, "y":0 },
|
||||
{ "x":10, "y":0 },
|
||||
{ "x":11, "y":0 },
|
||||
{ "x":12, "y":0 },
|
||||
{ "x":13, "y":0 },
|
||||
{ "x":14, "y":0 },
|
||||
{ "x":0, "y":1 },
|
||||
{ "x":1, "y":1 },
|
||||
{ "x":2, "y":1 },
|
||||
{ "x":3, "y":1 },
|
||||
{ "x":4, "y":1 },
|
||||
{ "x":5, "y":1 },
|
||||
{ "x":6, "y":1 },
|
||||
{ "x":7, "y":1 },
|
||||
{ "x":8, "y":1 },
|
||||
{ "x":9, "y":1 },
|
||||
{ "x":10, "y":1 },
|
||||
{ "x":11, "y":1 },
|
||||
{ "x":12, "y":1 },
|
||||
{ "x":13, "y":1 },
|
||||
{ "x":14, "y":1 },
|
||||
{ "x":0, "y":2 },
|
||||
{ "x":1, "y":2 },
|
||||
{ "x":2, "y":2 },
|
||||
{ "x":3, "y":2 },
|
||||
{ "x":4, "y":2 },
|
||||
{ "x":5, "y":2 },
|
||||
{ "x":6, "y":2 },
|
||||
{ "x":7, "y":2 },
|
||||
{ "x":8, "y":2 },
|
||||
{ "x":9, "y":2 },
|
||||
{ "x":10, "y":2 },
|
||||
{ "x":11, "y":2 },
|
||||
{ "x":12, "y":2 },
|
||||
{ "x":13, "y":2 },
|
||||
{ "x":14, "y":2 },
|
||||
{ "x":0, "y":3 },
|
||||
{ "x":1, "y":3 },
|
||||
{ "x":2, "y":3 },
|
||||
{ "x":3, "y":3 },
|
||||
{ "x":4, "y":3 },
|
||||
{ "x":5, "y":3 },
|
||||
{ "x":6, "y":3 },
|
||||
{ "x":7, "y":3 },
|
||||
{ "x":8, "y":3 },
|
||||
{ "x":9, "y":3 },
|
||||
{ "x":10, "y":3 },
|
||||
{ "x":11, "y":3 },
|
||||
{ "x":12, "y":3 },
|
||||
{ "x":13, "y":3 },
|
||||
{ "x":14, "y":3 },
|
||||
{ "x":0, "y":4 },
|
||||
{ "x":1, "y":4 },
|
||||
{ "x":2, "y":4 },
|
||||
{ "x":3, "y":4 },
|
||||
{ "x":7, "y":4, "w":7 },
|
||||
{ "x":11, "y":4 },
|
||||
{ "x":12, "y":4 },
|
||||
{ "x":13, "y":4 },
|
||||
{ "x":14, "y":4 }
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
// Layer shorthand
|
||||
enum layer {
|
||||
_BASE,
|
||||
_FN,
|
||||
};
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
/*
|
||||
* ,-----------------------------------------------------------------------------------------------------------------------.
|
||||
* | Gesc | 1 | 2 | 3 | 4 | 5 | - | Num | = | 6 | 7 | 8 | 9 | 0 | Bksp |
|
||||
* |-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------|
|
||||
* | Tab | Q | W | E | R | T | 7 | 8 | 9 | Y | U | I | O | P | Del |
|
||||
* |-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------|
|
||||
* | Ctrl | A | S | D | F | G | 4 | 5 | 6 | H | J | K | L | ; | ' |
|
||||
* |-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------|
|
||||
* | Shift | Z | X | C | V | B | 1 | 2 | 3 | N | M | , | . | / | Enter |
|
||||
* |-------+-------+---------------------------------------------------------------------------------------+-------+-------|
|
||||
* | Ctrl | Fn | Alt | Cmd | Space | Left | Down | Up | Right |
|
||||
* `-----------------------------------------------------------------------------------------------------------------------'
|
||||
*/
|
||||
[_BASE] = LAYOUT_ortho_7u(
|
||||
KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_NLCK, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
|
||||
KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
|
||||
KC_LCTL, MO(_FN), KC_LALT, KC_LGUI, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
|
||||
),
|
||||
|
||||
[_FN] = LAYOUT_ortho_7u(
|
||||
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F11, KC_F12, KC_F13, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_DEL,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
};
|
|
@ -0,0 +1,50 @@
|
|||
/* Copyright 2021 Paul James
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include QMK_KEYBOARD_H
|
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
|
||||
[0] = LAYOUT_ortho_7u(
|
||||
KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_MINS, KC_NLCK, KC_EQL, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
|
||||
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_P7, KC_P8, KC_P9, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL,
|
||||
KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_P4, KC_P5, KC_P6, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_P1, KC_P2, KC_P3, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT,
|
||||
KC_LCTL, MO(1), KC_LALT, KC_LGUI, KC_SPC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
|
||||
),
|
||||
[1] = LAYOUT_ortho_7u(
|
||||
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F11, KC_F12, KC_F13, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_DEL,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LBRC, KC_RBRC, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
[2] = LAYOUT_ortho_7u(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
),
|
||||
[3] = LAYOUT_ortho_7u(
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
||||
_______, _______, _______, _______, _______, _______, _______, _______, _______
|
||||
)
|
||||
|
||||
};
|
|
@ -0,0 +1 @@
|
|||
VIA_ENABLE = yes
|
|
@ -0,0 +1,38 @@
|
|||
/* Copyright 2021 Paul James
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
#define LAYOUT_ortho_7u( \
|
||||
l11, l12, l13, l14, l15, m11, m12, m13, m14, m15, r11, r12, r13, r14, r15, \
|
||||
l21, l22, l23, l24, l25, m21, m22, m23, m24, m25, r21, r22, r23, r24, r25, \
|
||||
l31, l32, l33, l34, l35, m31, m32, m33, m34, m35, r31, r32, r33, r34, r35, \
|
||||
l41, l42, l43, l44, l45, m41, m42, m43, m44, m45, r41, r42, r43, r44, r45, \
|
||||
l51, l52, l53, l54, m53, r52, r53, r54, r51 \
|
||||
) \
|
||||
{ \
|
||||
{ r11, r12, r13, r14, r15, r25, r35, r45 }, \
|
||||
{ r21, r22, r23, r24, r34, r44, r53, r54 }, \
|
||||
{ r31, r32, r33, r43, r42, r41, r51, r52 }, \
|
||||
{ l11, l12, l13, l14, l15, l25, l35, l45 }, \
|
||||
{ l21, l22, l23, l24, l34, l44, l53, l54 }, \
|
||||
{ l31, l32, l33, l43, l42, l41, l51, l52 }, \
|
||||
{ m11, m12, m13, m14, m15, m25, m35, m45 }, \
|
||||
{ m21, m22, m23, m24, m34, m44, m53, KC_NO }, \
|
||||
{ m31, m32, m33, m43, m42, m41, KC_NO, KC_NO } \
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
# Tripel
|
||||
## Sub-100x100mm modula 60% ortholinear 7u PCB
|
||||
|
||||
![tripel](https://github.com/peej/tripel-keyboard/raw/master/images/3pcbs.jpg)
|
||||
|
||||
15x5 ortholinear PCB for 60% tray mount cases using only prototype sized PCBs.
|
||||
|
||||
This revision is for when the Pro-Micro is mounted on the left most PCB.
|
||||
|
||||
* Keyboard Maintainer: [Paul James](https://github.com/peej)
|
||||
* Hardware Supported: Pro-Micro [PCB](https://github.com/peej/tripel-keyboard)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make peej/tripel/left:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make peej/tripel/left:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
|
@ -0,0 +1 @@
|
|||
# This file intentionally left blank
|
|
@ -0,0 +1,38 @@
|
|||
/* Copyright 2021 Paul James
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
#define LAYOUT_ortho_7u( \
|
||||
l11, l12, l13, l14, l15, m11, m12, m13, m14, m15, r11, r12, r13, r14, r15, \
|
||||
l21, l22, l23, l24, l25, m21, m22, m23, m24, m25, r21, r22, r23, r24, r25, \
|
||||
l31, l32, l33, l34, l35, m31, m32, m33, m34, m35, r31, r32, r33, r34, r35, \
|
||||
l41, l42, l43, l44, l45, m41, m42, m43, m44, m45, r41, r42, r43, r44, r45, \
|
||||
l51, l52, l53, l54, m53, r52, r53, r54, r51 \
|
||||
) \
|
||||
{ \
|
||||
{ l11, l12, l13, l14, l15, l25, l35, l45 }, \
|
||||
{ l21, l22, l23, l24, l34, l44, l53, l54 }, \
|
||||
{ l31, l32, l33, l43, l42, l41, l51, l52 }, \
|
||||
{ m11, m12, m13, m14, m15, m25, m35, m45 }, \
|
||||
{ m21, m22, m23, m24, m34, m44, m53, KC_NO }, \
|
||||
{ m31, m32, m33, m43, m42, m41, KC_NO, KC_NO }, \
|
||||
{ r11, r12, r13, r14, r15, r25, r35, r45 }, \
|
||||
{ r21, r22, r23, r24, r34, r44, r53, r54 }, \
|
||||
{ r31, r32, r33, r43, r42, r41, r51, r52 } \
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
# Tripel
|
||||
## Sub-100x100mm modula 60% ortholinear 7u PCB
|
||||
|
||||
![tripel](https://github.com/peej/tripel-keyboard/raw/master/images/3pcbs.jpg)
|
||||
|
||||
15x5 ortholinear PCB for 60% tray mount cases using only prototype sized PCBs.
|
||||
|
||||
This revision is for when the Pro-Micro is mounted on the middle PCB.
|
||||
|
||||
* Keyboard Maintainer: [Paul James](https://github.com/peej)
|
||||
* Hardware Supported: Pro-Micro [PCB](https://github.com/peej/tripel-keyboard)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make peej/tripel/middle:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make peej/tripel/middle:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
|
@ -0,0 +1 @@
|
|||
# This file intentionally left blank
|
|
@ -0,0 +1,21 @@
|
|||
# Tripel
|
||||
## Sub-100x100mm modula 60% ortholinear 7u PCB
|
||||
|
||||
![tripel](https://github.com/peej/tripel-keyboard/raw/master/images/3pcbs.jpg)
|
||||
|
||||
15x5 ortholinear PCB for 60% tray mount cases using only prototype sized PCBs.
|
||||
|
||||
This revision is for when the Pro-Micro is mounted on the right most PCB.
|
||||
|
||||
* Keyboard Maintainer: [Paul James](https://github.com/peej)
|
||||
* Hardware Supported: Pro-Micro [PCB](https://github.com/peej/tripel-keyboard)
|
||||
|
||||
Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
make peej/tripel/right:default
|
||||
|
||||
Flashing example for this keyboard:
|
||||
|
||||
make peej/tripel/right:default:flash
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
|
@ -0,0 +1,38 @@
|
|||
/* Copyright 2021 Paul James
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "quantum.h"
|
||||
|
||||
#define LAYOUT_ortho_7u( \
|
||||
l11, l12, l13, l14, l15, m11, m12, m13, m14, m15, r11, r12, r13, r14, r15, \
|
||||
l21, l22, l23, l24, l25, m21, m22, m23, m24, m25, r21, r22, r23, r24, r25, \
|
||||
l31, l32, l33, l34, l35, m31, m32, m33, m34, m35, r31, r32, r33, r34, r35, \
|
||||
l41, l42, l43, l44, l45, m41, m42, m43, m44, m45, r41, r42, r43, r44, r45, \
|
||||
l51, l52, l53, l54, m53, r52, r53, r54, r51 \
|
||||
) \
|
||||
{ \
|
||||
{ m11, m12, m13, m14, m15, m25, m35, m45 }, \
|
||||
{ m21, m22, m23, m24, m34, m44, m53, KC_NO }, \
|
||||
{ m31, m32, m33, m43, m42, m41, KC_NO, KC_NO }, \
|
||||
{ r11, r12, r13, r14, r15, r25, r35, r45 }, \
|
||||
{ r21, r22, r23, r24, r34, r44, r53, r54 }, \
|
||||
{ r31, r32, r33, r43, r42, r41, r51, r52 }, \
|
||||
{ l11, l12, l13, l14, l15, l25, l35, l45 }, \
|
||||
{ l21, l22, l23, l24, l34, l44, l53, l54 }, \
|
||||
{ l31, l32, l33, l43, l42, l41, l51, l52 } \
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
# This file intentionally left blank
|
|
@ -0,0 +1,24 @@
|
|||
# MCU name
|
||||
MCU = atmega32u4
|
||||
|
||||
# Bootloader selection
|
||||
BOOTLOADER = caterina
|
||||
|
||||
# Build Options
|
||||
# change yes to no to disable
|
||||
#
|
||||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration
|
||||
MOUSEKEY_ENABLE = no # Mouse keys
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||
CONSOLE_ENABLE = no # Console for debug
|
||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
NKRO_ENABLE = yes # USB Nkey Rollover
|
||||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
||||
AUDIO_ENABLE = no # Audio output
|
||||
|
||||
DEFAULT_FOLDER = peej/tripel/left
|
Loading…
Reference in New Issue