diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-05 11:04:56 -0800 |
---|---|---|
committer | Zach White <skullydazed@gmail.com> | 2021-01-05 11:04:56 -0800 |
commit | cf2f13fc77e7d9371e845d8825f8ced974083c70 (patch) | |
tree | f51890908a1ed5ee749b167a6c85830472c7e379 /keyboards/handwired/pytest/basic | |
parent | e7db582e356a961ba608ef441f201d879ec8d740 (diff) | |
parent | 3d1e7bd36fee748b6bfaa89d4a14c3f4f841c0ca (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/handwired/pytest/basic')
5 files changed, 15 insertions, 0 deletions
diff --git a/keyboards/handwired/pytest/basic/.noci b/keyboards/handwired/pytest/basic/.noci new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/keyboards/handwired/pytest/basic/.noci diff --git a/keyboards/handwired/pytest/basic/keymaps/default/keymap.c b/keyboards/handwired/pytest/basic/keymaps/default/keymap.c new file mode 100644 index 0000000000..a5782f7a13 --- /dev/null +++ b/keyboards/handwired/pytest/basic/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) +}; diff --git a/keyboards/handwired/pytest/basic/keymaps/default_json/keymap.json b/keyboards/handwired/pytest/basic/keymaps/default_json/keymap.json new file mode 100644 index 0000000000..e162e41399 --- /dev/null +++ b/keyboards/handwired/pytest/basic/keymaps/default_json/keymap.json @@ -0,0 +1,9 @@ +{ + "keyboard": "handwired/pytest/basic", + "keymap": "default_json", + "layout": "LAYOUT_ortho_1x1", + "layers": [["KC_A"]], + "author": "qmk", + "notes": "This file is a keymap.json file for handwired/pytest/basic", + "version": 1 +} diff --git a/keyboards/handwired/pytest/basic/readme.md b/keyboards/handwired/pytest/basic/readme.md new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/keyboards/handwired/pytest/basic/readme.md diff --git a/keyboards/handwired/pytest/basic/rules.mk b/keyboards/handwired/pytest/basic/rules.mk new file mode 100644 index 0000000000..6b42774dbf --- /dev/null +++ b/keyboards/handwired/pytest/basic/rules.mk @@ -0,0 +1 @@ +MCU = atmega32u4 |