mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-13 15:35:27 +00:00
3db41817e0
Clean up checks and logics that are unnecessary due to MILC updates. Use pathlib instead of os.path for readability. Use the 'pytest' keyboard for the tests. Add community layout for 'handwired/onekey/pytest' so we can test community layouts.
12 lines
230 B
C
12 lines
230 B
C
#include QMK_KEYBOARD_H
|
|
|
|
/* This keyboard/layout is used to test community layout discovery/compilation. */
|
|
|
|
#define _DEFAULT 0
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
|
[_DEFAULT] = LAYOUT (
|
|
KC_B
|
|
),
|
|
};
|