diff options
| author | Nguyen Minh Hoang <nmhoang05@gmail.com> | 2020-08-01 14:05:35 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-01 00:05:35 -0700 |
| commit | 00b8a12d065cc7b94b908f67c37151939495569a (patch) | |
| tree | c6d9e142771300438434ae6bf57a435a41e55a80 /keyboards/pom_keyboards | |
| parent | f8a24013700d58c1818e9bec7dd6195d0225a474 (diff) | |
| download | qmk_firmware-00b8a12d065cc7b94b908f67c37151939495569a.tar.gz qmk_firmware-00b8a12d065cc7b94b908f67c37151939495569a.zip | |
[Keyboard] POM Keyboards TNLN95 (#9788)
* add keyboard tnln95
* keyboard tnln95, fix info
* Apply suggestions from code review
* keyboard tnln95, fix info (2)
* keyboard tnln95, move folder, fix info
* keyboard tnln95, fix keymap
* Apply suggestions from code review
* Apply suggestions from code review
* Apply suggestions from code review
* keyboard tnln95, fix link, comment currently not used pin
* Apply suggestions from code review
Diffstat (limited to 'keyboards/pom_keyboards')
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/config.h | 81 | ||||
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/info.json | 18 | ||||
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/keymaps/default/keymap.c | 42 | ||||
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/readme.md | 20 | ||||
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/rules.mk | 23 | ||||
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/tnln95.c | 35 | ||||
| -rw-r--r-- | keyboards/pom_keyboards/tnln95/tnln95.h | 60 |
7 files changed, 279 insertions, 0 deletions
diff --git a/keyboards/pom_keyboards/tnln95/config.h b/keyboards/pom_keyboards/tnln95/config.h new file mode 100644 index 000000000..78d2d805e --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/config.h | |||
| @@ -0,0 +1,81 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2020 Nguyen Minh Hoang | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | #pragma once | ||
| 18 | |||
| 19 | #include "config_common.h" | ||
| 20 | |||
| 21 | /* USB Device descriptor parameter */ | ||
| 22 | #define VENDOR_ID 0x544E | ||
| 23 | #define PRODUCT_ID 0x3931 | ||
| 24 | #define DEVICE_VER 0x0001 | ||
| 25 | #define MANUFACTURER POM_keyboard | ||
| 26 | #define PRODUCT tnln95 | ||
| 27 | |||
| 28 | /* key matrix size */ | ||
| 29 | #define MATRIX_ROWS 10 | ||
| 30 | #define MATRIX_COLS 10 | ||
| 31 | |||
| 32 | /* | ||
| 33 | * Keyboard Matrix Assignments | ||
| 34 | * | ||
| 35 | * Change this to how you wired your keyboard | ||
| 36 | * COLS: AVR pins used for columns, left to right | ||
| 37 | * ROWS: AVR pins used for rows, top to bottom | ||
| 38 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
| 39 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
| 40 | * | ||
| 41 | */ | ||
| 42 | #define MATRIX_ROW_PINS { B6, B4, B0, D7, E6, D4, F5, D6, C6, B5 } | ||
| 43 | #define MATRIX_COL_PINS { F4, F1, F0, F6, F7, D0, D1, D2, D3, D5 } | ||
| 44 | #define UNUSED_PINS | ||
| 45 | |||
| 46 | /* COL2ROW, ROW2COL*/ | ||
| 47 | #define DIODE_DIRECTION ROW2COL | ||
| 48 | |||
| 49 | #define BACKLIGHT_PIN B7 | ||
| 50 | #define BACKLIGHT_BREATHING | ||
| 51 | #define BACKLIGHT_LEVELS 10 | ||
| 52 | |||
| 53 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
| 54 | #define DEBOUNCE 8 | ||
| 55 | |||
| 56 | /* Bootmagic lite */ | ||
| 57 | #define BOOTMAGIC_LITE_ROW 0 | ||
| 58 | #define BOOTMAGIC_LITE_COLUMN 4 | ||
| 59 | |||
| 60 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
| 61 | //#define MATRIX_HAS_GHOST | ||
| 62 | |||
| 63 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 64 | #define LOCKING_SUPPORT_ENABLE | ||
| 65 | /* Locking resynchronize hack */ | ||
| 66 | #define LOCKING_RESYNC_ENABLE | ||
| 67 | |||
| 68 | /* RGB Configs */ | ||
| 69 | #define RGB_DI_PIN C7 | ||
| 70 | #ifdef RGB_DI_PIN | ||
| 71 | #define RGBLED_NUM 14 | ||
| 72 | #define RGBLIGHT_ANIMATIONS | ||
| 73 | #define RGBLIGHT_HUE_STEP 8 | ||
| 74 | #define RGBLIGHT_SAT_STEP 8 | ||
| 75 | #define RGBLIGHT_VAL_STEP 8 | ||
| 76 | #define RGBLIGHT_SLEEP // RGB will turn off when PC is put to sleep | ||
| 77 | // #define RGB_MATRIX_LED_PROCESS_LIMIT (DRIVER_LED_TOTAL + 4) / 5 // limits the number of LEDs to process in an animation per task run (increases keyboard responsiveness) | ||
| 78 | // #define RGB_MATRIX_LED_FLUSH_LIMIT 16 // limits in milliseconds how frequently an animation will update the LEDs. 16 (16ms) is equivalent to limiting to 60fps (increases keyboard responsiveness) | ||
| 79 | // #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 225 // limits maximum brightness of LEDs to 200 out of 255. If not defined maximum brightness is set to 255 | ||
| 80 | // #define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_SOLID_COLOR // Sets the default mode, if none has been set | ||
| 81 | #endif | ||
diff --git a/keyboards/pom_keyboards/tnln95/info.json b/keyboards/pom_keyboards/tnln95/info.json new file mode 100644 index 000000000..d72a0fe1d --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/info.json | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | { | ||
| 2 | "keyboard_name": "tnln95", | ||
| 3 | "url": "http://www.keyboard-layout-editor.com/#/gists/45aee74c726e32a063130a715fc494d3", | ||
| 4 | "maintainer": "HoangNM", | ||
| 5 | "width": 21.25, | ||
| 6 | "height": 5, | ||
| 7 | "layouts": { | ||
| 8 | "LAYOUT_ansi": { | ||
| 9 | "layout": [ | ||
| 10 | { "label": "-", "x": 0, "y": 0 },{ "label": "/", "x": 1, "y": 0 },{ "label": "*", "x": 2, "y": 0 },{ "label": "Bksp", "x": 3, "y": 0 },{ "label": "Esc", "x": 4, "y": 0 },{ "label": "~", "x": 5.25, "y": 0 },{ "label": "!", "x": 6.25, "y": 0 },{ "label": "@", "x": 7.25, "y": 0 },{ "label": "#", "x": 8.25, "y": 0 },{ "label": "$", "x": 9.25, "y": 0 },{ "label": "%", "x": 10.25, "y": 0 },{ "label": "^", "x": 11.25, "y": 0 },{ "label": "&", "x": 12.25, "y": 0 },{ "label": "*", "x": 13.25, "y": 0 },{ "label": "(", "x": 14.25, "y": 0 },{ "label": ")", "x": 15.25, "y": 0 },{ "label": "_", "x": 16.25, "y": 0 },{ "label": "+", "x": 17.25, "y": 0 },{ "label": "Backspace", "x": 18.25, "y": 0, "w": 2 },{ "label": "Home", "x": 20.25, "y": 0 }, | ||
| 11 | { "label": "7", "x": 1, "y": 1 }, { "label": "8", "x": 2, "y": 1 }, { "label": "9", "x": 3, "y": 1 }, { "label": "Num Lock", "x": 4, "y": 1 }, { "label": "Tab", "x": 5.25, "y": 1, "w": 1.5 }, { "label": "Q", "x": 6.25, "y": 1 }, { "label": "W", "x": 7.25, "y": 1 }, { "label": "E", "x": 8.25, "y": 1 }, { "label": "R", "x": 9.25, "y": 1 }, { "label": "T", "x": 10.25, "y": 1 }, { "label": "Y", "x": 11.25, "y": 1 }, { "label": "U", "x": 12.25, "y": 1 }, { "label": "I", "x": 13.25, "y": 1 }, { "label": "O", "x": 14.25, "y": 1 }, { "label": "P", "x": 15.25, "y": 1 }, { "label": "{", "x": 16.25, "y": 1 }, { "label": "}", "x": 17.25, "y": 1 }, { "label": "|", "x": 18.75, "y": 1, "w": 1.5 }, { "label": "Delete", "x": 20.25, "y": 1 }, | ||
| 12 | { "label": "+", "x": 0, "y": 2, "h": 2 }, { "label": "4", "x": 1, "y": 2 }, { "label": "5", "x": 2, "y": 2 }, { "label": "6", "x": 3, "y": 2 }, { "label": "Copy", "x": 4, "y": 2 },{ "label": "Capslock", "x": 5.25, "y": 3, "w": 1.75 }, { "label": "A", "x": 7, "y": 3 }, { "label": "S", "x": 8, "y": 3 }, { "label": "D", "x": 9, "y": 3 }, { "label": "F", "x": 10, "y": 3 }, { "label": "G", "x": 11, "y": 3 }, { "label": "H", "x": 12, "y": 3 }, { "label": "J", "x": 13, "y": 3 }, { "label": "K", "x": 14, "y": 3 }, { "label": "L", "x": 15, "y": 3 }, { "label": ":", "x": 16, "y": 3 }, { "label": "\"", "x": 17, "y": 3 }, { "label": "Enter", "x": 18, "y": 1, "w": 2.25 }, { "label": "PageUp", "x": 20.25, "y": 1 }, | ||
| 13 | { "label": "1", "x": 1, "y": 4 }, { "label": "2", "x": 2, "y": 4 }, { "label": "3", "x": 3, "y": 4 }, { "label": "Paste", "x": 4, "y": 4 },{ "label": "Shift", "x": 5.25, "y": 4, "w": 2.25 },{ "label": "Z", "x": 7.5, "y": 4 },{ "label": "X", "x": 8.5, "y": 4 },{ "label": "C", "x": 9.5, "y": 4 },{ "label": "V", "x": 10.5, "y": 4 },{ "label": "B", "x": 11.5, "y": 4 },{ "label": "N", "x": 12.5, "y": 4 },{ "label": "M", "x": 13.5, "y": 4 },{ "label": "<", "x": 14.5, "y": 4 },{ "label": ">", "x": 15.5, "y": 4 },{ "label": "?", "x": 16.5, "y": 4 },{ "label": "Shift", "x": 17.5, "y": 4, "w": 1.75 },{ "label": "Up", "x": 19.25, "y": 4 },{ "label": "PageDown", "x": 20.25, "y": 4 }, | ||
| 14 | { "label": "Enter", "x": 0, "y": 5, "h": 2 }, { "label": ".", "x": 1, "y": 5 }, { "label": "0", "x": 2, "y": 5, "w": 2 }, { "label": ",", "x": 4, "y": 5 },{ "label": "Ctrl", "x": 5.25, "y": 5, "w": 1.25 },{ "label": "Win", "x": 6.5, "y": 5, "w": 1.25 },{ "label": "Alt", "x": 7.75, "y": 5, "w": 1.25 },{ "label": "Space", "x": 9, "y": 5, "w": 6.25 },{ "label": "Alt", "x": 15.25, "y": 5, "w": 1.5 },{ "label": "Fn", "x": 16.75, "y": 5, "w": 1.5 },{ "label": "Left", "x": 18.25, "y": 5 },{ "label": "Down", "x": 19.25, "y": 5 },{ "label": "Right", "x": 20.25, "y": 5 } | ||
| 15 | ] | ||
| 16 | } | ||
| 17 | } | ||
| 18 | } | ||
diff --git a/keyboards/pom_keyboards/tnln95/keymaps/default/keymap.c b/keyboards/pom_keyboards/tnln95/keymaps/default/keymap.c new file mode 100644 index 000000000..066961daa --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/keymaps/default/keymap.c | |||
| @@ -0,0 +1,42 @@ | |||
| 1 | /* Copyright 2020 Nguyen Minh HOang | ||
| 2 | |||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include QMK_KEYBOARD_H | ||
| 17 | |||
| 18 | // Defines names for use in layer keycodes and the keymap | ||
| 19 | enum layer_names { | ||
| 20 | _DEF, | ||
| 21 | _FNC | ||
| 22 | }; | ||
| 23 | |||
| 24 | #define CMD_COPY LCTL(KC_INS) | ||
| 25 | #define CMD_PASTE LSFT(KC_INS) | ||
| 26 | |||
| 27 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 28 | [_DEF] = LAYOUT_ansi( | ||
| 29 | KC_PMNS, KC_PAST, KC_PSLS, KC_BSPACE, KC_ESC, KC_GRAVE, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINUS, KC_EQUAL, KC_BSPACE, KC_HOME, | ||
| 30 | KC_P7, KC_P8, KC_P9, KC_NUMLOCK, 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_BSLASH, KC_PGUP, | ||
| 31 | KC_PPLS, KC_P4, KC_P5, KC_P6, CMD_COPY, KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCOLON, KC_QUOTE, KC_ENTER, KC_PGDN, | ||
| 32 | KC_P1, KC_P2, KC_P3, CMD_PASTE, KC_LSHIFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMMA, KC_DOT, KC_SLASH, KC_RSHIFT, KC_UP, KC_END, | ||
| 33 | KC_PENT, KC_PDOT, KC_P0, KC_COMMA , KC_LCTRL, KC_LGUI, KC_LALT, KC_SPACE, KC_RALT, MO(_FNC), KC_LEFT, KC_DOWN, KC_RIGHT | ||
| 34 | ), | ||
| 35 | [_FNC] = LAYOUT_ansi( | ||
| 36 | _______, _______, _______, _______, _______, _______, 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_PSCR, | ||
| 37 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RGB_TOG, RGB_RMOD, RGB_MOD, KC_INS, KC_VOLU, | ||
| 38 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_TOGG, KC_VOLD, | ||
| 39 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, BL_BRTG, _______, _______, KC_MUTE, | ||
| 40 | _______, _______, _______, _______ , _______, _______, _______, _______, _______, MO(_FNC), _______, _______, _______ | ||
| 41 | ) | ||
| 42 | }; | ||
diff --git a/keyboards/pom_keyboards/tnln95/readme.md b/keyboards/pom_keyboards/tnln95/readme.md new file mode 100644 index 000000000..8ad05bddb --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/readme.md | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | # POM Keyboards - TNLN95 | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | ### Default TNLN95 Layout | ||
| 6 | |||
| 7 | This is the default layout that comes flashed on every TNLN95. | ||
| 8 | |||
| 9 | * Keyboard Maintainer: [Hoang Nguyen Minh](https://github.com/NMHoang05/) | ||
| 10 | * Hardware Supported: TNLN95 | ||
| 11 | * Hardware Availability: (soon!) | ||
| 12 | |||
| 13 | Make example for this keyboard (after setting up your build environment): | ||
| 14 | |||
| 15 | make pom_keyboards/tnln95:default | ||
| 16 | |||
| 17 | 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). | ||
| 18 | |||
| 19 | --- | ||
| 20 | Alternate layout will be updated soon! | ||
diff --git a/keyboards/pom_keyboards/tnln95/rules.mk b/keyboards/pom_keyboards/tnln95/rules.mk new file mode 100644 index 000000000..8d25f09ac --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/rules.mk | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = atmega32u4 | ||
| 3 | |||
| 4 | # Bootloader selection | ||
| 5 | BOOTLOADER = atmel-dfu | ||
| 6 | |||
| 7 | # Build Options | ||
| 8 | # change yes to no to disable | ||
| 9 | # | ||
| 10 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration | ||
| 11 | MOUSEKEY_ENABLE = no # Mouse keys | ||
| 12 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 13 | CONSOLE_ENABLE = no # Console for debug | ||
| 14 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 15 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 16 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 18 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
| 20 | RGBLIGHT_ENABLE = yes # Enable RGB underglow | ||
| 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
| 22 | AUDIO_ENABLE = no # Audio output | ||
| 23 | LTO_ENABLE = yes | ||
diff --git a/keyboards/pom_keyboards/tnln95/tnln95.c b/keyboards/pom_keyboards/tnln95/tnln95.c new file mode 100644 index 000000000..14b851163 --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/tnln95.c | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | /* Copyright 2020 Nguyen Minh Hoang | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #include "tnln95.h" | ||
| 17 | |||
| 18 | void keyboard_pre_init_kb(void) { | ||
| 19 | setPinOutput(B1); | ||
| 20 | setPinOutput(B2); | ||
| 21 | /* I will add function to these later */ | ||
| 22 | // setPinOutput(B3); | ||
| 23 | // setPinOutput(E2); | ||
| 24 | |||
| 25 | keyboard_pre_init_user(); | ||
| 26 | } | ||
| 27 | |||
| 28 | bool led_update_kb(led_t led_state) { | ||
| 29 | bool res = led_update_user(led_state); | ||
| 30 | if(res) { | ||
| 31 | writePin(B1, led_state.num_lock); | ||
| 32 | writePin(B2, led_state.caps_lock); | ||
| 33 | } | ||
| 34 | return res; | ||
| 35 | } | ||
diff --git a/keyboards/pom_keyboards/tnln95/tnln95.h b/keyboards/pom_keyboards/tnln95/tnln95.h new file mode 100644 index 000000000..ee88d9aac --- /dev/null +++ b/keyboards/pom_keyboards/tnln95/tnln95.h | |||
| @@ -0,0 +1,60 @@ | |||
| 1 | /* Copyright 2020 Nguyen Minh Hoang | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | #pragma once | ||
| 17 | |||
| 18 | #include "quantum.h" | ||
| 19 | |||
| 20 | // This a shortcut to help you visually see your layout. | ||
| 21 | // The first section contains all of the arguments | ||
| 22 | // The second converts the arguments into a two-dimensional array | ||
| 23 | |||
| 24 | #define LAYOUT_all(\ | ||
| 25 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K96, \ | ||
| 26 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, \ | ||
| 27 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K50, K51, K52, K53, K54, K55, K56, K58, K59, \ | ||
| 28 | K60, K61, K62, K63, K64, K65, K66, K67, K68, K69, K70, K71, K72, K73, K74, K75, K77, K78, K79, \ | ||
| 29 | K80, K81, K82, K83, K84, K85, K86, K87, K88, K89, K92, K93, K94, K95, K97, K98, K99 \ | ||
| 30 | ) {\ | ||
| 31 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09 },\ | ||
| 32 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19 },\ | ||
| 33 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29 },\ | ||
| 34 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39 },\ | ||
| 35 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49 },\ | ||
| 36 | { K50, K51, K52, K53, K54, K55, K56, KC_NO, K58, K59 },\ | ||
| 37 | { K60, K61, K62, K63, K64, K65, K66, K67, K68, K69 },\ | ||
| 38 | { K70, K71, K72, K73, K74, K75, KC_NO, K77, K78, K79 },\ | ||
| 39 | { K80, K81, K82, K83, K84, K85, K86, K87, K88, K89 },\ | ||
| 40 | { KC_NO, KC_NO, K92, K93, K94, K95, K96, K97, K98, K99 } \ | ||
| 41 | } | ||
| 42 | |||
| 43 | #define LAYOUT_ansi(\ | ||
| 44 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12, K13, K14, K15, K16, K17, K19, K96, \ | ||
| 45 | K21, K22, K23, K24, K25, K26, K27, K28, K29, K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, \ | ||
| 46 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K50, K51, K52, K53, K54, K55, K56, K58, K59, \ | ||
| 47 | K61, K62, K63, K64, K65, K66, K67, K68, K69, K70, K71, K72, K73, K74, K75, K77, K78, K79, \ | ||
| 48 | K80, K81, K83, K84, K85, K86, K87, K89, K93, K95, K97, K98, K99 \ | ||
| 49 | ) {\ | ||
| 50 | { K00, K01, K02, K03, K04, K05, K06, K07, K08, K09 },\ | ||
| 51 | { K10, K11, K12, K13, K14, K15, K16, K17, KC_NO, K19 },\ | ||
| 52 | { KC_NO, K21, K22, K23, K24, K25, K26, K27, K28, K29 },\ | ||
| 53 | { K30, K31, K32, K33, K34, K35, K36, K37, K38, K39 },\ | ||
| 54 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49 },\ | ||
| 55 | { K50, K51, K52, K53, K54, K55, K56, KC_NO, K58, K59 },\ | ||
| 56 | { KC_NO, K61, K62, K63, K64, K65, K66, K67, K68, K69 },\ | ||
| 57 | { K70, K71, K72, K73, K74, K75, KC_NO, K77, K78, K79 },\ | ||
| 58 | { K80, K81, KC_NO, K83, K84, K85, K86, K87, KC_NO, K89 },\ | ||
| 59 | { KC_NO, KC_NO, KC_NO, K93, KC_NO, K95, K96, K97, K98, K99 } \ | ||
| 60 | } | ||
