diff options
| author | Keebz Dot Net <64744703+keebzdotnet@users.noreply.github.com> | 2020-09-30 01:50:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-30 01:50:55 -0700 |
| commit | 5ecb1b2d39f5424979a1325e2642ac73db828c03 (patch) | |
| tree | a5b5752c01585f3aa7f6572a44468b5a618c7c6f /keyboards/keebzdotnet | |
| parent | 8b90822f6e707830904426dc05501bffcb69ec18 (diff) | |
| download | qmk_firmware-5ecb1b2d39f5424979a1325e2642ac73db828c03.tar.gz qmk_firmware-5ecb1b2d39f5424979a1325e2642ac73db828c03.zip | |
Wazowski 23-19 VIA Support (#9730)
* fixed keymap placement
- online configurator keys were in the wrong location and needed to be fixed
- fixed a key being to high on the y position
* Create rules.mk
* Create keymap.c
* Update rules.mk
added VIA support
* Changed wazowski via keymap to include skipped switch
* changed the vendor ID
* Update keyboards/keebzdotnet/wazowski/config.h
* Removed VIA enable from keyboard rules.mk
* Update keyboards/keebzdotnet/wazowski/rules.mk
* Fixed wazowski via keymap build errors
* Added multi-layer support for Wazowski via keymap
Diffstat (limited to 'keyboards/keebzdotnet')
| -rw-r--r-- | keyboards/keebzdotnet/wazowski/config.h | 2 | ||||
| -rw-r--r-- | keyboards/keebzdotnet/wazowski/keymaps/via/keymap.c | 40 | ||||
| -rw-r--r-- | keyboards/keebzdotnet/wazowski/keymaps/via/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/keebzdotnet/wazowski/rules.mk | 6 |
4 files changed, 45 insertions, 4 deletions
diff --git a/keyboards/keebzdotnet/wazowski/config.h b/keyboards/keebzdotnet/wazowski/config.h index 56f05515a..26c7ccd5e 100644 --- a/keyboards/keebzdotnet/wazowski/config.h +++ b/keyboards/keebzdotnet/wazowski/config.h | |||
| @@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 20 | #include "config_common.h" | 20 | #include "config_common.h" |
| 21 | 21 | ||
| 22 | /* USB Device descriptor parameter */ | 22 | /* USB Device descriptor parameter */ |
| 23 | #define VENDOR_ID 0xFEED | 23 | #define VENDOR_ID 0x4B5A // "KZ" |
| 24 | #define PRODUCT_ID 0x53FC | 24 | #define PRODUCT_ID 0x53FC |
| 25 | #define DEVICE_VER 0x0001 | 25 | #define DEVICE_VER 0x0001 |
| 26 | #define MANUFACTURER keebzdotnet | 26 | #define MANUFACTURER keebzdotnet |
diff --git a/keyboards/keebzdotnet/wazowski/keymaps/via/keymap.c b/keyboards/keebzdotnet/wazowski/keymaps/via/keymap.c new file mode 100644 index 000000000..942142906 --- /dev/null +++ b/keyboards/keebzdotnet/wazowski/keymaps/via/keymap.c | |||
| @@ -0,0 +1,40 @@ | |||
| 1 | /* Copyright 2020 keebzdotnet | ||
| 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 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 19 | /* Base */ | ||
| 20 | [0] = LAYOUT( | ||
| 21 | KC_A, KC_B, KC_C, KC_D, KC_E, | ||
| 22 | KC_F, KC_G, KC_H, KC_I, KC_J, | ||
| 23 | KC_K, KC_L, KC_M, KC_N | ||
| 24 | ), | ||
| 25 | [1] = LAYOUT( | ||
| 26 | _______, _______, _______, _______, _______, | ||
| 27 | _______, _______, _______, _______, _______, | ||
| 28 | _______, _______, _______, _______ | ||
| 29 | ), | ||
| 30 | [2] = LAYOUT( | ||
| 31 | _______, _______, _______, _______, _______, | ||
| 32 | _______, _______, _______, _______, _______, | ||
| 33 | _______, _______, _______, _______ | ||
| 34 | ), | ||
| 35 | [3] = LAYOUT( | ||
| 36 | _______, _______, _______, _______, _______, | ||
| 37 | _______, _______, _______, _______, _______, | ||
| 38 | _______, _______, _______, _______ | ||
| 39 | ), | ||
| 40 | }; | ||
diff --git a/keyboards/keebzdotnet/wazowski/keymaps/via/rules.mk b/keyboards/keebzdotnet/wazowski/keymaps/via/rules.mk new file mode 100644 index 000000000..1e5b99807 --- /dev/null +++ b/keyboards/keebzdotnet/wazowski/keymaps/via/rules.mk | |||
| @@ -0,0 +1 @@ | |||
| VIA_ENABLE = yes | |||
diff --git a/keyboards/keebzdotnet/wazowski/rules.mk b/keyboards/keebzdotnet/wazowski/rules.mk index b8ce67b68..e82d793bc 100644 --- a/keyboards/keebzdotnet/wazowski/rules.mk +++ b/keyboards/keebzdotnet/wazowski/rules.mk | |||
| @@ -14,11 +14,11 @@ BOOTLOADER = atmel-dfu | |||
| 14 | # Build Options | 14 | # Build Options |
| 15 | # change yes to no to disable | 15 | # change yes to no to disable |
| 16 | # | 16 | # |
| 17 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration |
| 18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
| 19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
| 20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
| 21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
| 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
| 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
| 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
