summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/pytest/has_template
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/pytest/has_template')
-rw-r--r--keyboards/handwired/pytest/has_template/keymaps/default/keymap.c5
-rw-r--r--keyboards/handwired/pytest/has_template/keymaps/default_json/keymap.json9
-rw-r--r--keyboards/handwired/pytest/has_template/keymaps/nocpp/keymap.c23
-rw-r--r--keyboards/handwired/pytest/has_template/readme.md0
-rw-r--r--keyboards/handwired/pytest/has_template/templates/keymap.c2
-rw-r--r--keyboards/handwired/pytest/has_template/templates/keymap.json3
6 files changed, 0 insertions, 42 deletions
diff --git a/keyboards/handwired/pytest/has_template/keymaps/default/keymap.c b/keyboards/handwired/pytest/has_template/keymaps/default/keymap.c
deleted file mode 100644
index a5782f7a13..0000000000
--- a/keyboards/handwired/pytest/has_template/keymaps/default/keymap.c
+++ /dev/null
@@ -1,5 +0,0 @@
-#include QMK_KEYBOARD_H
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- LAYOUT_ortho_1x1(KC_A)
-};
diff --git a/keyboards/handwired/pytest/has_template/keymaps/default_json/keymap.json b/keyboards/handwired/pytest/has_template/keymaps/default_json/keymap.json
deleted file mode 100644
index cbdce6db32..0000000000
--- a/keyboards/handwired/pytest/has_template/keymaps/default_json/keymap.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "keyboard": "handwired/pytest/has_template",
- "keymap": "default_json",
- "layout": "LAYOUT_ortho_1x1",
- "layers": [["KC_A"]],
- "author": "qmk",
- "notes": "This file is a keymap.json file for handwired/pytest/has_template",
- "version": 1
-}
diff --git a/keyboards/handwired/pytest/has_template/keymaps/nocpp/keymap.c b/keyboards/handwired/pytest/has_template/keymaps/nocpp/keymap.c
deleted file mode 100644
index 65cd4cebea..0000000000
--- a/keyboards/handwired/pytest/has_template/keymaps/nocpp/keymap.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include QMK_KEYBOARD_H
-#include "audio.h"
-
-/* THIS FILE WAS GENERATED AND IS EXPERIMENTAL!
- *
- * This file was generated by qmk-compile-json. You may or may not want to
- * edit it directly.
- */
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
- [0] = LAYOUT(KC_ENTER)
-};
-
-bool encoder_update_user(uint8_t index, bool clockwise) {
- if (index == 0) {
- if (clockwise) {
- tap_code(KC_UP);
- } else {
- tap_code(KC_DOWN);
- }
- }
- return true;
-};
diff --git a/keyboards/handwired/pytest/has_template/readme.md b/keyboards/handwired/pytest/has_template/readme.md
deleted file mode 100644
index e69de29bb2..0000000000
--- a/keyboards/handwired/pytest/has_template/readme.md
+++ /dev/null
diff --git a/keyboards/handwired/pytest/has_template/templates/keymap.c b/keyboards/handwired/pytest/has_template/templates/keymap.c
deleted file mode 100644
index 6cb25d5226..0000000000
--- a/keyboards/handwired/pytest/has_template/templates/keymap.c
+++ /dev/null
@@ -1,2 +0,0 @@
-#include QMK_KEYBOARD_H
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {__KEYMAP_GOES_HERE__};
diff --git a/keyboards/handwired/pytest/has_template/templates/keymap.json b/keyboards/handwired/pytest/has_template/templates/keymap.json
deleted file mode 100644
index 04928564e9..0000000000
--- a/keyboards/handwired/pytest/has_template/templates/keymap.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "documentation": "This file is a keymap.json file for handwired/pytest/has_template"
-}