Merge remote-tracking branch 'origin/master' into develop
51 files changed, 2149 insertions(+), 185 deletions(-) M docs/keymap.md M keyboards/cradio/config.h M keyboards/cradio/cradio.c D keyboards/cradio/cradio.h M keyboards/cradio/info.json M keyboards/cradio/rules.mk A keyboards/drop/sense75/board.h A keyboards/drop/sense75/config.h A keyboards/drop/sense75/halconf.h A keyboards/drop/sense75/info.json A keyboards/drop/sense75/keymaps/default/keymap.c A keyboards/drop/sense75/keymaps/default/rules.mk A keyboards/drop/sense75/keymaps/default_md/keymap.c A keyboards/drop/sense75/keymaps/default_md/readme.md A keyboards/drop/sense75/keymaps/default_md/rules.mk A keyboards/drop/sense75/keymaps/via/config.h A keyboards/drop/sense75/keymaps/via/keymap.c A keyboards/drop/sense75/keymaps/via/rules.mk A keyboards/drop/sense75/mcuconf.h A keyboards/drop/sense75/readme.md A keyboards/drop/sense75/rules.mk A keyboards/drop/sense75/sense75.c A keyboards/gmmk/pro/rev1/iso/keymaps/falkecarlsen/keymap.c A keyboards/gmmk/pro/rev1/iso/keymaps/falkecarlsen/readme.md A keyboards/handwired/jscotto/scotto36/info.json A keyboards/handwired/jscotto/scotto36/keymaps/default/config.h A keyboards/handwired/jscotto/scotto36/keymaps/default/keymap.c A keyboards/handwired/jscotto/scotto36/keymaps/default/rules.mk A keyboards/handwired/jscotto/scotto36/readme.md A keyboards/handwired/jscotto/scotto36/rules.mk A keyboards/keychron/q0/config.h A keyboards/keychron/q0/halconf.h A keyboards/keychron/q0/mcuconf.h A keyboards/keychron/q0/q0.c A keyboards/keychron/q0/q0.h A keyboards/keychron/q0/readme.md A keyboards/keychron/q0/rev_0130/config.h A keyboards/keychron/q0/rev_0130/info.json A keyboards/keychron/q0/rev_0130/keymaps/default/keymap.c A keyboards/keychron/q0/rev_0130/keymaps/via/keymap.c A keyboards/keychron/q0/rev_0130/keymaps/via/rules.mk A keyboards/keychron/q0/rev_0130/readme.md A keyboards/keychron/q0/rev_0130/rev_0130.c A keyboards/keychron/q0/rev_0130/rev_0130.h A keyboards/keychron/q0/rev_0130/rules.mk A keyboards/plywrks/allaro/info.json A keyboards/plywrks/allaro/keymaps/default/keymap.c A keyboards/plywrks/allaro/keymaps/via/keymap.c A keyboards/plywrks/allaro/keymaps/via/rules.mk A keyboards/plywrks/allaro/readme.md A keyboards/plywrks/allaro/rules.mk
M docs/keymap.md => docs/keymap.md +1 -2
@@ 92,11 92,10 @@ These keycodes allow the processing to fall through to lower layers in search of For this example we will walk through an [older version of the default Clueboard 66% keymap](https://github.com/qmk/qmk_firmware/blob/ca01d94005f67ec4fa9528353481faa622d949ae/keyboards/clueboard/keymaps/default/keymap.c). You'll find it helpful to open that file in another browser window so you can look at everything in context. There are 3 main sections of a `keymap.c` file you'll want to concern yourself with: There are 2 main sections of a `keymap.c` file you'll want to concern yourself with: * [The Definitions](#definitions) * [The Layer/Keymap Datastructure](#layers-and-keymaps) * [Custom Functions](#custom-functions), if any ### Definitions
M keyboards/cradio/config.h => keyboards/cradio/config.h +5 -48
@@ 1,52 1,9 @@ /* Copyright 2018-2021 * ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> * David Philip Barr <@davidphilipbarr> * Pierre Chevalier <pierrechevalier83@gmail.com> * * 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/>. */ // Copyright 2018-2021 // ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> // David Philip Barr <@davidphilipbarr> // Pierre Chevalier <pierrechevalier83@gmail.com> // SPDX-License-Identifier: GPL-2.0+ #pragma once #include "config_common.h" /* key matrix size */ #define MATRIX_ROWS 8 #define MATRIX_COLS 5 #define DIRECT_PINS { \ { E6, F7, F6, F5, F4 }, \ { B1, B3, B2, B6, D3 }, \ { D1, D0, D4, C6, D7 }, \ { B4, B5, NO_PIN, NO_PIN, NO_PIN } \ } #define DIRECT_PINS_RIGHT { \ { F4, F5, F6, F7, E6 }, \ { D3, B6, B2, B3, B1 }, \ { D7, C6, D4, D0, D1 }, \ { B5, B4, NO_PIN, NO_PIN, NO_PIN } \ } /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ #define DEBOUNCE 5 /* serial.c configuration for split keyboard */ #define SOFT_SERIAL_PIN D2 /* Top left key on left half */ #define BOOTMAGIC_LITE_ROW 0 #define BOOTMAGIC_LITE_COLUMN 0 /* Top right key on right half */
M keyboards/cradio/cradio.c => keyboards/cradio/cradio.c +6 -21
@@ 1,24 1,10 @@ /* Copyright 2018-2021 * ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> * David Philip Barr <@davidphilipbarr> * Pierre Chevalier <pierrechevalier83@gmail.com> * @filterpaper * * 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/>. */ // Copyright 2018-2021 // ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> // David Philip Barr <@davidphilipbarr> // Pierre Chevalier <pierrechevalier83@gmail.com> // SPDX-License-Identifier: GPL-2.0+ #include "cradio.h" #include "quantum.h" #ifdef SWAP_HANDS_ENABLE @@ __attribute__ ((weak)) 35,4 21,3 @@ const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { {{1, 3}, {0, 3}, {2, 3}, {3, 3}, {4, 3}} }; #endif
D keyboards/cradio/cradio.h => keyboards/cradio/cradio.h +0 -52
@@ 1,52 0,0 @@ /* Copyright 2018-2021 * ENDO Katsuhiro <ka2hiro@curlybracket.co.jp> * David Philip Barr <@davidphilipbarr> * Pierre Chevalier <pierrechevalier83@gmail.com> * * 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 "quantum.h" /* This 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. */ // readability #define ___ KC_NO #define LAYOUT_split_3x5_2( \ L01, L02, L03, L04, L05, R01, R02, R03, R04, R05, \ L06, L07, L08, L09, L10, R06, R07, R08, R09, R10, \ L11, L12, L13, L14, L15, R11, R12, R13, R14, R15, \ L16, L17, R16, R17 \ ) \ { \ { L01, L02, L03, L04, L05 }, \ { L06, L07, L08, L09, L10 }, \ { L11, L12, L13, L14, L15 }, \ { L16, L17, ___, ___, ___ }, \ { R01, R02, R03, R04, R05 }, \ { R06, R07, R08, R09, R10 }, \ { R11, R12, R13, R14, R15 }, \ { R16, R17, ___, ___, ___ } \ } #define LAYOUT LAYOUT_split_3x5_2
M keyboards/cradio/info.json => keyboards/cradio/info.json +75 -41
@@ 8,50 8,84 @@ "pid": "0x3988", "device_version": "0.0.1" }, "processor": "atmega32u4", "protocol": "atmel-dfu", "debounce": 5, "features": { "bootmagic": true, "command": false, "console": false, "extrakey": true, "mousekey": true, "nkro": false, "unicode": true }, "matrix_pins": { "direct": [ ["E6", "F7", "F6", "F5", "F4"], ["B1", "B3", "B2", "B6", "D3"], ["D1", "D0", "D4", "C6", "D7"], ["B4", "B5", null, null, null] ] }, "split": { "enabled": true, "matrix_pins": { "right": { "direct": [ ["F4", "F5", "F6", "F7", "E6"], ["D3", "B6", "B2", "B3", "B1"], ["D7", "C6", "D4", "D0", "D1"], ["B5", "B4", null, null, null] ] } }, "soft_serial_pin": "D2", "transport": { "protocol": "serial" } }, "community_layouts": ["split_3x5_2"], "layout_aliases": { "LAYOUT": "LAYOUT_split_3x5_2" }, "layouts": { "LAYOUT_split_3x5_2": { "layout": [ {"x": 0, "y": 1.27}, {"x": 1, "y": 0.31}, {"x": 2, "y": 0}, {"x": 3, "y": 0.28}, {"x": 4, "y": 0.42}, {"x": 8, "y": 0.42}, {"x": 9, "y": 0.28}, {"x": 10, "y": 0}, {"x": 11, "y": 0.31}, {"x": 12, "y": 1.27}, {"x": 0, "y": 2.27}, {"x": 1, "y": 1.31}, {"x": 2, "y": 1}, {"x": 3, "y": 1.28}, {"x": 4, "y": 1.42}, {"x": 8, "y": 1.42}, {"x": 9, "y": 1.28}, {"x": 10, "y": 1}, {"x": 11, "y": 1.31}, {"x": 12, "y": 2.27}, {"x": 0, "y": 3.27}, {"x": 1, "y": 2.31}, {"x": 2, "y": 2}, {"x": 3, "y": 2.28}, {"x": 4, "y": 2.42}, {"x": 8, "y": 2.42}, {"x": 9, "y": 2.28}, {"x": 10, "y": 2}, {"x": 11, "y": 2.31}, {"x": 12, "y": 3.27}, {"x": 4, "y": 3.9}, {"x": 5, "y": 3.7}, {"x": 7, "y": 3.7}, {"x": 8, "y": 3.9} { "label": "L01", "matrix": [0, 0], "w": 1, "x": 0, "y": 1.27 }, { "label": "L02", "matrix": [0, 1], "w": 1, "x": 1, "y": 0.31 }, { "label": "L03", "matrix": [0, 2], "w": 1, "x": 2, "y": 0 }, { "label": "L04", "matrix": [0, 3], "w": 1, "x": 3, "y": 0.28 }, { "label": "L05", "matrix": [0, 4], "w": 1, "x": 4, "y": 0.42 }, { "label": "L06", "matrix": [1, 0], "w": 1, "x": 0, "y": 2.27 }, { "label": "L07", "matrix": [1, 1], "w": 1, "x": 1, "y": 1.31 }, { "label": "L08", "matrix": [1, 2], "w": 1, "x": 2, "y": 1 }, { "label": "L09", "matrix": [1, 3], "w": 1, "x": 3, "y": 1.28 }, { "label": "L10", "matrix": [1, 4], "w": 1, "x": 4, "y": 1.42 }, { "label": "L11", "matrix": [2, 0], "w": 1, "x": 0, "y": 3.27 }, { "label": "L12", "matrix": [2, 1], "w": 1, "x": 1, "y": 2.31 }, { "label": "L13", "matrix": [2, 2], "w": 1, "x": 2, "y": 2 }, { "label": "L14", "matrix": [2, 3], "w": 1, "x": 3, "y": 2.28 }, { "label": "L15", "matrix": [2, 4], "w": 1, "x": 4, "y": 2.42 }, { "label": "L16", "matrix": [3, 0], "w": 1, "x": 4, "y": 3.9 }, { "label": "L17", "matrix": [3, 1], "w": 1, "x": 5, "y": 3.7 }, { "label": "R01", "matrix": [4, 0], "w": 1, "x": 8, "y": 0.42 }, { "label": "R02", "matrix": [4, 1], "w": 1, "x": 9, "y": 0.28 }, { "label": "R03", "matrix": [4, 2], "w": 1, "x": 10, "y": 0 }, { "label": "R04", "matrix": [4, 3], "w": 1, "x": 11, "y": 0.31 }, { "label": "R05", "matrix": [4, 4], "w": 1, "x": 12, "y": 1.27 }, { "label": "R06", "matrix": [5, 0], "w": 1, "x": 8, "y": 1.42 }, { "label": "R07", "matrix": [5, 1], "w": 1, "x": 9, "y": 1.28 }, { "label": "R08", "matrix": [5, 2], "w": 1, "x": 10, "y": 1 }, { "label": "R09", "matrix": [5, 3], "w": 1, "x": 11, "y": 1.31 }, { "label": "R10", "matrix": [5, 4], "w": 1, "x": 12, "y": 2.27 }, { "label": "R11", "matrix": [6, 0], "w": 1, "x": 8, "y": 2.42 }, { "label": "R12", "matrix": [6, 1], "w": 1, "x": 9, "y": 2.28 }, { "label": "R13", "matrix": [6, 2], "w": 1, "x": 10, "y": 2 }, { "label": "R14", "matrix": [6, 3], "w": 1, "x": 11, "y": 2.31 }, { "label": "R15", "matrix": [6, 4], "w": 1, "x": 12, "y": 3.27 }, { "label": "R16", "matrix": [7, 0], "w": 1, "x": 7, "y": 3.7 }, { "label": "R17", "matrix": [7, 1], "w": 1, "x": 8, "y": 3.9 } ] } }
M keyboards/cradio/rules.mk => keyboards/cradio/rules.mk +1 -21
@@ 1,21 1,1 @@ # MCU name MCU = atmega32u4 # Bootloader selection BOOTLOADER = atmel-dfu # Build Options # change yes to no to disable # BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite MOUSEKEY_ENABLE = yes # 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 = no # Enable keyboard RGB underglow UNICODE_ENABLE = yes # Unicode AUDIO_ENABLE = no # Audio output SPLIT_KEYBOARD = yes # Use shared split_common code LAYOUTS = split_3x5_2 # This file intentionally left blank
A keyboards/drop/sense75/board.h => keyboards/drop/sense75/board.h +8 -0
@@ 0,0 1,8 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include_next "board.h" #undef STM32_HSECLK #define STM32_HSECLK 16000000U
A keyboards/drop/sense75/config.h => keyboards/drop/sense75/config.h +67 -0
@@ 0,0 1,67 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #define I2C1_SCL_PIN B8 #define I2C1_SDA_PIN B9 #define EXTERNAL_EEPROM_I2C_BASE_ADDRESS 0b10101000 #define EXTERNAL_EEPROM_WP_PIN B7 #define EEPROM_I2C_24LC256 #ifdef RGB_MATRIX_ENABLE # define DRIVER_ADDR_1 0b1010000 # define DRIVER_ADDR_2 0b1011111 # define DRIVER_COUNT 2 # define DRIVER_LED_TOTAL (58 + 53) # define ISSI_PWM_FREQUENCY 0b010 // 26k # define RGB_DISABLE_TIMEOUT 0 # define RGB_DISABLE_WHEN_USB_SUSPENDED # define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_LEFT_RIGHT # define RGB_MATRIX_KEYPRESSES # define RGB_MATRIX_FRAMEBUFFER_EFFECTS # define ENABLE_RGB_MATRIX_ALPHAS_MODS # define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN # define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT # define ENABLE_RGB_MATRIX_BREATHING # define ENABLE_RGB_MATRIX_BAND_SAT # define ENABLE_RGB_MATRIX_BAND_VAL # define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT # define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL # define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT # define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL # define ENABLE_RGB_MATRIX_CYCLE_ALL # define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT # define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN # define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON # define ENABLE_RGB_MATRIX_CYCLE_OUT_IN # define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL # define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL # define ENABLE_RGB_MATRIX_CYCLE_SPIRAL # define ENABLE_RGB_MATRIX_DUAL_BEACON # define ENABLE_RGB_MATRIX_RAINBOW_BEACON # define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS # define ENABLE_RGB_MATRIX_RAINDROPS # define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS # define ENABLE_RGB_MATRIX_HUE_BREATHING # define ENABLE_RGB_MATRIX_PIXEL_FRACTAL # define ENABLE_RGB_MATRIX_PIXEL_FLOW # define ENABLE_RGB_MATRIX_PIXEL_RAIN # define ENABLE_RGB_MATRIX_HUE_PENDULUM # define ENABLE_RGB_MATRIX_HUE_WAVE # define ENABLE_RGB_MATRIX_TYPING_HEATMAP # define ENABLE_RGB_MATRIX_DIGITAL_RAIN # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE # define ENABLE_RGB_MATRIX_SOLID_REACTIVE # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS # define ENABLE_RGB_MATRIX_SPLASH # define ENABLE_RGB_MATRIX_MULTISPLASH # define ENABLE_RGB_MATRIX_SOLID_SPLASH # define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH #endif
A keyboards/drop/sense75/halconf.h => keyboards/drop/sense75/halconf.h +7 -0
@@ 0,0 1,7 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #define HAL_USE_I2C TRUE #include_next <halconf.h>
A keyboards/drop/sense75/info.json => keyboards/drop/sense75/info.json +235 -0
@@ 0,0 1,235 @@ { "keyboard_name": "SENSE75", "manufacturer": "Drop Inc.", "maintainer": "zvecr", "processor": "STM32F303", "bootloader": "stm32-dfu", "diode_direction": "COL2ROW", "matrix_pins": { "cols": ["C15", "C14", "C13", "C12", "C11", "C10", "C9", "C8", "C7", "C6", "C5", "C4", "C3", "C2", "C1"], "rows": ["B15", "B14", "B13", "B12", "B11", "B10"] }, "usb": { "vid": "0x359B", "pid": "0x0001", "device_version": "1.0.0" }, "features": { "rgb_matrix": true, "encoder": true, "bootmagic": true, "command": false, "console": false, "extrakey": true, "mousekey": true, "nkro": true }, "layouts": { "LAYOUT": { "layout": [ { "matrix": [0, 0], "label":"Esc", "x":0, "y":0}, { "matrix": [0, 1], "label":"F1", "x":1.25, "y":0}, { "matrix": [0, 2], "label":"F2", "x":2.25, "y":0}, { "matrix": [0, 3], "label":"F3", "x":3.25, "y":0}, { "matrix": [0, 4], "label":"F4", "x":4.25, "y":0}, { "matrix": [0, 5], "label":"F5", "x":5.5, "y":0}, { "matrix": [0, 6], "label":"F6", "x":6.5, "y":0}, { "matrix": [0, 7], "label":"F7", "x":7.5, "y":0}, { "matrix": [0, 8], "label":"F8", "x":8.5, "y":0}, { "matrix": [0, 9], "label":"F9", "x":9.75, "y":0}, { "matrix": [0, 10], "label":"F10", "x":10.75, "y":0}, { "matrix": [0, 11], "label":"F11", "x":11.75, "y":0}, { "matrix": [0, 12], "label":"F12", "x":12.75, "y":0}, { "matrix": [0, 13], "label":"PrtSc", "x":14, "y":0}, { "matrix": [0, 14], "label":"Mute", "x":15.25, "y":0}, { "matrix": [1, 0], "label":"~", "x":0, "y":1.25}, { "matrix": [1, 1], "label":"!", "x":1, "y":1.25}, { "matrix": [1, 2], "label":"@", "x":2, "y":1.25}, { "matrix": [1, 3], "label":"#", "x":3, "y":1.25}, { "matrix": [1, 4], "label":"$", "x":4, "y":1.25}, { "matrix": [1, 5], "label":"%", "x":5, "y":1.25}, { "matrix": [1, 6], "label":"^", "x":6, "y":1.25}, { "matrix": [1, 7], "label":"&", "x":7, "y":1.25}, { "matrix": [1, 8], "label":"*", "x":8, "y":1.25}, { "matrix": [1, 9], "label":"(", "x":9, "y":1.25}, { "matrix": [1, 10], "label":")", "x":10, "y":1.25}, { "matrix": [1, 11], "label":"_", "x":11, "y":1.25}, { "matrix": [1, 12], "label":"+", "x":12, "y":1.25}, { "matrix": [1, 13], "label":"Backspace", "x":13, "y":1.25, "w":2}, { "matrix": [1, 14], "label":"Del", "x":15.25, "y":1.25}, { "matrix": [2, 0], "label":"Tab", "x":0, "y":2.25, "w":1.5}, { "matrix": [2, 1], "label":"Q", "x":1.5, "y":2.25}, { "matrix": [2, 2], "label":"W", "x":2.5, "y":2.25}, { "matrix": [2, 3], "label":"E", "x":3.5, "y":2.25}, { "matrix": [2, 4], "label":"R", "x":4.5, "y":2.25}, { "matrix": [2, 5], "label":"T", "x":5.5, "y":2.25}, { "matrix": [2, 6], "label":"Y", "x":6.5, "y":2.25}, { "matrix": [2, 7], "label":"U", "x":7.5, "y":2.25}, { "matrix": [2, 8], "label":"I", "x":8.5, "y":2.25}, { "matrix": [2, 9], "label":"O", "x":9.5, "y":2.25}, { "matrix": [2, 10], "label":"P", "x":10.5, "y":2.25}, { "matrix": [2, 11], "label":"{", "x":11.5, "y":2.25}, { "matrix": [2, 12], "label":"}", "x":12.5, "y":2.25}, { "matrix": [2, 13], "label":"|", "x":13.5, "y":2.25, "w":1.5}, { "matrix": [2, 14], "label":"Page Up", "x":15.25, "y":2.25}, { "matrix": [3, 0], "label":"Caps Lock", "x":0, "y":3.25, "w":1.75}, { "matrix": [3, 1], "label":"A", "x":1.75, "y":3.25}, { "matrix": [3, 2], "label":"S", "x":2.75, "y":3.25}, { "matrix": [3, 3], "label":"D", "x":3.75, "y":3.25}, { "matrix": [3, 4], "label":"F", "x":4.75, "y":3.25}, { "matrix": [3, 5], "label":"G", "x":5.75, "y":3.25}, { "matrix": [3, 6], "label":"H", "x":6.75, "y":3.25}, { "matrix": [3, 7], "label":"J", "x":7.75, "y":3.25}, { "matrix": [3, 8], "label":"K", "x":8.75, "y":3.25}, { "matrix": [3, 9], "label":"L", "x":9.75, "y":3.25}, { "matrix": [3, 10], "label":":", "x":10.75, "y":3.25}, { "matrix": [3, 11], "label":"\"", "x":11.75, "y":3.25}, { "matrix": [3, 12], "label":"Enter", "x":12.75, "y":3.25, "w":2.25}, { "matrix": [3, 14], "label":"Page Down", "x":15.25, "y":3.25}, { "matrix": [4, 0], "label":"Shift", "x":0, "y":4.25, "w":2.25}, { "matrix": [4, 1], "label":"Z", "x":2.25, "y":4.25}, { "matrix": [4, 2], "label":"X", "x":3.25, "y":4.25}, { "matrix": [4, 3], "label":"C", "x":4.25, "y":4.25}, { "matrix": [4, 4], "label":"V", "x":5.25, "y":4.25}, { "matrix": [4, 5], "label":"B", "x":6.25, "y":4.25}, { "matrix": [4, 6], "label":"N", "x":7.25, "y":4.25}, { "matrix": [4, 7], "label":"M", "x":8.25, "y":4.25}, { "matrix": [4, 8], "label":"<", "x":9.25, "y":4.25}, { "matrix": [4, 9], "label":">", "x":10.25, "y":4.25}, { "matrix": [4, 10], "label":"?", "x":11.25, "y":4.25}, { "matrix": [4, 11], "label":"Shift", "x":12.25, "y":4.25, "w":1.75}, { "matrix": [4, 13], "label":"\u2191", "x":14.25, "y":4.5}, { "matrix": [5, 0], "label":"Ctrl", "x":0, "y":5.25, "w":1.25}, { "matrix": [5, 1], "label":"Win", "x":1.25, "y":5.25, "w":1.25}, { "matrix": [5, 2], "label":"Alt", "x":2.5, "y":5.25, "w":1.25}, { "matrix": [5, 5], "label":" ", "x":3.75, "y":5.25, "w":6.25}, { "matrix": [5, 8], "label":"Alt", "x":10, "y":5.25}, { "matrix": [5, 9], "label":"Fn", "x":11, "y":5.25}, { "matrix": [5, 10], "label":"Ctrl", "x":12, "y":5.25}, { "matrix": [5, 12], "label":"\u2190", "x":13.25, "y":5.5}, { "matrix": [5, 13], "label":"\u2193", "x":14.25, "y":5.5}, { "matrix": [5, 14], "label":"\u2192", "x":15.25, "y":5.5} ] } }, "rgb_matrix": { "layout": [ { "flags": 2, "x": 2, "y": 0 }, { "flags": 2, "x": 22, "y": 0 }, { "flags": 2, "x": 42, "y": 0 }, { "flags": 2, "x": 62, "y": 0 }, { "flags": 2, "x": 82, "y": 0 }, { "flags": 2, "x": 102, "y": 0 }, { "flags": 2, "x": 122, "y": 0 }, { "flags": 2, "x": 142, "y": 0 }, { "flags": 2, "x": 162, "y": 0 }, { "flags": 2, "x": 182, "y": 0 }, { "flags": 2, "x": 202, "y": 0 }, { "flags": 2, "x": 222, "y": 0 }, { "flags": 2, "x": 0, "y": 7 }, { "flags": 4, "matrix": [0, 0], "x": 6, "y": 8 }, { "flags": 4, "matrix": [0, 1], "x": 24, "y": 8 }, { "flags": 4, "matrix": [0, 2], "x": 37, "y": 8 }, { "flags": 4, "matrix": [0, 3], "x": 51, "y": 8 }, { "flags": 4, "matrix": [0, 4], "x": 66, "y": 8 }, { "flags": 4, "matrix": [0, 5], "x": 82, "y": 8 }, { "flags": 4, "matrix": [0, 6], "x": 96, "y": 8 }, { "flags": 4, "matrix": [0, 7], "x": 110, "y": 8 }, { "flags": 4, "matrix": [0, 8], "x": 124, "y": 8 }, { "flags": 4, "matrix": [0, 9], "x": 141, "y": 8 }, { "flags": 4, "matrix": [0, 10], "x": 155, "y": 8 }, { "flags": 4, "matrix": [0, 11], "x": 169, "y": 8 }, { "flags": 4, "matrix": [0, 12], "x": 182, "y": 8 }, { "flags": 4, "matrix": [0, 13], "x": 199, "y": 8 }, { "flags": 2, "x": 224, "y": 4 }, { "flags": 2, "x": 0, "y": 12 }, { "flags": 4, "matrix": [1, 0], "x": 6, "y": 20 }, { "flags": 4, "matrix": [1, 1], "x": 20, "y": 20 }, { "flags": 4, "matrix": [1, 2], "x": 34, "y": 20 }, { "flags": 4, "matrix": [1, 3], "x": 48, "y": 20 }, { "flags": 4, "matrix": [1, 4], "x": 62, "y": 20 }, { "flags": 4, "matrix": [1, 5], "x": 75, "y": 20 }, { "flags": 4, "matrix": [1, 6], "x": 90, "y": 20 }, { "flags": 4, "matrix": [1, 7], "x": 103, "y": 20 }, { "flags": 4, "matrix": [1, 8], "x": 117, "y": 20 }, { "flags": 4, "matrix": [1, 9], "x": 130, "y": 20 }, { "flags": 4, "matrix": [1, 10], "x": 144, "y": 20 }, { "flags": 4, "matrix": [1, 11], "x": 158, "y": 20 }, { "flags": 4, "matrix": [1, 12], "x": 170, "y": 20 }, { "flags": 4, "matrix": [1, 13], "x": 192, "y": 20 }, { "flags": 4, "matrix": [1, 14], "x": 217, "y": 20 }, { "flags": 2, "x": 224, "y": 12 }, { "flags": 2, "x": 0, "y": 22 }, { "flags": 4, "matrix": [2, 0], "x": 10, "y": 30 }, { "flags": 4, "matrix": [2, 1], "x": 27, "y": 30 }, { "flags": 4, "matrix": [2, 2], "x": 41, "y": 30 }, { "flags": 4, "matrix": [2, 3], "x": 54, "y": 30 }, { "flags": 4, "matrix": [2, 4], "x": 69, "y": 30 }, { "flags": 4, "matrix": [2, 5], "x": 82, "y": 30 }, { "flags": 4, "matrix": [2, 6], "x": 96, "y": 30 }, { "flags": 4, "matrix": [2, 7], "x": 110, "y": 30 }, { "flags": 4, "matrix": [2, 8], "x": 123, "y": 30 }, { "flags": 4, "matrix": [2, 9], "x": 138, "y": 30 }, { "flags": 4, "matrix": [2, 10], "x": 151, "y": 30 }, { "flags": 4, "matrix": [2, 11], "x": 165, "y": 30 }, { "flags": 4, "matrix": [2, 12], "x": 179, "y": 30 }, { "flags": 4, "matrix": [2, 13], "x": 196, "y": 30 }, { "flags": 4, "matrix": [2, 14], "x": 217, "y": 30 }, { "flags": 2, "x": 224, "y": 22 }, { "flags": 4, "matrix": [3, 0], "x": 11, "y": 40 }, { "flags": 4, "matrix": [3, 1], "x": 30, "y": 40 }, { "flags": 4, "matrix": [3, 2], "x": 44, "y": 40 }, { "flags": 4, "matrix": [3, 3], "x": 57, "y": 40 }, { "flags": 4, "matrix": [3, 4], "x": 72, "y": 40 }, { "flags": 4, "matrix": [3, 5], "x": 85, "y": 40 }, { "flags": 4, "matrix": [3, 6], "x": 99, "y": 40 }, { "flags": 4, "matrix": [3, 7], "x": 113, "y": 40 }, { "flags": 4, "matrix": [3, 8], "x": 126, "y": 40 }, { "flags": 4, "matrix": [3, 9], "x": 140, "y": 40 }, { "flags": 4, "matrix": [3, 10], "x": 154, "y": 40 }, { "flags": 4, "matrix": [3, 11], "x": 169, "y": 40 }, { "flags": 4, "matrix": [3, 12], "x": 190, "y": 40 }, { "flags": 4, "matrix": [3, 14], "x": 217, "y": 40 }, { "flags": 2, "x": 0, "y": 42 }, { "flags": 4, "matrix": [4, 0], "x": 15, "y": 50 }, { "flags": 4, "matrix": [4, 1], "x": 37, "y": 50 }, { "flags": 4, "matrix": [4, 2], "x": 51, "y": 50 }, { "flags": 4, "matrix": [4, 3], "x": 66, "y": 50 }, { "flags": 4, "matrix": [4, 4], "x": 79, "y": 50 }, { "flags": 4, "matrix": [4, 5], "x": 93, "y": 50 }, { "flags": 4, "matrix": [4, 6], "x": 107, "y": 50 }, { "flags": 4, "matrix": [4, 7], "x": 120, "y": 50 }, { "flags": 4, "matrix": [4, 8], "x": 134, "y": 50 }, { "flags": 4, "matrix": [4, 9], "x": 148, "y": 50 }, { "flags": 4, "matrix": [4, 10], "x": 161, "y": 50 }, { "flags": 4, "matrix": [4, 11], "x": 180, "y": 50 }, { "flags": 4, "matrix": [4, 13], "x": 202, "y": 53 }, { "flags": 2, "x": 224, "y": 42 }, { "flags": 2, "x": 0, "y": 51 }, { "flags": 4, "matrix": [5, 0], "x": 8, "y": 60 }, { "flags": 4, "matrix": [5, 1], "x": 26, "y": 60 }, { "flags": 4, "matrix": [5, 2], "x": 42, "y": 60 }, { "flags": 4, "matrix": [5, 5], "x": 94, "y": 60 }, { "flags": 4, "matrix": [5, 8], "x": 144, "y": 60 }, { "flags": 4, "matrix": [5, 9], "x": 158, "y": 60 }, { "flags": 4, "matrix": [5, 10], "x": 172, "y": 60 }, { "flags": 4, "matrix": [5, 12], "x": 189, "y": 63 }, { "flags": 4, "matrix": [5, 13], "x": 202, "y": 63 }, { "flags": 4, "matrix": [5, 14], "x": 217, "y": 63 }, { "flags": 2, "x": 224, "y": 51 }, { "flags": 2, "x": 9, "y": 64 }, { "flags": 2, "x": 38, "y": 64 }, { "flags": 2, "x": 69, "y": 64 }, { "flags": 2, "x": 96, "y": 64 }, { "flags": 2, "x": 125, "y": 64 }, { "flags": 2, "x": 154, "y": 64 }, { "flags": 2, "x": 182, "y": 64 }, { "flags": 2, "x": 211, "y": 64 } ] }, "encoder": { "rotary": [ { "pin_a": "B5", "pin_b": "B4", "resolution": 2 } ] } }
A keyboards/drop/sense75/keymaps/default/keymap.c => keyboards/drop/sense75/keymaps/default/keymap.c +52 -0
@@ 0,0 1,52 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { /* * ┌───┐┌───┬───┬───┬───┐┌───┬───┬───┬───┐┌───┬───┬───┬───┐┌───┐┌───┐ * │Esc││F1 │F2 │F3 │F4 ││F5 │F6 │F7 │F8 ││F9 │F10│F11│F12││PSc││ │ * └───┘└───┴───┴───┴───┘└───┴───┴───┴───┴└───┴───┴───┴───┘└───┘└───┘ * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐┌───┐ * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp││Del│ * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤├───┤ * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ ││PgU│ * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤├───┤ * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter ││PgD│ * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┘└───┘ * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│┌───┐ * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┘│ ↑ │ * │Ctrl│GUI │Alt │ │Alt│GUI│Ctl│┌───┼───┼───┐ * └────┴────┴────┴────────────────────────┴───┴───┴───┘│ ← │ ↓ │ → │ * └───┴───┴───┘ */ [0] = LAYOUT( KC_ESC, 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_PSCR, KC_MUTE, 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_DEL, 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_BSLS, KC_PGUP, 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_ENT, KC_PGDN, KC_LSFT, 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_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT ), [1] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, QK_BOOT, _______, _______, RGB_TOG, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, RGB_MOD, RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, KC_END, _______, RGB_M_P, RGB_M_B, RGB_M_R, RGB_M_SW,_______, NK_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, EE_CLR, _______, _______, _______, _______, _______, _______ ) }; #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_MPRV, KC_MNXT) } }; #endif void rgb_matrix_indicators_user(void) { if (host_keyboard_led_state().caps_lock) { rgb_matrix_set_color(62, RGB_WHITE); } }
A keyboards/drop/sense75/keymaps/default/rules.mk => keyboards/drop/sense75/keymaps/default/rules.mk +1 -0
A keyboards/drop/sense75/keymaps/default_md/keymap.c => keyboards/drop/sense75/keymaps/default_md/keymap.c +136 -0
@@ 0,0 1,136 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #include QMK_KEYBOARD_H enum custom_keycodes { TEST_1 = SAFE_RANGE, TEST_2, TEST_3, TEST_4, }; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { /* * ┌───┐┌───┬───┬───┬───┐┌───┬───┬───┬───┐┌───┬───┬───┬───┐┌───┐┌───┐ * │Esc││F1 │F2 │F3 │F4 ││F5 │F6 │F7 │F8 ││F9 │F10│F11│F12││PSc││ │ * └───┘└───┴───┴───┴───┘└───┴───┴───┴───┴└───┴───┴───┴───┘└───┘└───┘ * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐┌───┐ * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp││Del│ * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤├───┤ * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ ││PgU│ * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤├───┤ * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter ││PgD│ * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┘└───┘ * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│┌───┐ * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┘│ ↑ │ * │Ctrl│GUI │Alt │ │Alt│GUI│Ctl│┌───┼───┼───┐ * └────┴────┴────┴────────────────────────┴───┴───┴───┘│ ← │ ↓ │ → │ * └───┴───┴───┘ */ [0] = LAYOUT( KC_ESC, 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_PSCR, KC_MUTE, 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_DEL, 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_BSLS, KC_PGUP, 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_ENT, KC_PGDN, KC_LSFT, 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_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT ), [1] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, QK_BOOT, _______, _______, RGB_TOG, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, RGB_MOD, RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, KC_END, _______, RGB_M_P, RGB_M_B, RGB_M_R, RGB_M_SW,_______, NK_TOGG, _______, _______, _______, _______, _______, _______, MO(2), _______, _______, EE_CLR, _______, _______, _______, _______, _______, _______ ), [2] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, TEST_1, TEST_2, TEST_3, TEST_4, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, AG_TOGG, _______, _______, _______, CL_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ) }; #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_MPRV, KC_MNXT) }, [2] = { ENCODER_CCW_CW(_______, _______) } }; #endif static bool test_mode = false; bool process_record_user(uint16_t keycode, keyrecord_t *record) { if (!record->event.pressed) { switch (keycode) { case TEST_1: rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgb_matrix_sethsv_noeeprom(HSV_RED); test_mode = true; break; case TEST_2: rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgb_matrix_sethsv_noeeprom(HSV_GREEN); test_mode = true; break; case TEST_3: rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgb_matrix_sethsv_noeeprom(HSV_BLUE); test_mode = true; break; case TEST_4: rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgb_matrix_sethsv_noeeprom(HSV_WHITE); test_mode = true; break; case RGB_TOG: switch (rgb_matrix_get_flags()) { case LED_FLAG_ALL: rgb_matrix_set_flags(LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR); break; case (LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR): rgb_matrix_set_flags(LED_FLAG_UNDERGLOW); break; case LED_FLAG_UNDERGLOW: rgb_matrix_set_flags(LED_FLAG_NONE); break; default: rgb_matrix_set_flags(LED_FLAG_ALL); break; } return false; } } return true; }; void rgb_matrix_indicators_user(void) { if (host_keyboard_led_state().caps_lock) { rgb_matrix_set_color(62, RGB_WHITE); } else if ((rgb_matrix_get_flags() & (LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR)) == 0) { rgb_matrix_set_color(62, RGB_OFF); } if (get_highest_layer(layer_state) == 2) { if (!test_mode) { rgb_matrix_set_color_all(RGB_OFF); } if (keymap_config.swap_lalt_lgui) { rgb_matrix_set_color(55, RGB_GREEN); } else { rgb_matrix_set_color(55, RGB_RED); } if (keymap_config.swap_control_capslock) { rgb_matrix_set_color(59, RGB_GREEN); } else { rgb_matrix_set_color(59, RGB_RED); } } else if ((rgb_matrix_get_flags() & (LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR)) == 0) { rgb_matrix_set_color(55, RGB_OFF); rgb_matrix_set_color(59, RGB_OFF); } }
A keyboards/drop/sense75/keymaps/default_md/readme.md => keyboards/drop/sense75/keymaps/default_md/readme.md +1 -0
A keyboards/drop/sense75/keymaps/default_md/rules.mk => keyboards/drop/sense75/keymaps/default_md/rules.mk +1 -0
A keyboards/drop/sense75/keymaps/via/config.h => keyboards/drop/sense75/keymaps/via/config.h +5 -0
@@ 0,0 1,5 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #define DYNAMIC_KEYMAP_LAYER_COUNT 8
A keyboards/drop/sense75/keymaps/via/keymap.c => keyboards/drop/sense75/keymaps/via/keymap.c +79 -0
@@ 0,0 1,79 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #include QMK_KEYBOARD_H const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { /* * ┌───┐┌───┬───┬───┬───┐┌───┬───┬───┬───┐┌───┬───┬───┬───┐┌───┐┌───┐ * │Esc││F1 │F2 │F3 │F4 ││F5 │F6 │F7 │F8 ││F9 │F10│F11│F12││PSc││ │ * └───┘└───┴───┴───┴───┘└───┴───┴───┴───┴└───┴───┴───┴───┘└───┘└───┘ * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐┌───┐ * │ ` │ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Backsp││Del│ * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤├───┤ * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ ││PgU│ * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤├───┤ * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter ││PgD│ * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┘└───┘ * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │ Shift│┌───┐ * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴──┬┴──┬┴──┬───┘│ ↑ │ * │Ctrl│GUI │Alt │ │Alt│GUI│Ctl│┌───┼───┼───┐ * └────┴────┴────┴────────────────────────┴───┴───┴───┘│ ← │ ↓ │ → │ * └───┴───┴───┘ */ [0] = LAYOUT( KC_ESC, 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_PSCR, KC_MUTE, 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_DEL, 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_BSLS, KC_PGUP, 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_ENT, KC_PGDN, KC_LSFT, 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_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT ), [1] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, QK_BOOT, _______, _______, RGB_TOG, RGB_VAI, RGB_SPI, RGB_HUI, RGB_SAI, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, _______, RGB_MOD, RGB_VAD, RGB_SPD, RGB_HUD, RGB_SAD, _______, _______, _______, _______, _______, _______, _______, KC_END, _______, RGB_M_P, RGB_M_B, RGB_M_R, RGB_M_SW,_______, NK_TOGG, _______, _______, _______, _______, _______, _______, MO(2), _______, _______, EE_CLR, _______, _______, _______, _______, _______, _______ ), [2] = LAYOUT( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, AG_TOGG, _______, _______, _______, CL_TOGG, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ) }; #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_MPRV, KC_MNXT) }, [2] = { ENCODER_CCW_CW(_______, _______) } }; #endif bool process_record_user(uint16_t keycode, keyrecord_t *record) { if (!record->event.pressed) { switch (keycode) { case RGB_TOG: switch (rgb_matrix_get_flags()) { case LED_FLAG_ALL: rgb_matrix_set_flags(LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR); break; case (LED_FLAG_KEYLIGHT | LED_FLAG_MODIFIER | LED_FLAG_INDICATOR): rgb_matrix_set_flags(LED_FLAG_UNDERGLOW); break; case LED_FLAG_UNDERGLOW: rgb_matrix_set_flags(LED_FLAG_NONE); break; default: rgb_matrix_set_flags(LED_FLAG_ALL); break; } return false; } } return true; };
A keyboards/drop/sense75/keymaps/via/rules.mk => keyboards/drop/sense75/keymaps/via/rules.mk +2 -0
A keyboards/drop/sense75/mcuconf.h => keyboards/drop/sense75/mcuconf.h +14 -0
@@ 0,0 1,14 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #pragma once #include_next <mcuconf.h> #undef STM32_PLLM_VALUE #define STM32_PLLM_VALUE 16 #undef STM32_PREDIV_VALUE #define STM32_PREDIV_VALUE 2 #undef STM32_I2C_USE_I2C1 #define STM32_I2C_USE_I2C1 TRUE
A keyboards/drop/sense75/readme.md => keyboards/drop/sense75/readme.md +24 -0
@@ 0,0 1,24 @@ # SENSE75  * Keyboard Maintainer: [zvecr](https://github.com/zvecr) * Hardware Availability: <https://drop.com/buy/drop-sense75-mechanical-keyboard> Make example for this keyboard (after setting up your build environment): make drop/sense75:default Flashing example for this keyboard: make drop/sense75: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**: Press and hold the button under the space bar * **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
A keyboards/drop/sense75/rules.mk => keyboards/drop/sense75/rules.mk +2 -0
A keyboards/drop/sense75/sense75.c => keyboards/drop/sense75/sense75.c +148 -0
@@ 0,0 1,148 @@ // Copyright 2022 Massdrop, Inc. // SPDX-License-Identifier: GPL-2.0-or-later #include "rgb_matrix.h" #ifdef RGB_MATRIX_ENABLE const is31_led PROGMEM g_is31_leds[DRIVER_LED_TOTAL] = { // top underglow sd2-sd17 { 0, B_2, A_2, C_2 }, { 0, B_3, A_3, C_3 }, { 0, B_5, A_5, C_5 }, { 0, B_6, A_6, C_6 }, { 0, B_7, A_7, C_7 }, { 0, B_9, A_9, C_9 }, { 0, B_10, A_10, C_10 }, { 0, B_12, A_12, C_12 }, { 0, B_13, A_13, C_13 }, { 0, B_14, A_14, C_14 }, { 0, B_16, A_16, C_16 }, { 1, B_12, A_12, C_12 }, // sd1 + function + sd18 { 0, B_1, A_1, C_1 }, { 0, E_2, D_2, F_2 }, { 0, E_3, D_3, F_3 }, { 0, E_4, D_4, F_4 }, { 0, E_5, D_5, F_5 }, { 0, E_6, D_6, F_6 }, { 0, E_7, D_7, F_7 }, { 0, E_8, D_8, F_8 }, { 0, E_9, D_9, F_9 }, { 0, E_10, D_10, F_10 }, { 0, E_11, D_11, F_11 }, { 0, E_12, D_12, F_12 }, { 0, E_13, D_13, F_13 }, { 0, E_14, D_14, F_14 }, { 0, E_15, D_15, F_15 }, // <enc gap> { 1, B_13, A_13, C_13 }, // sd45 + num + sd20 { 0, H_1, G_1, I_1 }, { 0, H_2, G_2, I_2 }, { 0, H_3, G_3, I_3 }, { 0, H_4, G_4, I_4 }, { 0, H_5, G_5, I_5 }, { 0, H_6, G_6, I_6 }, { 0, H_7, G_7, I_7 }, { 0, H_8, G_8, I_8 }, { 0, H_9, G_9, I_9 }, { 0, H_10, G_10, I_10 }, { 0, H_11, G_11, I_11 }, { 0, H_12, G_12, I_12 }, { 0, H_13, G_13, I_13 }, { 0, H_14, G_14, I_14 }, { 0, H_15, G_15, I_15 }, { 0, H_16, G_16, I_16 }, { 1, B_15, A_15, C_15 }, // 44+ qwer 21 { 0, K_1, J_1, L_1 }, { 0, K_2, J_2, L_2 }, { 0, K_3, J_3, L_3 }, { 0, K_4, J_4, L_4 }, { 0, K_5, J_5, L_5 }, { 0, K_6, J_6, L_6 }, { 0, K_7, J_7, L_7 }, { 0, K_8, J_8, L_8 }, { 0, K_9, J_9, L_9 }, { 0, K_10, J_10, L_10 }, { 0, K_11, J_11, L_11 }, { 0, K_12, J_12, L_12 }, { 0, K_13, J_13, L_13 }, { 0, K_14, J_14, L_14 }, { 0, K_15, J_15, L_15 }, { 0, K_16, J_16, L_16 }, { 1, B_16, A_16, C_16 }, // asdf { 1, B_2, A_2, C_2 }, { 1, B_3, A_3, C_3 }, { 1, B_4, A_4, C_4 }, { 1, B_5, A_5, C_5 }, { 1, B_6, A_6, C_6 }, { 1, B_7, A_7, C_7 }, { 1, B_8, A_8, C_8 }, { 1, B_9, A_9, C_9 }, { 1, B_10, A_10, C_10 }, { 1, B_11, A_11, C_11 }, { 1, E_12, D_12, F_12 }, { 1, E_13, D_13, F_13 }, { 1, E_14, D_14, F_14 }, { 1, H_15, G_15, I_15 }, // 43 + zxcv + 22 { 1, B_1, A_1, C_1 }, { 1, E_2, D_2, F_2 }, { 1, E_3, D_3, F_3 }, { 1, E_4, D_4, F_4 }, { 1, E_5, D_5, F_5 }, { 1, E_6, D_6, F_6 }, { 1, E_7, D_7, F_7 }, { 1, E_8, D_8, F_8 }, { 1, E_9, D_9, F_9 }, { 1, E_10, D_10, F_10 }, { 1, E_11, D_11, F_11 }, { 1, H_12, G_12, I_12 }, { 1, H_13, G_13, I_13 }, { 1, H_14, G_14, I_14 }, { 1, E_15, D_15, F_15 }, // 41 + mods + 23 { 1, H_1, G_1, I_1 }, { 1, H_2, G_2, I_2 }, { 1, H_3, G_3, I_3 }, { 1, H_4, G_4, I_4 }, { 1, H_5, G_5, I_5 }, { 1, H_6, G_6, I_6 }, { 1, H_7, G_7, I_7 }, { 1, H_8, G_8, I_8 }, { 1, H_9, G_9, I_9 }, { 1, H_10, G_10, I_10 }, { 1, H_11, G_11, I_11 }, { 1, E_16, D_16, F_16 }, // bottom underglow 24 - 39 { 1, K_2, J_2, L_2 }, { 1, K_3, J_3, L_3 }, { 1, K_4, J_4, L_4 }, { 1, K_6, J_6, L_6 }, { 1, K_10, J_10, L_10 }, { 1, K_13, J_13, L_13 }, { 1, K_15, J_15, L_15 }, { 1, H_16, G_16, I_16 } }; #endif #ifdef ENCODER_ENABLE bool encoder_update_kb(uint8_t index, bool clockwise) { if (!encoder_update_user(index, clockwise)) return false; if (clockwise) { tap_code(KC_VOLU); } else { tap_code(KC_VOLD); } return false; } #endif
A keyboards/gmmk/pro/rev1/iso/keymaps/falkecarlsen/keymap.c => keyboards/gmmk/pro/rev1/iso/keymaps/falkecarlsen/keymap.c +72 -0
@@ 0,0 1,72 @@ /* Copyright 2021 Glorious, LLC <salman@pcgamingrace.com> 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 // clang-format off const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { // ESC F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 Prt Rotary(Mute) // ~ 1 2 3 4 5 6 7 8 9 0 - (=) BackSpc Del // Tab Q W E R T Y U I O P [ ] PgUp // Caps A S D F G H J K L ; " # Enter PgDn // Sh_L / Z X C V B N M , . ? Sh_R Up End // Ct_L Win_L Alt_L SPACE Alt_R FN Ct_R Left Down Right // The FN key by default maps to a momentary toggle to layer 1 to provide access to the QK_BOOT key (to put the board into bootloader mode). Without // this mapping, you have to open the case to hit the button on the bottom of the PCB (near the USB cable attachment) while plugging in the USB // cable to get the board into bootloader mode - definitely not fun when you're working on your QMK builds. Remove this and put it back to KC_RGUI // if that's your preference. // // To put the keyboard in bootloader mode, use FN+backspace. If you accidentally put it into bootloader, you can just unplug the USB cable and // it'll be back to normal when you plug it back in. // // This keyboard defaults to 6KRO instead of NKRO for compatibility reasons (some KVMs and BIOSes are incompatible with NKRO). // Since this is, among other things, a "gaming" keyboard, a key combination to enable NKRO on the fly is provided for convenience. // Press Fn+N to toggle between 6KRO and NKRO. This setting is persisted to the EEPROM and thus persists between restarts. [0] = LAYOUT( KC_ESC, 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_DEL, KC_MPLY, 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_HOME, 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_PGUP, MO(1), 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_PGDN, 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_END, KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RGHT ), [1] = LAYOUT( _______, KC_BRID, KC_BRIU, _______, _______, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, KC_MUTE, KC_VOLD, KC_VOLU, KC_MSTP, KC_MNXT, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, QK_BOOT, _______, _______, KC_BTN1, KC_MS_U, KC_BTN2, KC_WH_U, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MS_L, KC_MS_D, KC_MS_R, KC_WH_D, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAD, RGB_TOG, RGB_VAI, RGB_HUI, _______, NK_TOGG, _______, _______, _______, _______, _______, RGB_MOD, _______, _______, _______, _______, _______, _______, _______, _______, RGB_SPD, RGB_RMOD, RGB_SPI ), }; // clang-format on #ifdef ENCODER_ENABLE bool encoder_update_user(uint8_t index, bool clockwise) { if (clockwise) { tap_code(KC_VOLU); } else { tap_code(KC_VOLD); } return false; } #endif
A keyboards/gmmk/pro/rev1/iso/keymaps/falkecarlsen/readme.md => keyboards/gmmk/pro/rev1/iso/keymaps/falkecarlsen/readme.md +8 -0
@@ 0,0 1,8 @@ # Falke Carlsen keymap for GMMK PRO ISO Based on the default keymap, inheriting rotary encoder and LED configs without modification. ## Changes: - Fixes layer 1 of top-row to correspond to 'Keychron ISO Q1 & K2 Dye-Sub PBT Nordic' printed legend multimedia keys. - Adds early 2010s Ducky layer 1 mouse-emulation to WASD with left+right click and scroll in the 2x4 cluster. - Remaps default keymaps LED-handling to 2nd-row due to addition of mouse-emulation. - Swap layer 0 rotary encoder click to play/pause, and layer 1 click to next.
A keyboards/handwired/jscotto/scotto36/info.json => keyboards/handwired/jscotto/scotto36/info.json +77 -0
@@ 0,0 1,77 @@ { "manufacturer": "Joe Scotto", "keyboard_name": "Scotto36", "maintainer": "joe-scotto", "bootloader": "caterina", "diode_direction": "COL2ROW", "features": { "bootmagic": true, "command": false, "console": false, "extrakey": true, "mousekey": true, "nkro": true }, "matrix_pins": { // 4, 5, 6, 7, 8, 9, A3, A2, A1, A0 "cols": ["D4", "C6", "D7", "E6", "B4", "B5", "F4", "F5", "F6", "F7"], // 15, 14, 16, 10 "rows": ["B1", "B3", "B2", "B6"] }, "processor": "atmega32u4", "url": "", "usb": { "device_version": "1.0.0", "pid": "0x0000", "vid": "0xFEED" }, "layouts": { "LAYOUT_ortho_3x10_6": { "layout": [ { "matrix": [0, 0], "x": 0, "y": 0 }, { "matrix": [0, 1], "x": 1, "y": 0 }, { "matrix": [0, 2], "x": 2, "y": 0 }, { "matrix": [0, 3], "x": 3, "y": 0 }, { "matrix": [0, 4], "x": 4, "y": 0 }, { "matrix": [0, 5], "x": 5, "y": 0 }, { "matrix": [0, 6], "x": 6, "y": 0 }, { "matrix": [0, 7], "x": 7, "y": 0 }, { "matrix": [0, 8], "x": 8, "y": 0 }, { "matrix": [0, 9], "x": 9, "y": 0 }, // Row 2 { "matrix": [1, 0], "x": 0, "y": 1 }, { "matrix": [1, 1], "x": 1, "y": 1 }, { "matrix": [1, 2], "x": 2, "y": 1 }, { "matrix": [1, 3], "x": 3, "y": 1 }, { "matrix": [1, 4], "x": 4, "y": 1 }, { "matrix": [1, 5], "x": 5, "y": 1 }, { "matrix": [1, 6], "x": 6, "y": 1 }, { "matrix": [1, 7], "x": 7, "y": 1 }, { "matrix": [1, 8], "x": 8, "y": 1 }, { "matrix": [1, 9], "x": 9, "y": 1 }, // Row 3 { "matrix": [2, 0], "x": 0, "y": 2 }, { "matrix": [2, 1], "x": 1, "y": 2 }, { "matrix": [2, 2], "x": 2, "y": 2 }, { "matrix": [2, 3], "x": 3, "y": 2 }, { "matrix": [2, 4], "x": 4, "y": 2 }, { "matrix": [2, 5], "x": 5, "y": 2 }, { "matrix": [2, 6], "x": 6, "y": 2 }, { "matrix": [2, 7], "x": 7, "y": 2 }, { "matrix": [2, 8], "x": 8, "y": 2 }, { "matrix": [2, 9], "x": 9, "y": 2 }, // Row 4 { "matrix": [3, 2], "x": 2, "y": 3 }, { "matrix": [3, 3], "x": 3, "y": 3 }, { "matrix": [3, 4], "x": 4, "y": 3 }, { "matrix": [3, 5], "x": 5, "y": 3 }, { "matrix": [3, 6], "x": 6, "y": 3 }, { "matrix": [3, 7], "x": 7, "y": 3 } ] } } }
A keyboards/handwired/jscotto/scotto36/keymaps/default/config.h => keyboards/handwired/jscotto/scotto36/keymaps/default/config.h +24 -0
@@ 0,0 1,24 @@ /* Copyright 2022 Joe Scotto 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 // Define options #define IGNORE_MOD_TAP_INTERRUPT #define TAPPING_TERM 135 #define PERMISSIVE_HOLD #define TAPPING_TERM_PER_KEY
A keyboards/handwired/jscotto/scotto36/keymaps/default/keymap.c => keyboards/handwired/jscotto/scotto36/keymaps/default/keymap.c +281 -0
@@ 0,0 1,281 @@ /* Copyright 2022 Joe Scotto 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 #include <stdio.h> char wpm_str[10]; // Tap Dance declarations enum { TD_ESC_SPOTLIGHT_EMOJI, TD_ESC_WINDOWS_EMOJI }; void td_esc_spotlight_emoji (qk_tap_dance_state_t *state, void *user_data) { if (state->count == 1) { tap_code(KC_ESC); } else if (state->count == 2) { tap_code16(G(KC_SPC)); } else if (state->count == 3) { tap_code16(C(G(KC_SPC))); } } void td_esc_windows_emoji (qk_tap_dance_state_t *state, void *user_data) { if (state->count == 1) { tap_code(KC_ESC); } else if (state->count == 2) { tap_code(KC_LGUI); } else if (state->count == 3) { tap_code16(G(KC_DOT)); } }; // Tap Dance definitions qk_tap_dance_action_t tap_dance_actions[] = { [TD_ESC_SPOTLIGHT_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_spotlight_emoji), [TD_ESC_WINDOWS_EMOJI] = ACTION_TAP_DANCE_FN(td_esc_windows_emoji) }; uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case TD(TD_ESC_SPOTLIGHT_EMOJI) : case TD(TD_ESC_WINDOWS_EMOJI) : case LGUI_T(KC_SPC) : case LT(1, KC_TAB) : case LT(2, KC_ENT) : return 200; default: return TAPPING_TERM; } }; // Layer Names enum layer_names { _MAC_DEFAULT, _MAC_CODE, _MAC_NUM, _MAC_FUNC, _WIN_DEFAULT, _WIN_CODE, _WIN_NUM, _WIN_FUNC }; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [0] = LAYOUT_ortho_3x10_6( KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMMA, KC_DOT, RSFT_T(KC_SLSH), KC_LCTL, KC_LALT, LGUI_T(KC_SPC), LT(1, KC_TAB), LT(2, KC_ENT), TD(TD_ESC_SPOTLIGHT_EMOJI) ), [1] = LAYOUT_ortho_3x10_6( KC_UNDS, KC_MINS, KC_PLUS, KC_EQL, KC_COLN, KC_GRV, KC_MRWD, KC_MPLY, KC_MFFD, KC_DEL, KC_LCBR, KC_LPRN, KC_RPRN, KC_RCBR, KC_PIPE, KC_ESC, KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, LSFT_T(KC_LBRC), KC_QUOT, KC_DQUO, KC_RBRC, KC_SCLN, KC_TILDE, KC_VOLD, KC_MUTE, KC_VOLU, RSFT_T(KC_BSLS), KC_LCTL, KC_LALT, LGUI_T(KC_SPC), KC_TRNS, KC_TRNS, TD(TD_ESC_SPOTLIGHT_EMOJI) ), [2] = LAYOUT_ortho_3x10_6( KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_CAPS, KC_BSPC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LSFT, KC_NO, KC_NO, KC_NO, MO(3), KC_NO, KC_NO, KC_COMM, KC_DOT, RSFT_T(KC_SLSH), KC_LCTL, KC_LALT, LGUI_T(KC_SPC), KC_TRNS, KC_TRNS, TD(TD_ESC_SPOTLIGHT_EMOJI) ), [3] = LAYOUT_ortho_3x10_6( KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, TO(4), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_NO, KC_NO, QK_BOOT, KC_TRNS, KC_NO, KC_NO, KC_NO, KC_NO, KC_F12, KC_LCTL, KC_LALT, LGUI_T(KC_SPC), KC_TRNS, KC_TRNS, TD(TD_ESC_SPOTLIGHT_EMOJI) ), [4] = LAYOUT_ortho_3x10_6( KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, LSFT_T(KC_Z), KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMMA, KC_DOT, RSFT_T(KC_SLSH), KC_LALT, KC_LCTL, KC_SPC, LT(5, KC_TAB), LT(6, KC_ENT), TD(TD_ESC_WINDOWS_EMOJI) ), [5] = LAYOUT_ortho_3x10_6( KC_UNDS, KC_MINS, KC_PLUS, KC_EQL, KC_COLN, KC_GRV, KC_MRWD, KC_MPLY, KC_MFFD, KC_DEL, KC_LCBR, KC_LPRN, KC_RPRN, KC_RCBR, KC_PIPE, KC_ESC, KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, LSFT_T(KC_LBRC), KC_QUOT, KC_DQUO, KC_RBRC, KC_SCLN, KC_TILDE,KC_VOLD, KC_MUTE, KC_VOLU, RSFT_T(KC_BSLS), KC_LALT, KC_LCTL, KC_SPC, KC_TRNS, KC_TRNS, TD(TD_ESC_WINDOWS_EMOJI) ), [6] = LAYOUT_ortho_3x10_6( KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_CAPS, KC_BSPC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_LSFT, KC_NO, KC_NO, KC_NO, MO(7), KC_NO, KC_NO, KC_COMM, KC_DOT, RSFT_T(KC_SLSH), KC_LALT, KC_LCTL, KC_SPC, KC_TRNS, KC_TRNS, TD(TD_ESC_WINDOWS_EMOJI) ), [7] = LAYOUT_ortho_3x10_6( KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, TO(0), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_NO, KC_NO, QK_BOOT, KC_TRNS, KC_NO, KC_NO, KC_NO, KC_NO, KC_F12, KC_LALT, KC_LCTL, KC_SPC, KC_TRNS, KC_TRNS, TD(TD_ESC_WINDOWS_EMOJI) ) }; // OLED #ifdef OLED_ENABLE // WPM responsiveness #define IDLE_FRAMES 5 #define IDLE_SPEED 20 // Speed at which animation goes into idle #define TAP_FRAMES 2 #define TAP_SPEED 40 // WPM to trigger Bongo #define ANIM_FRAME_DURATION 200 // Frame MS #define ANIM_SIZE 636 // Number of bytes in array, max 1024 uint32_t anim_timer = 0; uint32_t anim_sleep = 0; uint8_t current_idle_frame = 0; uint8_t current_tap_frame = 0; static void render_animation(void) { static const char PROGMEM idle[IDLE_FRAMES][ANIM_SIZE] = {{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x20, 0x18, 0x04, 0x02, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xc1, 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x80, 0x80, 0x40, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x83, 0x83, 0x40, 0x40, 0x40, 0x40, 0x20, 0x21, 0x21, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x30, 0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x86, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x41, 0x42, 0x24, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, 0x40, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xc1, 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x80, 0x00, 0x00, 0x60, 0x60, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x30, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x86, 0x86, 0x40, 0x40, 0x40, 0x40, 0x21, 0x22, 0x22, 0x20, 0x11, 0x11, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x30, 0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x86, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x41, 0x42, 0x24, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x82, 0x02, 0x02, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x80, 0x00, 0x00, 0x60, 0x60, 0x00, 0x01, 0x01, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x30, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x86, 0x86, 0x40, 0x40, 0x40, 0x40, 0x21, 0x22, 0x22, 0x20, 0x11, 0x11, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x30, 0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x86, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x41, 0x42, 0x24, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x34, 0xc4, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x02, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x80, 0x80, 0x40, 0x00, 0x00, 0x30, 0x30, 0x00, 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x04, 0x08, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x83, 0x83, 0x40, 0x40, 0x40, 0x40, 0x20, 0x21, 0x21, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x30, 0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x86, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x41, 0x42, 0x24, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x20, 0x18, 0x04, 0x02, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x0d, 0x31, 0xc1, 0x01, 0x01, 0x01, 0x02, 0x02, 0x02, 0x04, 0x04, 0x02, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x80, 0x80, 0x40, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x83, 0x83, 0x40, 0x40, 0x40, 0x40, 0x20, 0x21, 0x21, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x30, 0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x86, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x41, 0x42, 0x24, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}; static const char PROGMEM prep[][ANIM_SIZE] = {{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x08, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xc1, 0x01, 0x01, 0x02, 0x02, 0x04, 0x84, 0x44, 0x44, 0x42, 0x82, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x80, 0x80, 0x40, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x64, 0x18, 0x04, 0x12, 0xc2, 0xca, 0x24, 0x88, 0xf0, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x0c, 0x03, 0x00, 0x02, 0x18, 0x19, 0x00, 0x05, 0xfe, 0x80, 0x83, 0x83, 0x40, 0x40, 0x40, 0x40, 0x20, 0x21, 0x21, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}; static const char PROGMEM tap[TAP_FRAMES][ANIM_SIZE] = { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x08, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xc1, 0x01, 0x01, 0x02, 0x02, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x80, 0x80, 0x40, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x64, 0x18, 0x04, 0x12, 0xc2, 0xca, 0x24, 0x88, 0xf0, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x83, 0x83, 0x40, 0x40, 0x40, 0x40, 0x20, 0x21, 0x21, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x41, 0x42, 0x24, 0x98, 0xc0, 0x88, 0x88, 0x8c, 0x9c, 0x1c, 0x1e, 0x0e, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, 0x10, 0x08, 0x04, 0x02, 0x04, 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, 0x40, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0xc1, 0x01, 0x01, 0x02, 0x02, 0x04, 0x84, 0x44, 0x44, 0x42, 0x82, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x40, 0x80, 0x80, 0x40, 0x00, 0x00, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x04, 0x04, 0x08, 0x08, 0x10, 0x20, 0x40, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x18, 0x06, 0x01, 0x00, 0x00, 0x0c, 0x03, 0x00, 0x02, 0x18, 0x19, 0x00, 0x05, 0xfe, 0x80, 0x83, 0x83, 0x40, 0x40, 0x40, 0x40, 0x20, 0x21, 0x21, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x30, 0x40, 0x80, 0x80, 0x00, 0x00, 0x01, 0x86, 0x98, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x80, 0x40, 0x40, 0x40, 0x40, 0x20, 0x20, 0x20, 0x20, 0x10, 0x10, 0x10, 0x10, 0x08, 0x0f, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04, 0x02, 0x02, 0x02, 0x02, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x0f, 0x0f, 0x07, 0x03, 0x03, 0x61, 0xf0, 0xf8, 0xfc, 0x60, 0x01, 0x01, 0x01, 0x3c, 0x78, 0xf8, 0xf0, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, }; void animation_phase(void) { if (get_current_wpm() <= IDLE_SPEED) { current_idle_frame = (current_idle_frame + 1) % IDLE_FRAMES; oled_write_raw_P(idle[abs((IDLE_FRAMES - 1) - current_idle_frame)], ANIM_SIZE); } if (get_current_wpm() > IDLE_SPEED && get_current_wpm() < TAP_SPEED) { oled_write_raw_P(prep[0], ANIM_SIZE); } if (get_current_wpm() >= TAP_SPEED) { current_tap_frame = (current_tap_frame + 1) % TAP_FRAMES; oled_write_raw_P(tap[abs((TAP_FRAMES - 1) - current_tap_frame)], ANIM_SIZE); } } if (get_current_wpm() != 000) { oled_on(); // Enables OLED on any alpha keypress if (timer_elapsed32(anim_timer) > ANIM_FRAME_DURATION) { anim_timer = timer_read32(); animation_phase(); } anim_sleep = timer_read32(); } else { if (timer_elapsed32(anim_sleep) > OLED_TIMEOUT) { oled_off(); } else { if (timer_elapsed32(anim_timer) > ANIM_FRAME_DURATION) { anim_timer = timer_read32(); animation_phase(); } } } } // Draw to OLED bool oled_task_user() { // Render Bongo Cat render_animation(); // WPM text oled_set_cursor(0, 0); sprintf(wpm_str, "%03d", get_current_wpm()); // %03d defines digits to display oled_write(wpm_str, false); // Layer text oled_set_cursor(0, 1); switch (get_highest_layer(layer_state)) { case _MAC_DEFAULT : oled_write_P(PSTR("MAC"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("MAIN"), false); break; case _MAC_CODE : oled_write_P(PSTR("MAC"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("CODE"), false); break; case _MAC_NUM : oled_write_P(PSTR("MAC"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("NUM"), false); break; case _MAC_FUNC : oled_write_P(PSTR("MAC"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("FUNC"), false); break; case _WIN_DEFAULT : oled_write_P(PSTR("WIN"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("MAIN"), false); break; case _WIN_CODE : oled_write_P(PSTR("WIN"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("CODE"), false); break; case _WIN_NUM : oled_write_P(PSTR("WIN"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("NUM"), false); break; case _WIN_FUNC : oled_write_P(PSTR("WIN"), false); oled_set_cursor(0, 2); oled_write_P(PSTR("FUNC"), false); break; } // Caps lock text led_t led_state = host_keyboard_led_state(); oled_set_cursor(0, 3); oled_write_P(led_state.caps_lock ? PSTR("CAPS") : PSTR(""), false); return false; } #endif
A keyboards/handwired/jscotto/scotto36/keymaps/default/rules.mk => keyboards/handwired/jscotto/scotto36/keymaps/default/rules.mk +4 -0
@@ 0,0 1,4 @@ OLED_ENABLE = yes WPM_ENABLE = yes LTO_ENABLE = yes TAP_DANCE_ENABLE = yes \ No newline at end of file
A keyboards/handwired/jscotto/scotto36/readme.md => keyboards/handwired/jscotto/scotto36/readme.md +25 -0
@@ 0,0 1,25 @@ # Scotto36  A 36 key handwired ortholinear ergo keyboard. Featuring an OLED display with Bongo Cat. Case files available [here](https://github.com/joe-scotto/keyboards.git). - Keyboard Maintainer: [Joe Scotto](https://github.com/joe-scotto) - Hardware Supported: ATmega32U4 - Hardware Availability: [Amazon](https://amazon.com) # Compiling Make example for this keyboard (after setting up your build environment): make handwired/jscotto/scotto36:default Flashing example for this keyboard: make handwired/jscotto/scotto36:default # Bootloader Uses [bootmagic](https://github.com/qmk/qmk_firmware/blob/master/docs/feature_bootmagic.md) allowing you to hold the top left key (0, 0) when plugging the board in to enter bootloader mode. 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).
A keyboards/handwired/jscotto/scotto36/rules.mk => keyboards/handwired/jscotto/scotto36/rules.mk +1 -0
A keyboards/keychron/q0/config.h => keyboards/keychron/q0/config.h +101 -0
@@ 0,0 1,101 @@ /* Copyright 2022 @ Keychron(https://www.keychron.com) * * 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 /* key matrix size */ #define MATRIX_ROWS 6 #define MATRIX_COLS 4 /* key matrix pins */ #define MATRIX_ROW_PINS { B5, B4, B3, A15, A14, A13 } #define MATRIX_COL_PINS { A5, A6, A7, B0 } /* COL2ROW or ROW2COL */ #define DIODE_DIRECTION ROW2COL /* Set 0 if debouncing isn't needed */ #define DEBOUNCE 5 /* RGB Matrix Driver Configuration */ #define DRIVER_COUNT 1 #define DRIVER_ADDR_1 0b1110100 #define CONSTANT_CURRENT_STEP \ { 0xFF, 0xFF, 0x70, 0xFF, 0xFF, 0x70, 0xFF, 0xFF, 0x70, 0xFF, 0xFF, 0x70 } /* NKRO */ #define FORCE_NKRO /* turn off effects when suspended */ #define RGB_DISABLE_WHEN_USB_SUSPENDED /* We have 2KB EEPROM size on STM32L432 */ #define DYNAMIC_KEYMAP_EEPROM_MAX_ADDR 2047 /* EEPROM Driver Configuration */ #define WEAR_LEVELING_LOGICAL_SIZE 2048 #define WEAR_LEVELING_BACKING_SIZE (WEAR_LEVELING_LOGICAL_SIZE * 2) // RGB Matrix Animation modes. Explicitly enabled // For full list of effects, see: // https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects // #define ENABLE_RGB_MATRIX_ALPHAS_MODS // #define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN // #define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT #define ENABLE_RGB_MATRIX_BREATHING // #define ENABLE_RGB_MATRIX_BAND_SAT // #define ENABLE_RGB_MATRIX_BAND_VAL // #define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT // #define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL // #define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT // #define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL #define ENABLE_RGB_MATRIX_CYCLE_ALL #define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT #define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN #define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON #define ENABLE_RGB_MATRIX_CYCLE_OUT_IN #define ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL #define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL #define ENABLE_RGB_MATRIX_CYCLE_SPIRAL #define ENABLE_RGB_MATRIX_DUAL_BEACON #define ENABLE_RGB_MATRIX_RAINBOW_BEACON // #define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS #define ENABLE_RGB_MATRIX_RAINDROPS // #define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS // #define ENABLE_RGB_MATRIX_HUE_BREATHING // #define ENABLE_RGB_MATRIX_HUE_PENDULUM // #define ENABLE_RGB_MATRIX_HUE_WAVE // #define ENABLE_RGB_MATRIX_PIXEL_RAIN // #define ENABLE_RGB_MATRIX_PIXEL_FLOW // #define ENABLE_RGB_MATRIX_PIXEL_FRACTAL // enabled only if RGB_MATRIX_FRAMEBUFFER_EFFECTS is defined #define ENABLE_RGB_MATRIX_TYPING_HEATMAP #define ENABLE_RGB_MATRIX_DIGITAL_RAIN // enabled only of RGB_MATRIX_KEYPRESSES or RGB_MATRIX_KEYRELEASES is defined #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE #define ENABLE_RGB_MATRIX_SOLID_REACTIVE #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_WIDE #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_CROSS #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTICROSS #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_NEXUS #define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTINEXUS #define ENABLE_RGB_MATRIX_SPLASH #define ENABLE_RGB_MATRIX_MULTISPLASH #define ENABLE_RGB_MATRIX_SOLID_SPLASH #define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH // #define RGB_MATRIX_KEYPRESSES \ No newline at end of file
A keyboards/keychron/q0/halconf.h => keyboards/keychron/q0/halconf.h +21 -0
@@ 0,0 1,21 @@ /* Copyright 2020 QMK * * 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 #define HAL_USE_I2C TRUE #include_next <halconf.h>
A keyboards/keychron/q0/mcuconf.h => keyboards/keychron/q0/mcuconf.h +22 -0
@@ 0,0 1,22 @@ /* Copyright 2020 QMK * * 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_next <mcuconf.h> #undef STM32_I2C_USE_I2C1 #define STM32_I2C_USE_I2C1 TRUE
A keyboards/keychron/q0/q0.c => keyboards/keychron/q0/q0.c +57 -0
@@ 0,0 1,57 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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 "q0.h" #if defined(RGB_MATRIX_ENABLE) && defined(CAPS_LOCK_LED_INDEX) bool process_record_kb(uint16_t keycode, keyrecord_t *record) { if (!process_record_user(keycode, record)) { return false; } switch (keycode) { # ifdef RGB_MATRIX_ENABLE case RGB_TOG: if (record->event.pressed) { switch (rgb_matrix_get_flags()) { case LED_FLAG_ALL: { rgb_matrix_set_flags(LED_FLAG_NONE); rgb_matrix_set_color_all(0, 0, 0); } break; default: { rgb_matrix_set_flags(LED_FLAG_ALL); } break; } } return false; # endif } return true; } __attribute__((weak)) void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { // RGB_MATRIX_INDICATOR_SET_COLOR(index, red, green, blue); if (host_keyboard_led_state().caps_lock) { RGB_MATRIX_INDICATOR_SET_COLOR(CAPS_LOCK_LED_INDEX, 255, 255, 255); } else { if (!rgb_matrix_get_flags()) { RGB_MATRIX_INDICATOR_SET_COLOR(CAPS_LOCK_LED_INDEX, 0, 0, 0); } } } #endif // NUM_LOCK_LED_INDEX
A keyboards/keychron/q0/q0.h => keyboards/keychron/q0/q0.h +23 -0
@@ 0,0 1,23 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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" #if defined(KEYBOARD_keychron_q0_rev_0130) # include "rev_0130.h" #endif
A keyboards/keychron/q0/readme.md => keyboards/keychron/q0/readme.md +19 -0
@@ 0,0 1,19 @@ # Keychron Q0 A customizable number keypad. * Keyboard Maintainer: [Keychron](https://github.com/keychron) * Hardware Supported: Keychron Q0 * Hardware Availability: [Keychron](https://www.keychron.com) Make example for this keyboard (after setting up your build environment): make keychron/q0/rev_0130:default Flashing example for this keyboard: make keychron/q0/rev_0130:default:flash **Reset Key**: Hold down the key located at *K00*, commonly programmed as *Esc* while plugging in the keyboard. 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).
A keyboards/keychron/q0/rev_0130/config.h => keyboards/keychron/q0/rev_0130/config.h +24 -0
@@ 0,0 1,24 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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 /* RGB Matrix Configuration */ #define DRIVER_1_LED_TOTAL 21 #define DRIVER_LED_TOTAL DRIVER_1_LED_TOTAL /* Enable num-lock LED */ #define NUM_LOCK_LED_INDEX 4
A keyboards/keychron/q0/rev_0130/info.json => keyboards/keychron/q0/rev_0130/info.json +43 -0
@@ 0,0 1,43 @@ { "keyboard_name": "Q0", "manufacturer": "Keychron", "url": "https://github.com/Keychron", "maintainer": "lalalademaxiya1", "usb": { "vid": "0x3434", "pid": "0x0130", "device_version": "1.0.2" }, "layouts": { "LAYOUT_numpad_6x4": { "layout": [ {"label":"Fn", "x":0, "y":0}, {"label":"Esc", "x":1, "y":0}, {"label":"Backspace", "x":2, "y":0}, {"label":"Tab", "x":3, "y":0}, {"label":"Num Lock", "x":0, "y":1}, {"label":"/", "x":1, "y":1}, {"label":"*", "x":2, "y":1}, {"label":"-", "x":3, "y":1}, {"label":"7", "x":0, "y":2}, {"label":"8", "x":1, "y":2}, {"label":"9", "x":2, "y":2}, {"label":"4", "x":0, "y":3}, {"label":"5", "x":1, "y":3}, {"label":"6", "x":2, "y":3}, {"label":"+", "x":3, "y":2, "h":2}, {"label":"1", "x":0, "y":4}, {"label":"2", "x":1, "y":4}, {"label":"3", "x":2, "y":4}, {"label":"0", "x":0, "y":5, "w":2}, {"label":".", "x":2, "y":5}, {"label":"Enter", "x":3, "y":4, "h":2} ] } } } \ No newline at end of file
A keyboards/keychron/q0/rev_0130/keymaps/default/keymap.c => keyboards/keychron/q0/rev_0130/keymaps/default/keymap.c +37 -0
@@ 0,0 1,37 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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 enum layers { _BASE, _FN1}; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [_BASE] = LAYOUT_numpad_6x4( MO(_FN1), KC_ESC, KC_BSPACE, KC_TAB, KC_NUMLOCK, KC_PSLS, KC_PAST, KC_PMNS, KC_P7, KC_P8, KC_P9, KC_P4, KC_P5, KC_P6, KC_PPLS, KC_P1, KC_P2, KC_P3, KC_P0, KC_PDOT, KC_PENT), [_FN1] = LAYOUT_numpad_6x4( _______, KC_MUTE, KC_VOLD, KC_VOLU, RGB_MOD, RGB_VAI, RGB_HUI, KC_DEL, RGB_RMOD, RGB_VAD, RGB_HUD, RGB_SAI, RGB_SPI, KC_MPRV, _______, RGB_SAD, RGB_SPD, KC_MPLY, RGB_TOG, KC_MNXT, _______) };
A keyboards/keychron/q0/rev_0130/keymaps/via/keymap.c => keyboards/keychron/q0/rev_0130/keymaps/via/keymap.c +53 -0
@@ 0,0 1,53 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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 enum layers { _BASE, _FN1, _RESERVED1, _RESERVED2 }; const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [_BASE] = LAYOUT_numpad_6x4( MO(_FN1), KC_ESC, KC_BSPACE, KC_TAB, KC_NUMLOCK, KC_PSLS, KC_PAST, KC_PMNS, KC_P7, KC_P8, KC_P9, KC_P4, KC_P5, KC_P6, KC_PPLS, KC_P1, KC_P2, KC_P3, KC_P0, KC_PDOT, KC_PENT), [_FN1] = LAYOUT_numpad_6x4( _______, KC_MUTE, KC_VOLD, KC_VOLU, RGB_MOD, RGB_VAI, RGB_HUI, KC_DEL, RGB_RMOD, RGB_VAD, RGB_HUD, RGB_SAI, RGB_SPI, KC_MPRV, _______, RGB_SAD, RGB_SPD, KC_MPLY, RGB_TOG, KC_MNXT, _______), [_RESERVED1] = LAYOUT_numpad_6x4( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), [_RESERVED2] = LAYOUT_numpad_6x4( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______) };
A keyboards/keychron/q0/rev_0130/keymaps/via/rules.mk => keyboards/keychron/q0/rev_0130/keymaps/via/rules.mk +1 -0
A keyboards/keychron/q0/rev_0130/readme.md => keyboards/keychron/q0/rev_0130/readme.md +1 -0
A keyboards/keychron/q0/rev_0130/rev_0130.c => keyboards/keychron/q0/rev_0130/rev_0130.c +88 -0
@@ 0,0 1,88 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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 "quantum.h" #ifdef RGB_MATRIX_ENABLE const ckled2001_led PROGMEM g_ckled2001_leds[DRIVER_LED_TOTAL] = { /* Refer to CKLED manual for these locations * driver * | R location * | | G location * | | | B location * | | | | */ {0, F_5, D_5, E_5}, // 0 {0, I_5, G_5, H_5}, // 1 {0, L_5, J_5, K_5}, // 2 {0, C_5, A_5, B_5}, // 3 {0, F_4, D_4, E_4}, // 4 {0, I_4, G_4, H_4}, // 5 {0, L_4, J_4, K_4}, // 6 {0, C_4, A_4, B_4}, // 7 {0, F_6, D_6, E_6}, // 8 {0, I_6, G_6, H_6}, // 9 {0, L_6, J_6, K_6}, // 10 {0, F_3, D_3, E_3}, // 11 {0, I_3, G_3, H_3}, // 12 {0, L_3, J_3, K_3}, // 13 {0, C_6, A_6, B_6}, // 14 {0, F_2, D_2, E_2}, // 15 {0, I_2, G_2, H_2}, // 16 {0, L_2, J_2, K_2}, // 17 {0, F_1, D_1, E_1}, // 18 {0, L_1, J_1, K_1}, // 19 {0, C_2, A_2, B_2}, // 20 }; #define __ NO_LED led_config_t g_led_config = { { // Key Matrix to LED Index { 0, 1, 2, 3 }, { 4, 5, 6, 7 }, { 8, 9, 10, 14 }, { 11, 12, 13, __ }, { 15, 16, 17, 20 }, { 18, __, 19, __ } }, { // LED Index to Physical Position {0,0}, {74,0}, {150,0}, {224,0}, {0,13}, {74,13}, {150,13}, {224,13}, {0,26}, {74,26}, {150,26}, {0,38}, {74,38}, {150,38}, {224,32}, {0,51}, {74,51}, {150,51}, {36,64}, {150,64}, {224,58}, }, { // LED Index to Flag 1, 1, 1, 1, 9, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 1 } }; #endif // RGB_MATRIX_ENABLE
A keyboards/keychron/q0/rev_0130/rev_0130.h => keyboards/keychron/q0/rev_0130/rev_0130.h +38 -0
@@ 0,0 1,38 @@ /* Copyright 2022 @ Keychron (https://www.keychron.com) * * 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 XXX KC_NO #define LAYOUT_numpad_6x4( \ K00, K01, K02, K03, \ K10, K11, K12, K13, \ K20, K21, K22, \ K30, K31, K32, K23, \ K40, K41, K42, \ K50, K52, K43 \ ) \ { \ { K00, K01, K02, K03 }, \ { K10, K11, K12, K13 }, \ { K20, K21, K22, K23 }, \ { K30, K31, K32, XXX }, \ { K40, K41, K42, K43 }, \ { K50, XXX, K52, XXX }, \ }
A keyboards/keychron/q0/rev_0130/rules.mk => keyboards/keychron/q0/rev_0130/rules.mk +27 -0
@@ 0,0 1,27 @@ # MCU name MCU = STM32L432 # Bootloader selection BOOTLOADER = stm32-dfu # Build Options # change yes to no to disable. # BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite MOUSEKEY_ENABLE = yes # 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 = yes # Enable USB N-key Rollover BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow AUDIO_ENABLE = no # Audio output DIP_SWITCH_ENABLE = no RGB_MATRIX_ENABLE = yes RGB_MATRIX_DRIVER = CKLED2001 LTO_ENABLE = yes EEPROM_DRIVER = wear_leveling WEAR_LEVELING_DRIVER = embedded_flash # Enter lower-power sleep mode when on the ChibiOS idle thread OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE
A keyboards/plywrks/allaro/info.json => keyboards/plywrks/allaro/info.json +124 -0
@@ 0,0 1,124 @@ { "manufacturer": "Plywrks", "keyboard_name": "Allaro", "maintainer": "ramonimbao", "development_board": "promicro", "diode_direction": "COL2ROW", "features": { "bootmagic": true, "command": false, "console": false, "extrakey": true, "mousekey": true, "nkro": true, "rgblight": true }, "matrix_pins": { "cols": ["F0", "F7", "F6", "C7", "C6", "B6", "B5", "B4", "D7", "D6", "D4", "D5", "D3", "D2", "D1"], "rows": ["F1", "B7", "B0", "D0", "F5"] }, "url": "", "usb": { "vid": "0x706C", "pid": "0x7903", "device_version": "1.0.0" }, "rgblight": { "led_count": 16, "pin": "E2", "hue_steps": 10, "saturation_steps": 17, "brightness_steps": 17, "animations": { "alternating": true, "breathing": true, "christmas": true, "knight": true, "rainbow_mood": true, "rainbow_swirl": true, "rgb_test": true, "snake": true, "static_gradient": true, "twinkle": true } }, "layouts": { "LAYOUT_arisu": { "layout": [ { "matrix": [0, 0], "x": 0.4, "y": 0 }, { "matrix": [0, 1], "x": 1.55, "y": 0.1 }, { "matrix": [0, 2], "x": 2.55, "y": 0.1 }, { "matrix": [0, 3], "x": 3.55, "y": 0 }, { "matrix": [0, 4], "x": 4.55, "y": 0.1 }, { "matrix": [0, 5], "x": 5.55, "y": 0.1 }, { "matrix": [0, 6], "x": 6.55, "y": 0.1 }, { "matrix": [2, 7], "x": 7.55, "y": 0.1 }, { "matrix": [0, 7], "x": 9.75, "y": 0.1 }, { "matrix": [0, 8], "x": 10.75, "y": 0.1 }, { "matrix": [0, 9], "x": 11.75, "y": 0.1 }, { "matrix": [0, 10], "x": 12.75, "y": 0.1 }, { "matrix": [0, 11], "x": 13.75, "y": 0 }, { "matrix": [0, 12], "x": 14.75, "y": 0.1 }, { "matrix": [0, 13], "x": 15.75, "y": 0.1 }, { "matrix": [0, 14], "x": 16.75, "y": 0.1 }, { "matrix": [1, 0], "x": 0.2, "y": 1.0 }, { "matrix": [1, 1], "w": 1.5, "x": 1.35, "y": 1.1 }, { "matrix": [1, 2], "x": 2.85, "y": 1.1 }, { "matrix": [1, 3], "x": 3.85, "y": 1.1 }, { "matrix": [1, 4], "x": 4.85, "y": 1.1 }, { "matrix": [1, 5], "x": 5.85, "y": 1.1 }, { "matrix": [1, 6], "x": 6.85, "y": 1.1 }, { "matrix": [1, 7], "x": 9.45, "y": 1.1 }, { "matrix": [1, 8], "x": 10.45, "y": 1.1 }, { "matrix": [1, 9], "x": 11.45, "y": 1.1 }, { "matrix": [1, 10], "x": 12.45, "y": 1.1 }, { "matrix": [1, 11], "x": 13.45, "y": 1.1 }, { "matrix": [1, 12], "x": 14.45, "y": 1.1 }, { "matrix": [1, 13], "x": 15.45, "y": 1.1 }, { "matrix": [1, 14], "w": 1.5, "x": 16.45, "y": 1.1 }, { "matrix": [2, 0], "x": 0, "y": 2.0 }, { "matrix": [2, 1], "w": 1.75, "x": 1.15, "y": 2.1 }, { "matrix": [2, 2], "x": 2.9, "y": 2.1 }, { "matrix": [2, 3], "x": 3.9, "y": 2.1 }, { "matrix": [2, 4], "x": 4.9, "y": 2.1 }, { "matrix": [2, 5], "x": 5.9, "y": 2.1 }, { "matrix": [2, 6], "x": 6.9, "y": 2.1 }, { "matrix": [2, 8], "x": 9.9, "y": 2.1 }, { "matrix": [2, 9], "x": 10.9, "y": 2.1 }, { "matrix": [2, 10], "x": 11.9, "y": 2.1 }, { "matrix": [2, 11], "x": 12.9, "y": 2.1 }, { "matrix": [2, 12], "x": 13.9, "y": 2.1 }, { "matrix": [2, 13], "x": 14.9, "y": 2.1 }, { "matrix": [2, 14], "w": 2.25, "x": 15.9, "y": 2.1 }, { "matrix": [3, 1], "w": 2.25, "x": 0.95, "y": 3.1 }, { "matrix": [3, 2], "x": 3.2, "y": 3.1 }, { "matrix": [3, 3], "x": 4.2, "y": 3.1 }, { "matrix": [3, 4], "x": 5.2, "y": 3.1 }, { "matrix": [3, 5], "x": 6.2, "y": 3.1 }, { "matrix": [3, 6], "x": 7.2, "y": 3.1 }, { "matrix": [3, 7], "x": 9.6, "y": 3.1 }, { "matrix": [3, 8], "x": 10.6, "y": 3.1 }, { "matrix": [3, 9], "x": 11.6, "y": 3.1 }, { "matrix": [3, 10], "x": 12.6, "y": 3.1 }, { "matrix": [3, 11], "x": 13.6, "y": 3.1 }, { "matrix": [3, 12], "x": 14.6, "y": 3.1 }, { "matrix": [3, 13], "x": 15.6, "y": 3.1 }, { "matrix": [3, 14], "w": 1.75, "x": 16.6, "y": 3.1 }, { "matrix": [4, 1], "w": 1.5, "x": 0.95, "y": 4.1 }, { "matrix": [4, 3], "w": 1.5, "x": 3.85, "y": 4.1 }, { "matrix": [4, 5], "w": 2, "x": 5.35, "y": 4.1 }, { "matrix": [4, 6], "w": 1.25, "x": 7.35, "y": 4.1 }, { "matrix": [4, 8], "w": 2.75, "x": 9.6, "y": 4.1 }, { "matrix": [4, 10], "w": 1.5, "x": 12.35, "y": 4.1 }, { "matrix": [4, 12], "x": 14.6, "y": 4.1 }, { "matrix": [4, 13], "x": 15.6, "y": 4.1 }, { "matrix": [4, 14], "x": 16.6, "y": 4.1 } ] } } }
A keyboards/plywrks/allaro/keymaps/default/keymap.c => keyboards/plywrks/allaro/keymaps/default/keymap.c +33 -0
@@ 0,0 1,33 @@ /* Copyright 2020 MudkipMao * * 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_arisu( KC_ESC, KC_ESC, 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_BSPC, KC_PGUP, 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_BSLS, KC_PGDN, 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_ENT, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_RSFT, KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT ), [1] = LAYOUT_arisu( RGB_TOG, KC_GRV, 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_DEL, KC_DEL, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PGUP, _______, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN, KC_HOME ) };
A keyboards/plywrks/allaro/keymaps/via/keymap.c => keyboards/plywrks/allaro/keymaps/via/keymap.c +47 -0
@@ 0,0 1,47 @@ /* Copyright 2020 MudkipMao * * 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_arisu( KC_ESC, KC_ESC, 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_BSPC, KC_PGUP, 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_BSLS, KC_PGDN, 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_ENT, KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_UP, KC_RSFT, KC_LCTL, KC_LALT, KC_SPC, MO(1), KC_SPC, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT ), [1] = LAYOUT_arisu( RGB_TOG, KC_GRV, 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_DEL, KC_DEL, RGB_VAI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_VAD, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_PGUP, _______, _______, _______, _______, _______, _______, _______, KC_END, KC_PGDN, KC_HOME ), [2] = LAYOUT_arisu( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ), [3] = LAYOUT_arisu( _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ ) };
A keyboards/plywrks/allaro/keymaps/via/rules.mk => keyboards/plywrks/allaro/keymaps/via/rules.mk +1 -0
A keyboards/plywrks/allaro/readme.md => keyboards/plywrks/allaro/readme.md +26 -0
@@ 0,0 1,26 @@ # Plywrks Allaro  An Arisu-like hotswap PCB. * Keyboard Maintainer: [Ramon Imbao](https://github.com/ramonimbao) * Hardware Supported: ATmega32u4 Make example for this keyboard (after setting up your build environment): make plywrks/allaro:via Flashing example for this keyboard: make plywrks/allaro:via: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
A keyboards/plywrks/allaro/rules.mk => keyboards/plywrks/allaro/rules.mk +1 -0