summaryrefslogtreecommitdiff
path: root/keyboards/handwired/cans12er
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/cans12er')
-rw-r--r--keyboards/handwired/cans12er/cans12er.c1
-rw-r--r--keyboards/handwired/cans12er/cans12er.h13
-rw-r--r--keyboards/handwired/cans12er/config.h23
-rw-r--r--keyboards/handwired/cans12er/info.json31
-rw-r--r--keyboards/handwired/cans12er/keymaps/default/keymap.c20
-rw-r--r--keyboards/handwired/cans12er/readme.md18
-rw-r--r--keyboards/handwired/cans12er/rules.mk18
7 files changed, 0 insertions, 124 deletions
diff --git a/keyboards/handwired/cans12er/cans12er.c b/keyboards/handwired/cans12er/cans12er.c
deleted file mode 100644
index e74b6a3026..0000000000
--- a/keyboards/handwired/cans12er/cans12er.c
+++ /dev/null
@@ -1 +0,0 @@
-#include "cans12er.h"
diff --git a/keyboards/handwired/cans12er/cans12er.h b/keyboards/handwired/cans12er/cans12er.h
deleted file mode 100644
index 87a39799ef..0000000000
--- a/keyboards/handwired/cans12er/cans12er.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include "quantum.h"
-
-#define LAYOUT_ortho_3x4( \
- K00, K01, K02, K03, \
- K10, K11, K12, K13, \
- K20, K21, K22, K23 \
-) { \
- { K00, K01, K02, K03 }, \
- { K10, K11, K12, K13 }, \
- { K20, K21, K22, K23 } \
-}
diff --git a/keyboards/handwired/cans12er/config.h b/keyboards/handwired/cans12er/config.h
deleted file mode 100644
index 8e7ce92439..0000000000
--- a/keyboards/handwired/cans12er/config.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#pragma once
-
-#include "config_common.h"
-
-/* key matrix size */
-#define MATRIX_ROWS 3
-#define MATRIX_COLS 4
-
-/* key matrix pins */
-#define MATRIX_ROW_PINS { F7, B1, B3 }
-#define MATRIX_COL_PINS { D0, D4, C6, D7 }
-
-/* COL2ROW or ROW2COL */
-#define DIODE_DIRECTION ROW2COL
-
-/* Set 0 if debouncing isn't needed */
-#define DEBOUNCE 5
-
-/* 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/cans12er/info.json b/keyboards/handwired/cans12er/info.json
deleted file mode 100644
index 28d6d2c83e..0000000000
--- a/keyboards/handwired/cans12er/info.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "keyboard_name": "Cans12er",
- "manufacturer": "Can",
- "url": "",
- "maintainer": "canbaytok",
- "usb": {
- "vid": "0xFEED",
- "pid": "0x6060",
- "device_version": "0.0.1"
- },
- "layouts": {
- "LAYOUT_ortho_3x4": {
- "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}
- ]
- }
- }
-}
diff --git a/keyboards/handwired/cans12er/keymaps/default/keymap.c b/keyboards/handwired/cans12er/keymaps/default/keymap.c
deleted file mode 100644
index 864abede37..0000000000
--- a/keyboards/handwired/cans12er/keymaps/default/keymap.c
+++ /dev/null
@@ -1,20 +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 _KEYPAD 0
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-[_KEYPAD] = LAYOUT_ortho_3x4(
- KC_A, KC_B, KC_C, KC_D,
- KC_E, KC_F, KC_G, KC_H,
- KC_I, KC_J, KC_K, KC_L
-),
-};
diff --git a/keyboards/handwired/cans12er/readme.md b/keyboards/handwired/cans12er/readme.md
deleted file mode 100644
index 5ecb2d2c26..0000000000
--- a/keyboards/handwired/cans12er/readme.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# Cans12er
-![Cans12er](https://i.imgur.com/ZsO6QSI.jpg)
-
-A 12-key, orthogonal keypad designed by Can!
-
-* Keyboard Maintainer: [Can](https://github.com/canbaytok)
-* Hardware Supported: Pro Micro Atmega32u4
-* Hardware Availability: DIY with the [open-source design files](https://github.com/canbaytok/Cans12er)
-
-Schematic can be found here: [EasyEDA](https://easyeda.com/senordoenermann/mediapad)
-
-Build Instructions can be found here: [canbaytok/Cans12er](https://github.com/canbaytok/Cans12er)
-
-Make example for this keyboard (after setting up your build environment):
-
- make handwired/cans12er:default
-
-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/cans12er/rules.mk b/keyboards/handwired/cans12er/rules.mk
deleted file mode 100644
index 476cf49f27..0000000000
--- a/keyboards/handwired/cans12er/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# MCU name
-MCU = atmega32u4
-
-# Bootloader selection
-BOOTLOADER = atmel-dfu
-
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
-MOUSEKEY_ENABLE = yes # Mouse keys
-EXTRAKEY_ENABLE = yes # Audio control and System control
-CONSOLE_ENABLE = no # 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
-RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
-AUDIO_ENABLE = no # Audio output