summaryrefslogtreecommitdiff
path: root/keyboards/handwired/jotpad16
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/jotpad16')
-rw-r--r--keyboards/handwired/jotpad16/config.h37
-rw-r--r--keyboards/handwired/jotpad16/info.json30
-rw-r--r--keyboards/handwired/jotpad16/jotpad16.c8
-rw-r--r--keyboards/handwired/jotpad16/jotpad16.h18
-rw-r--r--keyboards/handwired/jotpad16/keymaps/default/keymap.c33
-rw-r--r--keyboards/handwired/jotpad16/readme.md41
-rw-r--r--keyboards/handwired/jotpad16/rules.mk20
7 files changed, 0 insertions, 187 deletions
diff --git a/keyboards/handwired/jotpad16/config.h b/keyboards/handwired/jotpad16/config.h
deleted file mode 100644
index 78f28059e5..0000000000
--- a/keyboards/handwired/jotpad16/config.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#pragma once
-
-#include "config_common.h"
-
-/* USB Device descriptor parameter */
-#define VENDOR_ID 0xFEED
-#define PRODUCT_ID 0x6060
-#define DEVICE_VER 0x0001
-#define MANUFACTURER Jotix
-#define PRODUCT JotPad16
-
-/* key matrix size */
-#define MATRIX_ROWS 4
-#define MATRIX_COLS 4
-
-/* pro_micro pin-out */
-#define MATRIX_ROW_PINS { B6, B2, D2, D3 }
-#define MATRIX_COL_PINS { E6, D7, B3, B1 }
-#define UNUSED_PINS
-
-/* leds */
-#define JOTPAD16_LEDS
-#define JOTPAD16_LED1 B5
-#define JOTPAD16_LED2 B4
-#define QMK_LED B5
-
-/* COL2ROW or ROW2COL */
-#define DIODE_DIRECTION COL2ROW
-
-/* Set 0 if debouncing isn't needed */
-#define DEBOUNCE 0
-
-/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
-#define LOCKING_SUPPORT_ENABLE
-
-/* Locking resynchronize hack */
-#define LOCKING_RESYNC_ENABLE
diff --git a/keyboards/handwired/jotpad16/info.json b/keyboards/handwired/jotpad16/info.json
deleted file mode 100644
index 39a043e9e1..0000000000
--- a/keyboards/handwired/jotpad16/info.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "keyboard_name": "JotPad16",
- "url": "",
- "maintainer": "jotix",
- "layouts": {
- "LAYOUT_ortho_4x4": {
- "layout": [
- {"x":0, "y":0},
- {"x":1, "y":0},
- {"x":2, "y":0},
- {"x":3, "y":0},
-
- {"x":0, "y":1},
- {"x":1, "y":1},
- {"x":2, "y":1},
- {"x":3, "y":1},
-
- {"x":0, "y":2},
- {"x":1, "y":2},
- {"x":2, "y":2},
- {"x":3, "y":2},
-
- {"x":0, "y":3},
- {"x":1, "y":3},
- {"x":2, "y":3},
- {"x":3, "y":3}
- ]
- }
- }
-}
diff --git a/keyboards/handwired/jotpad16/jotpad16.c b/keyboards/handwired/jotpad16/jotpad16.c
deleted file mode 100644
index dfff7e1679..0000000000
--- a/keyboards/handwired/jotpad16/jotpad16.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include "jotpad16.h"
-
-void keyboard_pre_init_kb() {
- setPinOutput(JOTPAD16_LED1);
- setPinOutput(JOTPAD16_LED2);
-
- keyboard_pre_init_user();
-}
diff --git a/keyboards/handwired/jotpad16/jotpad16.h b/keyboards/handwired/jotpad16/jotpad16.h
deleted file mode 100644
index 012c9290dd..0000000000
--- a/keyboards/handwired/jotpad16/jotpad16.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#pragma once
-
-#include "quantum.h"
-
-// Used to create a keymap using only KC_ prefixed keys
-#define LAYOUT_ortho_4x4( \
- k00, k01, k02, k03, \
- k10, k11, k12, k13, \
- k20, k21, k22, k23, \
- k30, k31, k32, k33 \
-) \
-{ \
- { k00, k01, k02, k03 }, \
- { k10, k11, k12, k13 }, \
- { k20, k21, k22, k23 }, \
- { k30, k31, k32, k33 } \
-}
-
diff --git a/keyboards/handwired/jotpad16/keymaps/default/keymap.c b/keyboards/handwired/jotpad16/keymaps/default/keymap.c
deleted file mode 100644
index a5d81ab3f4..0000000000
--- a/keyboards/handwired/jotpad16/keymaps/default/keymap.c
+++ /dev/null
@@ -1,33 +0,0 @@
-// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
-// this is the style you want to emulate.
-
-#include QMK_KEYBOARD_H
-
-
-// Each layer gets a name for readability, which is then used in the keymap matrix below.
-// The underscores don't mean anything - you can have a layer called STUFF or any other name.
-// Layer names don't all need to be of the same length, obviously, and you can also skip them
-// entirely and just use numbers.
-
-#define _NUMPAD 0
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-/* Numpad
- * +-------+-------+-------+-------+
- * | 7 | 8 | 9 | - |
- * +-------+-------+-------+-------+
- * | 4 | 5 | 6 | + |
- * +-------+-------+-------+-------+
- * | 1 | 2 | 3 | enter |
- * +-------+-------+-------+-------+
- * | 0 | . | / | * |
- * +-------+-------+-------+-------+
- */
-[_NUMPAD] = LAYOUT_ortho_4x4(
- KC_P7, KC_P8, KC_P9, KC_MINS,
- KC_P4, KC_P5, KC_P6, KC_PLUS,
- KC_P1, KC_P2, KC_P3, KC_PENT,
- KC_P0, KC_PDOT,KC_PSLS,KC_ASTR
-),
-};
diff --git a/keyboards/handwired/jotpad16/readme.md b/keyboards/handwired/jotpad16/readme.md
deleted file mode 100644
index c8773cf183..0000000000
--- a/keyboards/handwired/jotpad16/readme.md
+++ /dev/null
@@ -1,41 +0,0 @@
-# JotPad16
-
-A ortholinear keypad (4x4) made by jotix.
-
-Keyboard Maintainer: [jotix](https://github.com/jotix)
-Hardware Supported: Arduino Pro Micro
-
-### Arduino Pro Micro Pinout
-
-| rows | 0 | 1 | 2 | 3 |
-|-------------|----|----|-----|-----|
-| arduino pin | 10 | 16 | RXI | TX0 |
-| qmk pin | B6 | B2 | D2 | D3 |
-
-| columns | 0 | 1 | 2 | 3 |
-|-------------|----|----|----|----|
-| arduino pin | 7 | 6 | 14 | 15 |
-| qmk pin | E6 | D7 | B3 | C3 |
-
-| | LED1 | LED2 |
-|-------------|------|------|
-| Arduino pin | 9 | 8 |
-| QMK pin | B5 | B4 |
-
-### Compiling the Firmware
-
-Make example for this keyboard (after setting up your build environment):
-
- make handwired/jotpad16:default
-
-### The Default Keymap
-
-| 7 | 8 | 9 | - |
-|---|---|---|---|
-| 4 | 5 | 6 | + |
-|---|---|---|---|
-| 1 | 2 | 3 |ent|
-|---|---|---|---|
-| 0 | . | / | * |
-
-See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/keyboards/handwired/jotpad16/rules.mk b/keyboards/handwired/jotpad16/rules.mk
deleted file mode 100644
index b746275c89..0000000000
--- a/keyboards/handwired/jotpad16/rules.mk
+++ /dev/null
@@ -1,20 +0,0 @@
-# MCU name
-MCU = atmega32u4
-
-# Bootloader selection
-BOOTLOADER = caterina
-
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite
-MOUSEKEY_ENABLE = no # Mouse keys
-EXTRAKEY_ENABLE = yes # Audio control and System control
-CONSOLE_ENABLE = yes # Console for debug
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = yes # Enable N-Key Rollover
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-AUDIO_ENABLE = no # Audio output
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-
-LAYOUTS = ortho_4x4