Skip to content

Commit

Permalink
[Keyboard] Vault35 WKL universal (qmk#23519)
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-l-wang authored and IvanJackson committed May 6, 2024
1 parent 9dfd22d commit b43744e
Show file tree
Hide file tree
Showing 8 changed files with 860 additions and 0 deletions.
11 changes: 11 additions & 0 deletions keyboards/jlw/vault35_wkl_universal/config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright 2024 jlw
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define WS2812_PWM_DRIVER PWMD17
#define WS2812_PWM_CHANNEL 1
#define WS2812_PWM_PAL_MODE 2
#define WS2812_PWM_COMPLEMENTARY_OUTPUT
#define WS2812_DMA_STREAM STM32_DMA1_STREAM1
#define WS2812_DMA_CHANNEL 1
8 changes: 8 additions & 0 deletions keyboards/jlw/vault35_wkl_universal/halconf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright 2024 jlw
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#define HAL_USE_PWM TRUE

#include_next <halconf.h>
765 changes: 765 additions & 0 deletions keyboards/jlw/vault35_wkl_universal/info.json

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions keyboards/jlw/vault35_wkl_universal/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// Copyright 2024 jlw
// SPDX-License-Identifier: GPL-2.0-or-later

#include QMK_KEYBOARD_H

const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_all(
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_VOLU, KC_Y, KC_U, KC_I, KC_O, KC_P,
KC_A, KC_S, KC_D, KC_F, KC_G, KC_VOLD, KC_H, KC_J, KC_K, KC_L, KC_QUOT,
KC_Z, KC_X, KC_C, KC_V, KC_B, RGB_TOG, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
KC_ESC, MO(1), KC_ENT, KC_LEFT, KC_DOWN, KC_UP, KC_RIGHT, KC_BSPC
),

[1] = LAYOUT_all(
_______, _______, _______, _______, _______, _______, _______, KC_7, KC_8, KC_9, KC_0,
_______, _______, _______, _______, _______, _______, _______, KC_4, KC_5, KC_6, _______,
_______, _______, _______, _______, _______, QK_BOOT, _______, KC_1, KC_2, KC_3, _______,
_______, _______, _______, _______, _______, _______, MO(2), _______
),

[2] = LAYOUT_all(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, KC_LEFT, KC_DOWN, KC_UP, KC_LEFT, _______,
_______, _______, _______, _______, _______, QK_BOOT, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______
)
};

#ifdef ENCODER_MAP_ENABLE
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
[1] = { ENCODER_CCW_CW(RGB_HUD, RGB_HUI) },
[2] = { ENCODER_CCW_CW(RGB_VAD, RGB_VAI) }
};
#endif

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ENCODER_MAP_ENABLE = yes
11 changes: 11 additions & 0 deletions keyboards/jlw/vault35_wkl_universal/mcuconf.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright 2024 jlw
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include_next <mcuconf.h>

#undef STM32_PWM_USE_TIM17
#define STM32_PWM_USE_TIM17 TRUE
#define STM32_TIM17_SUPPRESS_ISR

27 changes: 27 additions & 0 deletions keyboards/jlw/vault35_wkl_universal/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Vault 35 WKL Universal

![Vault 35 WKL Universal](https://i.imgur.com/gtJwgiv.png)

A drop in replacement PCB for the Vault 35 WKL case, originally designed by ProjectCain Mechvault.

* Keyboard Maintainer: [jlw](https://github.com/josh-l-wang)
* Hardware Supported: Vault 35 WKL Universal PCB
* Hardware Availability: [jlw-kb.com](https://jlw-kb.com)

Make example for this keyboard (after setting up your build environment):

make jlw/vault35_wkl_universal:default

Flashing example for this keyboard:

make jlw/vault35_wkl_universal: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 (the top left key) and plug in the keyboard
* **Physical reset button**: Hold button on the back of the PCB while plugging in the PCB
* **Keycode in layout**: Press the key mapped to `QK_BOOT` if it is available
1 change: 1 addition & 0 deletions keyboards/jlw/vault35_wkl_universal/rules.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file intentionally left blank

0 comments on commit b43744e

Please sign in to comment.