-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port support for spaceman 2% milk macropad
- Loading branch information
Showing
4 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-or-later */ | ||
|
||
#pragma once | ||
|
||
#define VIAL_KEYBOARD_UID {0x50, 0xB8, 0x6D, 0x63, 0x19, 0xE1, 0xC6, 0xEC} | ||
#define VIAL_UNLOCK_COMBO_ROWS { 0, 1 } | ||
#define VIAL_UNLOCK_COMBO_COLS { 0, 0 } | ||
|
||
#define DYNAMIC_KEYMAP_LAYER_COUNT 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT( | ||
KC_Z, | ||
KC_X | ||
) | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
MOUSEKEY_ENABLE = no # Mouse keys | ||
RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | ||
VIA_ENABLE = yes # Enable VIA | ||
VIAL_ENABLE = yes # Enable VIAL | ||
OLED_ENABLE = no | ||
LTO_ENABLE = yes | ||
QMK_SETTINGS = no | ||
COMBO_ENABLE = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "spaceman_2_milk", | ||
"vendorId": "0x5342", | ||
"productId": "0x3225", | ||
"lighting": "qmk_rgblight", | ||
"matrix": { | ||
"rows": 2, | ||
"cols": 1 | ||
}, | ||
"layouts": { | ||
"keymap": [["0,0"], ["1,0"]] | ||
} | ||
} |