diff options
| author | Hybrid65 <47335616+Hybrid65@users.noreply.github.com> | 2020-01-17 21:56:13 -0600 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2020-01-17 19:56:13 -0800 |
| commit | 3dd43d9cabce8f2b749cf439f9dae5123800d37f (patch) | |
| tree | 821c6b7d750e6b6d1ec73976aab709bc33af4704 /keyboards/kv | |
| parent | 6e710426a4cf7020b3649e5a1b43d37e607fbcc6 (diff) | |
| download | qmk_firmware-3dd43d9cabce8f2b749cf439f9dae5123800d37f.tar.gz qmk_firmware-3dd43d9cabce8f2b749cf439f9dae5123800d37f.zip | |
[Keyboard] Support for a Southpaw Keyboard KVT (#7892)
* Support for KVT
This branch adds support for the southpaw keyboard KVT
* Updated readme.md and keymap.c
* Update readme.md
* Update keyboards/kv/revT/readme.md
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/readme.md
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/readme.md
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/readme.md
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/rules.mk
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/rules.mk
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/readme.md
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Update keyboards/kv/revT/readme.md
Co-Authored-By: fauxpark <fauxpark@gmail.com>
* Updated from suggestions from pull request
* Update readme.md
* Update rules.mk
* Update rules.mk
* Update rules.mk
* Update rules.mk
* Update rules.mk
* Update revT.c
* Update readme.md
* changing T to lowercase
* Change revT to revt
* edit
* Update keyboards/kv/revt/rules.mk
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update readme.md
Co-authored-by: fauxpark <fauxpark@gmail.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/kv')
| -rw-r--r-- | keyboards/kv/revt/config.h | 39 | ||||
| -rw-r--r-- | keyboards/kv/revt/keymaps/default/keymap.c | 64 | ||||
| -rw-r--r-- | keyboards/kv/revt/keymaps/default/readme.md | 1 | ||||
| -rw-r--r-- | keyboards/kv/revt/readme.md | 18 | ||||
| -rw-r--r-- | keyboards/kv/revt/revt.c | 25 | ||||
| -rw-r--r-- | keyboards/kv/revt/revt.h | 36 | ||||
| -rw-r--r-- | keyboards/kv/revt/rules.mk | 22 |
7 files changed, 205 insertions, 0 deletions
diff --git a/keyboards/kv/revt/config.h b/keyboards/kv/revt/config.h new file mode 100644 index 000000000..8aa5a1d31 --- /dev/null +++ b/keyboards/kv/revt/config.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | /* Copyright 2020 Hybrid65 | ||
| 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 "config_common.h" | ||
| 19 | |||
| 20 | /* USB Device descriptor parameter */ | ||
| 21 | #define VENDOR_ID 0x6565 | ||
| 22 | #define PRODUCT_ID 0x6520 | ||
| 23 | #define DEVICE_VER 0x0001 | ||
| 24 | #define MANUFACTURER Hybrid | ||
| 25 | #define PRODUCT KVT | ||
| 26 | #define DESCRIPTION SouthPaw Keyboard | ||
| 27 | |||
| 28 | /* key matrix size */ | ||
| 29 | #define MATRIX_ROWS 6 | ||
| 30 | #define MATRIX_COLS 21 | ||
| 31 | #define MATRIX_ROW_PINS { A6, B13, B8, A0, A1, A2 } | ||
| 32 | #define MATRIX_COL_PINS { B7, B6, B5, B4, B3, B2, B14, B1, B15, B0, B9, B10, B11, B12, A14, A13, A4, A5, A7, A8, A15 } | ||
| 33 | #define UNUSED_PINS { } | ||
| 34 | |||
| 35 | /* COL2ROW or ROW2COL */ | ||
| 36 | #define DIODE_DIRECTION COL2ROW | ||
| 37 | |||
| 38 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 39 | #define LOCKING_SUPPORT_ENABLE | ||
diff --git a/keyboards/kv/revt/keymaps/default/keymap.c b/keyboards/kv/revt/keymaps/default/keymap.c new file mode 100644 index 000000000..c1f9c6b5c --- /dev/null +++ b/keyboards/kv/revt/keymaps/default/keymap.c | |||
| @@ -0,0 +1,64 @@ | |||
| 1 | /* Copyright 2020 Hybrid65 | ||
| 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 | |||
| 17 | #include QMK_KEYBOARD_H | ||
| 18 | |||
| 19 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 20 | /* Keymap (Base Layer) Default Layer | ||
| 21 | *.----------------------------------------------------------------------------------------------------------------. | ||
| 22 | *| |Esc| | F1| F2| F3| F4| | F5| F6| F7| F8| | F9|F10|F12|F12| |Pscr| Slck | Pause| | ||
| 23 | *| Nlck| / | * | - | | ~ | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| - | = |Backsp | | Inc| Home | PgUp| | ||
| 24 | *|----------------------------------------------------------------------------------------------------------------| | ||
| 25 | *| NP7 | NP8| NP9| | |Tab | Q| W| E| R| T| Y| U| I| O| P| [ | ] | \ | | Del| End | PgDw| | ||
| 26 | *|---------------| + |------------------------------------------------------------------------------------------| | ||
| 27 | *| NP4 | NP5| NP6| | |CAPS | A| S| D| F| G| H| J| K| L| ; | ' |Return | | | ||
| 28 | *|---------------|-----|------------------------------------------------------------------------------------------| | ||
| 29 | *| NP1 | NP2| NP3| | |Shift | Z| X| C| V| B| N| M| , | . | / | Shift | | Up | | | ||
| 30 | *|---------------|Enter|------------------------------------------------------------------------------------------| | ||
| 31 | *| 0 | Del| | |Ctrl|Win |Alt | Space |Alt | Win |FN |Ctrl | |Left| Down | Right| | ||
| 32 | *`----------------------------------------------------------------------------------------------------------------' | ||
| 33 | */ | ||
| 34 | [0] = LAYOUT_default( | ||
| 35 | 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_SLCK, KC_PAUS, \ | ||
| 36 | KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_INS, KC_HOME, KC_PGUP, \ | ||
| 37 | KC_KP_7, KC_KP_8, KC_KP_9, KC_PPLS, 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_DEL, KC_END, KC_PGDN, \ | ||
| 38 | KC_KP_4, KC_KP_5, KC_KP_6, 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, \ | ||
| 39 | KC_KP_1, KC_KP_2, KC_KP_3, KC_PENT, 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, \ | ||
| 40 | KC_KP_0, KC_PDOT, KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, KC_RGUI, MO(1), KC_RCTL, KC_LEFT, KC_DOWN, KC_RIGHT), \ | ||
| 41 | |||
| 42 | /* Keymap Fn Layer | ||
| 43 | *.-----------------------------------------------------------------------------------------------------------------. | ||
| 44 | *| | | |F13|F14|F15|F16| |F17|F18|F19|F20| |F21|F22|F23|F24| | | | | | ||
| 45 | *| | | | | | | | | | | | | | | | | | | | |Pl/Pa| Next| Vol+| | ||
| 46 | *|-----------------------------------------------------------------------------------------------------------------| | ||
| 47 | *| | | | | | |MB1|MBU|MB2|MWU| | | | | | | | | | | Stop| Prev| Vol-| | ||
| 48 | *|---------------| |-------------------------------------------------------------------------------------------| | ||
| 49 | *| | | | | | |MBL|MBD|MBR|MWD| | | |Rst| | | | | | | ||
| 50 | *|---------------|-----|-------------------------------------------------------------------------------------------| | ||
| 51 | *| | | | | | | | |Calc| | | |Mute| | | | | | | | | ||
| 52 | *|---------------| |-------------------------------------------------------------------------------------------| | ||
| 53 | *| | | | | | | | | | | | | | | | | | ||
| 54 | *'-----------------------------------------------------------------------------------------------------------------' | ||
| 55 | */ | ||
| 56 | [1] = LAYOUT_default( | ||
| 57 | _______, KC_F13, KC_F14, KC_F15, KC_F16, KC_F17, KC_F18, KC_F19, KC_F20, KC_F21, KC_F22, KC_F23, KC_F24, _______, _______, _______, \ | ||
| 58 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MPLY, KC_MNXT, KC_VOLU, \ | ||
| 59 | _______, _______, _______, _______, _______, KC_MS_BTN1, KC_MS_U, KC_MS_BTN2, KC_WH_U, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MSTP, KC_MPRV, KC_VOLD, \ | ||
| 60 | _______, _______, _______, _______, KC_MS_L, KC_MS_D, KC_MS_R, KC_WH_D, _______, _______, _______, RESET, _______, _______, _______, _______, \ | ||
| 61 | _______, _______, _______, _______, _______, _______, _______, KC_CALC, _______, _______, _______, KC_MUTE, _______, _______, _______, _______, _______, \ | ||
| 62 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______), \ | ||
| 63 | |||
| 64 | }; | ||
diff --git a/keyboards/kv/revt/keymaps/default/readme.md b/keyboards/kv/revt/keymaps/default/readme.md new file mode 100644 index 000000000..63fb4e78d --- /dev/null +++ b/keyboards/kv/revt/keymaps/default/readme.md | |||
| @@ -0,0 +1 @@ | |||
| # The Default keymap for KVT | |||
diff --git a/keyboards/kv/revt/readme.md b/keyboards/kv/revt/readme.md new file mode 100644 index 000000000..e2f463b37 --- /dev/null +++ b/keyboards/kv/revt/readme.md | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # KVT | ||
| 2 | |||
| 3 |  | ||
| 4 | |||
| 5 | A open source southpaw keyboard. The Default layer is a standard 104 ANSI keyboard just the numpad is on the left. | ||
| 6 | There is a fn layer (its not in the layout image but in the keymap file) it adds media keys, f13-f24, and mouse keys. | ||
| 7 | |||
| 8 | [More info on KVT github](https://github.com/Hybrid65/KVT) | ||
| 9 | |||
| 10 | * Keyboard Maintainer: [Neil Feagan](https://github.com/Hybrid65) | ||
| 11 | * Hardware Supported: KVT, Proton C | ||
| 12 | * Hardware Availability: [List of vendors](https://qmk.fm/proton-c) | ||
| 13 | |||
| 14 | Make example for this keyboard (after setting up your build environment): | ||
| 15 | |||
| 16 | make kv/revt:default | ||
| 17 | |||
| 18 | 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). | ||
diff --git a/keyboards/kv/revt/revt.c b/keyboards/kv/revt/revt.c new file mode 100644 index 000000000..443a81401 --- /dev/null +++ b/keyboards/kv/revt/revt.c | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | /* Copyright 2020 Hybrid65 | ||
| 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 | |||
| 17 | #include "revt.h" | ||
| 18 | |||
| 19 | void matrix_init_kb(void) { | ||
| 20 | // Turn status LED on | ||
| 21 | setPinOutput(C14); | ||
| 22 | writePinHigh(C14); | ||
| 23 | |||
| 24 | matrix_init_user(); | ||
| 25 | } | ||
diff --git a/keyboards/kv/revt/revt.h b/keyboards/kv/revt/revt.h new file mode 100644 index 000000000..ed98f4aab --- /dev/null +++ b/keyboards/kv/revt/revt.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | /* Copyright 2020 Hybrid65 | ||
| 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 | |||
| 17 | #pragma once | ||
| 18 | |||
| 19 | #include "quantum.h" | ||
| 20 | |||
| 21 | #define LAYOUT_default( \ | ||
| 22 | K04, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G, K0H, K0I, K0J, K0K, \ | ||
| 23 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G, K1H, K1I, K1J, K1K, \ | ||
| 24 | K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, K2F, K2G, K2H, K2I, K2J, K2K, \ | ||
| 25 | K30, K31, K32, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, K3F, K3H, \ | ||
| 26 | K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E, K4H, K4J, \ | ||
| 27 | K50, K52, K54, K55, K56, K59, K5E, K5F, K5G, K5H, K5I, K5J, K5K \ | ||
| 28 | ) \ | ||
| 29 | { \ | ||
| 30 | { KC_NO, KC_NO, KC_NO, KC_NO, K04, KC_NO, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K0F, K0G, K0H, K0I, K0J, K0K, }, \ | ||
| 31 | { K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K1F, K1G, K1H, K1I, K1J, K1K, }, \ | ||
| 32 | { K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, K2E, K2F, K2G, K2H, K2I, K2J, K2K, }, \ | ||
| 33 | { K30, K31, K32, KC_NO, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, K3E, K3F, KC_NO, K3H, KC_NO, KC_NO, KC_NO, }, \ | ||
| 34 | { K40, K41, K42, K43, K44, K45, K46, K47, K48, K49, K4A, K4B, K4C, K4D, K4E, KC_NO, KC_NO, K4H, KC_NO, K4J, KC_NO, }, \ | ||
| 35 | { K50, KC_NO, K52, KC_NO, K54, K55, K56, KC_NO, KC_NO, K59, KC_NO, KC_NO, KC_NO, KC_NO, K5E, K5F, K5G, K5H, K5I, K5J, K5K }, \ | ||
| 36 | } | ||
diff --git a/keyboards/kv/revt/rules.mk b/keyboards/kv/revt/rules.mk new file mode 100644 index 000000000..3a09683c3 --- /dev/null +++ b/keyboards/kv/revt/rules.mk | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | # MCU name | ||
| 2 | MCU = STM32F303 | ||
| 3 | |||
| 4 | # Build Options | ||
| 5 | # change yes to no to disable | ||
| 6 | # | ||
| 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration | ||
| 8 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 9 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 10 | CONSOLE_ENABLE = yes # Console for debug | ||
| 11 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 12 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
| 13 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
| 14 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
| 15 | NKRO_ENABLE = yes # USB Nkey Rollover | ||
| 16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 18 | MIDI_ENABLE = no # MIDI support | ||
| 19 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
| 20 | AUDIO_ENABLE = no # Audio output on port C6 | ||
| 21 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
| 22 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs | ||
