commit
49ac435be1
@ -0,0 +1,68 @@ |
|||||||
|
// Copyright 2022 Arturo Avila (@ADPenrose)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include "config_common.h" |
||||||
|
|
||||||
|
/* key matrix size */ |
||||||
|
#define MATRIX_ROWS 4 |
||||||
|
#define MATRIX_COLS 14 |
||||||
|
|
||||||
|
/*
|
||||||
|
* Keyboard Matrix Assignments |
||||||
|
* |
||||||
|
* Change this to how you wired your keyboard |
||||||
|
* COLS: AVR pins used for columns, left to right |
||||||
|
* ROWS: AVR pins used for rows, top to bottom |
||||||
|
* DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) |
||||||
|
* ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) |
||||||
|
* |
||||||
|
*/ |
||||||
|
#define MATRIX_ROW_PINS { F4, F5, C7, C6 } |
||||||
|
#define MATRIX_COL_PINS { F6, B7, B6, B4, B5, D6, D5, D3, D7, D4, D2, D1, D0, B0 } |
||||||
|
|
||||||
|
/* COL2ROW, ROW2COL */ |
||||||
|
#define DIODE_DIRECTION COL2ROW |
||||||
|
|
||||||
|
/*Rotary encoder - set the resolution fitting your encoder.
|
||||||
|
Most will need a value of 4. If 1 encoder click results in 2 keycodes sent |
||||||
|
increase the value. If you need 2 clicks for 1 keycode, decrease*/ |
||||||
|
#define ENCODER_RESOLUTION 4 |
||||||
|
#define ENCODERS_PAD_A { F1 } |
||||||
|
#define ENCODERS_PAD_B { F0 } |
||||||
|
#define TAP_CODE_DELAY 10 |
||||||
|
|
||||||
|
/* Underglow options: */ |
||||||
|
#define RGB_DI_PIN F7 |
||||||
|
#ifdef RGB_DI_PIN |
||||||
|
# define RGBLED_NUM 16 |
||||||
|
# define RGBLIGHT_HUE_STEP 8 |
||||||
|
# define RGBLIGHT_SAT_STEP 8 |
||||||
|
# define RGBLIGHT_VAL_STEP 8 |
||||||
|
# define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */ |
||||||
|
# define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */ |
||||||
|
# define RGBLIGHT_EFFECT_BREATHING |
||||||
|
# define RGBLIGHT_EFFECT_RAINBOW_MOOD |
||||||
|
# define RGBLIGHT_EFFECT_RAINBOW_SWIRL |
||||||
|
# define RGBLIGHT_EFFECT_SNAKE |
||||||
|
# define RGBLIGHT_EFFECT_KNIGHT |
||||||
|
# define RGBLIGHT_EFFECT_CHRISTMAS |
||||||
|
# define RGBLIGHT_EFFECT_STATIC_GRADIENT |
||||||
|
# define RGBLIGHT_EFFECT_RGB_TEST |
||||||
|
# define RGBLIGHT_EFFECT_ALTERNATING |
||||||
|
/*== customize breathing effect ==*/ |
||||||
|
/*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/ |
||||||
|
//# define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
|
||||||
|
/*==== use exp() and sin() ====*/ |
||||||
|
//# define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
|
||||||
|
//# define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
|
||||||
|
#endif |
||||||
|
|
||||||
|
/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ |
||||||
|
#define DEBOUNCE 5 |
||||||
|
|
||||||
|
/* Bootmagic Lite key configuration */ |
||||||
|
#define BOOTMAGIC_LITE_ROW 0 |
||||||
|
#define BOOTMAGIC_LITE_COLUMN 0 |
||||||
|
|
@ -0,0 +1,70 @@ |
|||||||
|
{ |
||||||
|
"manufacturer": "ADPenrose", |
||||||
|
"keyboard_name": "Obi", |
||||||
|
"maintainer": "Arturo Avila", |
||||||
|
"usb": { |
||||||
|
"device_version": "1.0.0", |
||||||
|
"pid": "0x0002", |
||||||
|
"vid": "0x4450" |
||||||
|
}, |
||||||
|
"layouts": { |
||||||
|
"LAYOUT_all": { |
||||||
|
"layout": [ |
||||||
|
{"label":"F1", "x":0, "y":0}, |
||||||
|
{"label":"Tab", "x":1.25, "y":0, "w":1.5}, |
||||||
|
{"label":"Q", "x":2.75, "y":0}, |
||||||
|
{"label":"W", "x":3.75, "y":0}, |
||||||
|
{"label":"E", "x":4.75, "y":0}, |
||||||
|
{"label":"R", "x":5.75, "y":0}, |
||||||
|
{"label":"T", "x":6.75, "y":0}, |
||||||
|
{"label":"Y", "x":7.75, "y":0}, |
||||||
|
{"label":"U", "x":8.75, "y":0}, |
||||||
|
{"label":"I", "x":9.75, "y":0}, |
||||||
|
{"label":"O", "x":10.75, "y":0}, |
||||||
|
{"label":"P", "x":11.75, "y":0}, |
||||||
|
{"label":"{", "x":12.75, "y":0}, |
||||||
|
{"label":"Backspace", "x":13.75, "y":0, "w":1.5}, |
||||||
|
|
||||||
|
{"label":"F2", "x":0, "y":1}, |
||||||
|
{"label":"Caps Lock", "x":1.25, "y":1, "w":1.75}, |
||||||
|
{"label":"A", "x":3, "y":1}, |
||||||
|
{"label":"S", "x":4, "y":1}, |
||||||
|
{"label":"D", "x":5, "y":1}, |
||||||
|
{"label":"F", "x":6, "y":1}, |
||||||
|
{"label":"G", "x":7, "y":1}, |
||||||
|
{"label":"H", "x":8, "y":1}, |
||||||
|
{"label":"J", "x":9, "y":1}, |
||||||
|
{"label":"K", "x":10, "y":1}, |
||||||
|
{"label":"L", "x":11, "y":1}, |
||||||
|
{"label":":", "x":12, "y":1}, |
||||||
|
{"label":"Enter", "x":13, "y":1, "w":2.25}, |
||||||
|
|
||||||
|
{"label":"F3", "x":0, "y":2}, |
||||||
|
{"label":"Shift", "x":1.25, "y":2, "w":2.25}, |
||||||
|
{"label":"Z", "x":3.5, "y":2}, |
||||||
|
{"label":"X", "x":4.5, "y":2}, |
||||||
|
{"label":"C", "x":5.5, "y":2}, |
||||||
|
{"label":"V", "x":6.5, "y":2}, |
||||||
|
{"label":"B", "x":7.5, "y":2}, |
||||||
|
{"label":"N", "x":8.5, "y":2}, |
||||||
|
{"label":"M", "x":9.5, "y":2}, |
||||||
|
{"label":"<", "x":10.5, "y":2}, |
||||||
|
{"label":"Shift", "x":11.5, "y":2, "w":1.75}, |
||||||
|
{"label":"Up", "x":13.25, "y":2}, |
||||||
|
{"label":"?", "x":14.25, "y":2}, |
||||||
|
|
||||||
|
{"label":"F4", "x":0, "y":3}, |
||||||
|
{"label":"Ctrl", "x":1.25, "y":3, "w":1.25}, |
||||||
|
{"label":"Win", "x":2.5, "y":3}, |
||||||
|
{"label":"Alt", "x":3.5, "y":3, "w":1.25}, |
||||||
|
{"label":"Spacebar", "x":4.75, "y":3, "w":2.25}, |
||||||
|
{"label":"Spacebar", "x":7, "y":3, "w":1.25}, |
||||||
|
{"label":"Spacebar", "x":8.25, "y":3, "w":2.75}, |
||||||
|
{"label":"Alt", "x":11, "y":3, "w":1.25}, |
||||||
|
{"label":"Left", "x":12.25, "y":3}, |
||||||
|
{"label":"Down", "x":13.25, "y":3}, |
||||||
|
{"label":"Right", "x":14.25, "y":3} |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,41 @@ |
|||||||
|
// Copyright 2022 Arturo Avila (@ADPenrose)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
/* Base */ |
||||||
|
[0] = LAYOUT_all( |
||||||
|
KC_ESC, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_BSPC, |
||||||
|
KC_MUTE, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, |
||||||
|
KC_VOLU, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_RSFT, KC_UP, KC_SLSH, |
||||||
|
KC_VOLD, KC_LCTL, KC_LGUI, KC_LALT, MO(1), KC_SPC, KC_SPC, MO(2), KC_LEFT, KC_DOWN, KC_RIGHT |
||||||
|
), |
||||||
|
[1] = LAYOUT_all( |
||||||
|
KC_DEL, KC_TRNS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, |
||||||
|
KC_MPLY, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_QUOT, KC_BSLS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_DOT, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
), |
||||||
|
[2] = LAYOUT_all( |
||||||
|
KC_TILD, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_RBRC, |
||||||
|
KC_TRNS, QK_BOOT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
), |
||||||
|
[3] = LAYOUT_all( |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
) |
||||||
|
}; |
||||||
|
|
||||||
|
#if defined(ENCODER_MAP_ENABLE) |
||||||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { |
||||||
|
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }, |
||||||
|
[1] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, |
||||||
|
[2] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, |
||||||
|
[3] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) } |
||||||
|
}; |
||||||
|
#endif |
@ -0,0 +1 @@ |
|||||||
|
ENCODER_MAP_ENABLE = yes
|
@ -0,0 +1,41 @@ |
|||||||
|
// Copyright 2022 Arturo Avila (@ADPenrose)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
/* Base */ |
||||||
|
[0] = LAYOUT_all( |
||||||
|
KC_ESC, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_BSPC, |
||||||
|
KC_MUTE, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT, |
||||||
|
KC_VOLU, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_RSFT, KC_UP, KC_SLSH, |
||||||
|
KC_VOLD, KC_LCTL, KC_LGUI, KC_LALT, MO(1), KC_SPC, KC_SPC, MO(2), KC_LEFT, KC_DOWN, KC_RIGHT |
||||||
|
), |
||||||
|
[1] = LAYOUT_all( |
||||||
|
KC_DEL, KC_TRNS, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, |
||||||
|
KC_MPLY, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_QUOT, KC_BSLS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_DOT, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
), |
||||||
|
[2] = LAYOUT_all( |
||||||
|
KC_TILD, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_RBRC, |
||||||
|
KC_TRNS, QK_BOOT, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
), |
||||||
|
[3] = LAYOUT_all( |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
) |
||||||
|
}; |
||||||
|
|
||||||
|
#if defined(ENCODER_MAP_ENABLE) |
||||||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { |
||||||
|
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) }, |
||||||
|
[1] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, |
||||||
|
[2] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) }, |
||||||
|
[3] = { ENCODER_CCW_CW(KC_TRNS, KC_TRNS) } |
||||||
|
}; |
||||||
|
#endif |
@ -0,0 +1,3 @@ |
|||||||
|
VIA_ENABLE = yes
|
||||||
|
LTO_ENABLE = yes
|
||||||
|
ENCODER_MAP_ENABLE = yes
|
@ -0,0 +1,5 @@ |
|||||||
|
// Copyright 2022 Arturo Avila (@ADPenrose)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include "obi.h" |
||||||
|
|
@ -0,0 +1,26 @@ |
|||||||
|
// Copyright 2022 Arturo Avila (@ADPenrose)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include "quantum.h" |
||||||
|
|
||||||
|
/* This is a shortcut to help you visually see your layout.
|
||||||
|
* |
||||||
|
* The first section contains all of the arguments representing the physical |
||||||
|
* layout of the board and position of the keys. |
||||||
|
* |
||||||
|
* The second converts the arguments into a two-dimensional array which |
||||||
|
* represents the switch matrix. |
||||||
|
*/ |
||||||
|
#define LAYOUT_all( \ |
||||||
|
K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
|
||||||
|
K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1D, \
|
||||||
|
K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2C, K2D, \
|
||||||
|
K30, K31, K32, K33, K35, K36, K37, K3A, K3B, K3C, K3D \
|
||||||
|
) { \
|
||||||
|
{ K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D }, \
|
||||||
|
{ K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, KC_NO, K1D }, \
|
||||||
|
{ K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, KC_NO, K2C, K2D }, \
|
||||||
|
{ K30, K31, K32, K33, KC_NO, K35, K36, K37, KC_NO, KC_NO, K3A, K3B, K3C, K3D } \
|
||||||
|
} |
@ -0,0 +1,29 @@ |
|||||||
|
# Obi |
||||||
|
|
||||||
|
 |
||||||
|
|
||||||
|
A 40% keyboard inspired by the TMOv2 and Nightmare boards. |
||||||
|
|
||||||
|
# General info |
||||||
|
|
||||||
|
* Keyboard Maintainer: [Arturo Avila](https://github.com/ADPenrose) |
||||||
|
* Hardware Supported: Obi v1 PCB |
||||||
|
* Hardware Availability: [Arturo Avila](https://github.com/ADPenrose) |
||||||
|
|
||||||
|
Make example for this keyboard (after setting up your build environment): |
||||||
|
|
||||||
|
make adpenrose/obi:default |
||||||
|
|
||||||
|
Flashing example for this keyboard: |
||||||
|
|
||||||
|
make adpenrose/obi: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). |
||||||
|
|
||||||
|
## Bootloader |
||||||
|
|
||||||
|
Enter the bootloader in 3 ways: |
||||||
|
|
||||||
|
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard |
||||||
|
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead |
||||||
|
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available |
@ -0,0 +1,19 @@ |
|||||||
|
# MCU name
|
||||||
|
MCU = atmega32u4
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
BOOTLOADER = caterina
|
||||||
|
|
||||||
|
# Build Options
|
||||||
|
# change yes to no to disable
|
||||||
|
#
|
||||||
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
||||||
|
MOUSEKEY_ENABLE = no # Mouse keys
|
||||||
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
|
NKRO_ENABLE = no # Enable N-Key Rollover
|
||||||
|
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
|
||||||
|
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
||||||
|
AUDIO_ENABLE = no # Audio output
|
||||||
|
ENCODER_ENABLE = yes # Encoder functionality
|
@ -0,0 +1,40 @@ |
|||||||
|
/* Copyright 2022 Mechlovin' Studio
|
||||||
|
* |
||||||
|
* 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_iso( |
||||||
|
KC_F1, KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS, KC_HOME, KC_PGUP, |
||||||
|
KC_F2, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_DEL, KC_END, KC_PGDN, |
||||||
|
KC_F3, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, |
||||||
|
KC_F4, KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, |
||||||
|
KC_F5, KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT |
||||||
|
), |
||||||
|
[1] = LAYOUT_iso( |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
), |
||||||
|
|
||||||
|
}; |
||||||
|
#if defined(ENCODER_MAP_ENABLE) |
||||||
|
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][2] = { |
||||||
|
[0] = {ENCODER_CCW_CW(KC_VOLD, KC_VOLU)}, |
||||||
|
[1] = {ENCODER_CCW_CW(RGB_MOD, RGB_RMOD)} |
||||||
|
}; |
||||||
|
#endif |
@ -0,0 +1 @@ |
|||||||
|
ENCODER_MAP_ENABLE = yes
|
@ -0,0 +1,20 @@ |
|||||||
|
// Copyright 2022 Zicodia (@Zicodia)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
/*
|
||||||
|
* Feature disable options |
||||||
|
* These options are also useful to firmware size reduction. |
||||||
|
*/ |
||||||
|
|
||||||
|
/* disable debug print */ |
||||||
|
//#define NO_DEBUG
|
||||||
|
|
||||||
|
/* disable print */ |
||||||
|
//#define NO_PRINT
|
||||||
|
|
||||||
|
/* disable action features */ |
||||||
|
//#define NO_ACTION_LAYER
|
||||||
|
//#define NO_ACTION_TAPPING
|
||||||
|
//#define NO_ACTION_ONESHOT
|
@ -0,0 +1,36 @@ |
|||||||
|
{ |
||||||
|
"manufacturer": "Zicodia", |
||||||
|
"keyboard_name": "TKLFRLNRLMLAO", |
||||||
|
"maintainer": "Zicodia", |
||||||
|
"bootloader": "atmel-dfu", |
||||||
|
"diode_direction": "COL2ROW", |
||||||
|
"features": { |
||||||
|
"bootmagic": true, |
||||||
|
"command": false, |
||||||
|
"console": false, |
||||||
|
"extrakey": true, |
||||||
|
"mousekey": true, |
||||||
|
"nkro": true |
||||||
|
}, |
||||||
|
"matrix_pins": { |
||||||
|
"cols": ["F1", "F4", "F0", "F5", "C7", "F6", "F7", "B6", "D6", "D4"], |
||||||
|
"rows": ["D5", "B5", "B4", "D7"] |
||||||
|
}, |
||||||
|
"usb": { |
||||||
|
"vid": "0x4A4C", |
||||||
|
"pid": "0x0000", |
||||||
|
"device_version": "1.0.0" |
||||||
|
}, |
||||||
|
"processor": "atmega32u4", |
||||||
|
"url": "https://github.com/Zicodia", |
||||||
|
"layouts": { |
||||||
|
"LAYOUT_all": { |
||||||
|
"layout": [ |
||||||
|
{ "matrix": [0, 0], "x": 0, "y": 0 }, { "matrix": [0, 1], "x": 1.25, "y": 0 }, { "matrix": [0, 2], "x": 2.25, "y": 0 }, { "matrix": [0, 3], "x": 3.25, "y": 0 }, { "matrix": [0, 4], "x": 4.5, "y": 0 }, { "matrix": [0, 5], "x": 5.5, "y": 0 }, { "matrix": [0, 6], "x": 6.5, "y": 0 }, { "matrix": [0, 7], "x": 7.75, "y": 0 }, { "matrix": [0, 8], "x": 8.75, "y": 0 }, { "matrix": [0, 9], "x": 9.75, "y": 0 }, |
||||||
|
{ "matrix": [1, 0], "x": 0, "y": 1.25 }, { "matrix": [1, 1], "x": 1, "y": 1.25 }, { "matrix": [1, 2], "x": 2, "y": 1.25 }, { "matrix": [1, 3], "x": 3, "y": 1.25 }, { "matrix": [1, 4], "x": 0, "y": 1.25 }, { "matrix": [1, 5], "x": 0, "y": 1.25 }, { "matrix": [1, 6], "x": 0, "y": 1.25, "w": 1.5 }, { "matrix": [1, 7], "x": 7.75, "y": 1 }, { "matrix": [1, 8], "x": 8.75, "y": 1 }, { "matrix": [1, 9], "x": 9.75, "y": 1 }, |
||||||
|
{ "matrix": [2, 0], "x": 0, "y": 2.25, "w": 1.5 }, { "matrix": [2, 1], "x": 1, "y": 2.25 }, { "matrix": [2, 2], "x": 2, "y": 2.25 }, { "matrix": [2, 3], "x": 3, "y": 2.25 }, { "matrix": [2, 4], "x": 0, "y": 2.25 }, { "matrix": [2, 5], "x": 0, "y": 2.25 }, { "matrix": [2, 6], "x": 0, "y": 2.25 }, { "matrix": [2, 8], "x": 8.75, "y": 2.25 }, |
||||||
|
{ "matrix": [3, 0], "x": 0, "y": 3.25, "w": 1.25 }, { "matrix": [3, 1], "x": 1, "y": 3.25 }, { "matrix": [3, 3], "x": 3, "y": 3.25, "w": 3 }, { "matrix": [3, 5], "x": 0, "y": 3.25 }, { "matrix": [3, 6], "x": 0, "y": 3.25, "w":1.25 }, { "matrix": [3, 7], "x": 0, "y": 3.25 }, { "matrix": [3, 8], "x": 7.75, "y": 3.25 }, { "matrix": [3, 9], "x": 8.75, "y": 3.25 } |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,79 @@ |
|||||||
|
// Copyright 2022 Zicodia (@Zicodia)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ Q │| W │ E │ R │| T │ Y │ U │ | I │ O │ P │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ | K │ L │ENT│ |
||||||
|
* │ A │ S │ D │ F | G │ H │ J │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │Z(SF)│ X │ C │ V │ B │ N │ M │ │UP │ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │CTRL│ALT│ SPACE │WIN│MO1 │ |LFT│DWN│RT │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[0] = LAYOUT_all( |
||||||
|
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
|
||||||
|
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_ENT,
|
||||||
|
SFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_UP,
|
||||||
|
KC_LCTL, KC_LALT, KC_SPC, KC_RGUI, MO(1), KC_LEFT, KC_DOWN, KC_RGHT |
||||||
|
) |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ 1 │| 2 │ 3 │ 4 │| 5 │ 6 │ 7 │ | 8 │ 9 │ 0 │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ | [ │ ] │ \ │ |
||||||
|
* │TAB│ │ │ | - │ = │BSPC │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │ │ │ │ │ │ ; │ ' │ │SFT│ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │ │ │ │MO2│ │ | , │ . │ / │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[1] = LAYOUT_all( |
||||||
|
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
|
||||||
|
KC_TAB, KC_TRNS, KC_TRNS, KC_TRNS, KC_MINS, KC_EQL, KC_BSPC, KC_LBRC, KC_RBRC, KC_BSLS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_SCLN, KC_QUOT, KC_RSFT,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, MO(2), KC_TRNS, KC_COMM, KC_DOT, KC_SLSH |
||||||
|
) |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ESC│|F1 │F2 │F3 │|F4 │F5 │F6 │ |F7 │F8 │F9 │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ |F10│F11│F12│ |
||||||
|
* │ │ │ │ | │ │ │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │ │ │ │ │ │ │ │ │ │ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │ │ │ │ │ │ | │ │ │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[2] = LAYOUT_all( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_F10, KC_F11, KC_F12,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
) |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ │| │ │ │| │ │ │ | │ │ │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ | │ │ │ |
||||||
|
* │ │ │ │ | │ │ │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │ │ │ │ │ │ │ │ │ │ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │ │ │ │ │ │ | │ │ │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[4] = LAYOUT_all( |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
) |
||||||
|
}; |
@ -0,0 +1,80 @@ |
|||||||
|
// Copyright 2022 Zicodia (@Zicodia)
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
|
#include QMK_KEYBOARD_H |
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||||
|
|
||||||
|
/* ANSI style
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ Q │| W │ E │ R │| T │ Y │ U │ | I │ O │ P │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ | K │ L │ENT│ |
||||||
|
* │ A │ S │ D │ F | G │ H │ J │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │Z(SF)│ X │ C │ V │ B │ N │ M │ │UP │ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │CTRL│ALT│ SPACE │WIN│MO1 │ |LFT│DWN│RT │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[0] = LAYOUT_all( |
||||||
|
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
|
||||||
|
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_ENT,
|
||||||
|
SFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_UP,
|
||||||
|
KC_LCTL, KC_LALT, KC_SPC, KC_RGUI, MO(1), KC_LEFT, KC_DOWN, KC_RGHT |
||||||
|
), |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ 1 │| 2 │ 3 │ 4 │| 5 │ 6 │ 7 │ | 8 │ 9 │ 0 │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ | [ │ ] │ \ │ |
||||||
|
* │TAB│ │ │ | - │ = │BSPC │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │ │ │ │ │ │ ; │ ' │ │SFT│ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │ │ │ │MO2│ │ | , │ . │ / │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[1] = LAYOUT_all( |
||||||
|
KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
|
||||||
|
KC_TAB, KC_TRNS, KC_TRNS, KC_TRNS, KC_MINS, KC_EQL, KC_BSPC, KC_LBRC, KC_RBRC, KC_BSLS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_SCLN, KC_QUOT, KC_RSFT,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, MO(2), KC_TRNS, KC_COMM, KC_DOT, KC_SLSH |
||||||
|
), |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ESC│|F1 │F2 │F3 │|F4 │F5 │F6 │ |F7 │F8 │F9 │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ |F10│F11│F12│ |
||||||
|
* │ │ │ │ | │ │ │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │ │ │ │ │ │ │ │ │ │ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │ │ │ │ │ │ | │ │ │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[2] = LAYOUT_all( |
||||||
|
KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_F10, KC_F11, KC_F12,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
), |
||||||
|
/*
|
||||||
|
* ┌───┐┌───┬───┬───┐┌───┬───┬───┐ ┌───┬───┬───┐ |
||||||
|
* │ │| │ │ │| │ │ │ | │ │ │ |
||||||
|
* └───┘└───┴───┴───┘└───┴───┴───┘ ├───┼───┼───┤ |
||||||
|
* ┌───┬───┬───┬───┬───┬───┬─────┐ | │ │ │ |
||||||
|
* │ │ │ │ | │ │ │ └───┴───┴───┘ |
||||||
|
* ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬───┤ ┌───┐ |
||||||
|
* │ │ │ │ │ │ │ │ │ │ |
||||||
|
* ├────┬┴──┬┴───┴───┴──┬┴──┬┴───┤ ┌───┼───┼───┐ |
||||||
|
* │ │ │ │ │ │ | │ │ │ |
||||||
|
* └────┴───┴───────────┴───┴────┘ └───┴───┴───┘ |
||||||
|
*/ |
||||||
|
[3] = LAYOUT_all( |
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
|
||||||
|
KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS |
||||||
|
) |
||||||
|
}; |
@ -0,0 +1 @@ |
|||||||
|
VIA_ENABLE = yes
|
@ -0,0 +1,38 @@ |
|||||||
|
# TKLFRLNRLMLAO "LMAO" |
||||||
|
|
||||||
|
 |
||||||
|
|
||||||
|
A "totally normal" TKL. |
||||||
|
|
||||||
|
This keyboard is a unique 40% keyboard, designed with form in mind over function. Purely designed to immitate the TKL layout in a small form factor. |
||||||
|
|
||||||
|
What the name means: |
||||||
|
- TKL = Ten-Key-Less |
||||||
|
- FRL = Function-Row-Less |
||||||
|
- NRL = Number-Row-Less |
||||||
|
- ML = Modifier-less |
||||||
|
- AO = Alpha-Only |
||||||
|
|
||||||
|
Additionally, a WKL (Windows-Key-Less) option is available, which results in the variation WKLTKLFRLNRLMLAO "WLMAO" |
||||||
|
|
||||||
|
* Keyboard Maintainer: [Zicodia](https://github.com/Zicodia) |
||||||
|
* Hardware Supported: TKLFRLNRLMLAO PCB |
||||||
|
* Hardware Availability: TBA |
||||||
|
|
||||||
|
Make example for this keyboard (after setting up your build environment): |
||||||
|
|
||||||
|
make zicodia/tklfrlnrlmlao:default |
||||||
|
|
||||||
|
Flashing example for this keyboard: |
||||||
|
|
||||||
|
make zicodia/tklfrlnrlmlao: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). |
||||||
|
|
||||||
|
## Bootloader |
||||||
|
|
||||||
|
Enter the bootloader in 3 ways: |
||||||
|
|
||||||
|
* **Bootmagic reset**: Hold down the key at (0,0) in the matrix (usually the top left key or Escape) and plug in the keyboard |
||||||
|
* **Physical reset button**: Briefly press the button on the back of the PCB - some may have pads you must short instead |
||||||
|
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available |
@ -0,0 +1 @@ |
|||||||
|
# This file intentionally left blank
|
Loading…
Reference in new issue