diff options
author | Joel Challis <git@zvecr.com> | 2021-01-05 00:52:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 00:52:31 +0000 |
commit | f03b10b6c1c9a5b0e07f7f78c6060610246b4a7f (patch) | |
tree | 7d9df975a5046b8d22b5f20694715287361f96a4 /keyboards/handwired/pytest/has_template/keymaps/default | |
parent | 810eafad121bda333c53490e2d8a29f3a83d9c19 (diff) |
Migrate python tests away from onekey (#11367)
* Migrate python tests away from onekey
* Add stub files to stop lint complaints
* Make all the pytest keymaps compile
Diffstat (limited to 'keyboards/handwired/pytest/has_template/keymaps/default')
-rw-r--r-- | keyboards/handwired/pytest/has_template/keymaps/default/keymap.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/keyboards/handwired/pytest/has_template/keymaps/default/keymap.c b/keyboards/handwired/pytest/has_template/keymaps/default/keymap.c new file mode 100644 index 0000000000..a5782f7a13 --- /dev/null +++ b/keyboards/handwired/pytest/has_template/keymaps/default/keymap.c @@ -0,0 +1,5 @@ +#include QMK_KEYBOARD_H + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + LAYOUT_ortho_1x1(KC_A) +}; |