summaryrefslogtreecommitdiff
path: root/keyboards/kinesis
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-04-09 08:58:11 -0700
committerDrashna Jaelre <drashna@live.com>2019-04-09 08:58:11 -0700
commitb6850bc043b1d129042f47501f0a1dc1e196f962 (patch)
treea0a772f278c3c494db3bc69103955af5561e1cae /keyboards/kinesis
parent19ed62114a1f5d20aacb9cbe83105e977b9a2971 (diff)
remove all keyboards but ergodox and planck
Diffstat (limited to 'keyboards/kinesis')
-rw-r--r--keyboards/kinesis/alvicstep/alvicstep.c105
-rw-r--r--keyboards/kinesis/alvicstep/alvicstep.h101
-rw-r--r--keyboards/kinesis/alvicstep/config.h35
-rw-r--r--keyboards/kinesis/alvicstep/docs/kicad/kinesis-cache.lib232
-rw-r--r--keyboards/kinesis/alvicstep/docs/kicad/kinesis.pro83
-rw-r--r--keyboards/kinesis/alvicstep/docs/kicad/kinesis.sch634
-rw-r--r--keyboards/kinesis/alvicstep/docs/readme.txt59
-rw-r--r--keyboards/kinesis/alvicstep/matrix.c219
-rw-r--r--keyboards/kinesis/alvicstep/readme.md46
-rw-r--r--keyboards/kinesis/alvicstep/rules.mk6
-rw-r--r--keyboards/kinesis/config.h140
-rw-r--r--keyboards/kinesis/info.json18
-rw-r--r--keyboards/kinesis/keymaps/carpalx/config.h8
-rw-r--r--keyboards/kinesis/keymaps/carpalx/keymap.c192
-rw-r--r--keyboards/kinesis/keymaps/carpalx/readme.md83
-rw-r--r--keyboards/kinesis/keymaps/carpalx/rules.mk18
-rw-r--r--keyboards/kinesis/keymaps/default/config.h3
-rw-r--r--keyboards/kinesis/keymaps/default/keymap.c85
-rw-r--r--keyboards/kinesis/keymaps/default/readme.md1
-rw-r--r--keyboards/kinesis/keymaps/default/rules.mk18
-rw-r--r--keyboards/kinesis/keymaps/default_pretty/config.h8
-rw-r--r--keyboards/kinesis/keymaps/default_pretty/keymap.c78
-rw-r--r--keyboards/kinesis/keymaps/default_pretty/readme.md5
-rw-r--r--keyboards/kinesis/keymaps/default_pretty/rules.mk18
-rw-r--r--keyboards/kinesis/keymaps/dvorak/config.h8
-rw-r--r--keyboards/kinesis/keymaps/dvorak/keymap.c88
-rw-r--r--keyboards/kinesis/keymaps/dvorak/rules.mk18
-rw-r--r--keyboards/kinesis/keymaps/insertsnideremarks/config.h13
-rw-r--r--keyboards/kinesis/keymaps/insertsnideremarks/keymap.c482
-rw-r--r--keyboards/kinesis/keymaps/insertsnideremarks/readme.md224
-rw-r--r--keyboards/kinesis/keymaps/insertsnideremarks/rules.mk21
-rw-r--r--keyboards/kinesis/keymaps/milestogo/config.h8
-rw-r--r--keyboards/kinesis/keymaps/milestogo/keymap.c377
-rw-r--r--keyboards/kinesis/keymaps/milestogo/readme.md2
-rw-r--r--keyboards/kinesis/keymaps/milestogo/rules.mk18
-rw-r--r--keyboards/kinesis/keymaps/tw1t611/config.h3
-rw-r--r--keyboards/kinesis/keymaps/tw1t611/keymap.c64
-rw-r--r--keyboards/kinesis/keymaps/tw1t611/readme.md1
-rw-r--r--keyboards/kinesis/keymaps/tw1t611/rules.mk18
-rw-r--r--keyboards/kinesis/keymaps/xyverz/config.h8
-rw-r--r--keyboards/kinesis/keymaps/xyverz/keymap.c300
-rw-r--r--keyboards/kinesis/keymaps/xyverz/readme.md130
-rw-r--r--keyboards/kinesis/keymaps/xyverz/rules.mk18
-rw-r--r--keyboards/kinesis/kinesis.c1
-rw-r--r--keyboards/kinesis/kinesis.h23
-rw-r--r--keyboards/kinesis/readme.md12
-rw-r--r--keyboards/kinesis/rules.mk75
-rw-r--r--keyboards/kinesis/stapelberg/config.h44
-rw-r--r--keyboards/kinesis/stapelberg/readme.md53
-rw-r--r--keyboards/kinesis/stapelberg/rules.mk5
-rw-r--r--keyboards/kinesis/stapelberg/stapelberg.c61
-rw-r--r--keyboards/kinesis/stapelberg/stapelberg.h104
52 files changed, 0 insertions, 4374 deletions
diff --git a/keyboards/kinesis/alvicstep/alvicstep.c b/keyboards/kinesis/alvicstep/alvicstep.c
deleted file mode 100644
index fba9f5136f..0000000000
--- a/keyboards/kinesis/alvicstep/alvicstep.c
+++ /dev/null
@@ -1,105 +0,0 @@
-#include "kinesis.h"
-
-// begin section origin https://github.com/alvicstep/tmk_keyboard
-
-void all_led_off(void)
-{
- PORTD = 0b11111111;
-}
-
-void all_led_on(void)
-{
- PORTD = 0b00000000;
-}
-void num_lock_led_on(void)
-{
- PORTD = 0b11101111;
-}
-
-void caps_lock_led_on(void)
-{
- PORTD = 0b01111111;
-}
-
-void scroll_lock_led_on(void)
-{
- PORTD = 0b11011111;
-}
-void keypad_led_on(void)
-{
- PORTD = 0b10111111;
-}
-void blink_all_leds(void)
-{
- all_led_on();
- _delay_ms(500);
-
- all_led_off();
- _delay_ms(100);
-
- caps_lock_led_on();
- _delay_ms(100);
-
- num_lock_led_on();
- _delay_ms(100);
-
- scroll_lock_led_on();
- _delay_ms(100);
-
- keypad_led_on();
- _delay_ms(100);
-
- //back
-
- scroll_lock_led_on();
- _delay_ms(100);
-
- num_lock_led_on();
- _delay_ms(100);
-
- caps_lock_led_on();
- _delay_ms(100);
-
- all_led_off();
-}
-
-// End section origin https://github.com/alvicstep/tmk_keyboard
-
- void matrix_init_kb(void) {
- blink_all_leds();
- matrix_init_user();
-}
-
-
-void matrix_scan_kb(void) {
- // put your looping keyboard code here
- // runs every cycle (a lot)
-
- matrix_scan_user();
-}
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
-
- return process_record_user(keycode, record);
-}
-
-void led_set_kb(uint8_t usb_led) {
- // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
-
-//Copyright 2014 Warren Janssens <warren.janssens@gmail.com>
- uint8_t leds = 0xF0;
- if (usb_led & 1 << USB_LED_NUM_LOCK)
- leds &= ~0x10;
- if (usb_led & 1 << USB_LED_CAPS_LOCK)
- leds &= ~0x80;
- if (usb_led & 1 << USB_LED_SCROLL_LOCK)
- leds &= ~0x20;
- PORTD = (PORTD & 0x0F) | leds;
-
- led_set_user(usb_led);
-
-}
-
-
diff --git a/keyboards/kinesis/alvicstep/alvicstep.h b/keyboards/kinesis/alvicstep/alvicstep.h
deleted file mode 100644
index 169012faf5..0000000000
--- a/keyboards/kinesis/alvicstep/alvicstep.h
+++ /dev/null
@@ -1,101 +0,0 @@
-#ifndef KINESIS_ALVICSTEP_H
-#define KINESIS_ALVICSTEP_H
-
-#include "../kinesis.h"
-
-#define ___ KC_NO
-
-#define LAYOUT( \
- k02, k22, k12, k01, k21, k11, k00, k20, k10, \
- k80, k70, k60, k50, k40, k30, \
- k81, k71, k61, k51, k41, k31, \
- k82, k72, k62, k52, k42, k32, \
- k83, k73, k63, k53, k43, k33, \
- k74, k64, k54, k34, \
- k36, k35, \
- k55, \
- k56, k46, k75, \
- \
- k03, k23, k13, k04, k24, k14, k05, k85, k84, \
- k94, kA4, kB4, kD4, kE4, kF4, \
- k95, kA5, kB5, kD5, kE5, kF5, \
- k96, kA6, kB6, kD6, kE6, kF6, \
- k97, kA7, kB7, kD7, kE7, kF7, \
- k93, kB3, kD3, kE3, \
- k47, k66, \
- k67, \
- k87, k76, k86 \
-) { \
- { k00, k01, k02, k03, k04, k05, ___, ___ }, \
- { k10, k11, k12, k13, k14, ___, ___, ___ }, \
- { k20, k21, k22, k23, k24, ___, ___, ___ }, \
- { k30, k31, k32, k33, k34, k35, k36, ___ }, \
- { k40, k41, k42, k43, ___, ___, k46, k47 }, \
- { k50, k51, k52, k53, k54, k55, k56, ___ }, \
- { k60, k61, k62, k63, k64, ___, k66, k67 }, \
- { k70, k71, k72, k73, k74, k75, k76, ___ }, \
- { k80, k81, k82, k83, k84, k85, k86, k87 }, \
- { ___, ___, ___, k93, k94, k95, k96, k97 }, \
- { ___, ___, ___, ___, kA4, kA5, kA6, kA7 }, \
- { ___, ___, ___, kB3, kB4, kB5, kB6, kB7 }, \
- { ___, ___, ___, ___, ___, ___, ___, ___ }, \
- { ___, ___, ___, kD3, kD4, kD5, kD6, kD7 }, \
- { ___, ___, ___, kE3, kE4, kE5, kE6, kE7 }, \
- { ___, ___, ___, ___, kF4, kF5, kF6, kF7 } \
-}
-
-/* ---------------- LEFT HAND ----------------- ---------------- RIGHT HAND ---------------- */
-#define LAYOUT_pretty( \
- k02, k22, k12, k01, k21, k11, k00, k20, k10, k03, k23, k13, k04, k24, k14, k05, k85, k84, \
- k80, k70, k60, k50, k40, k30, k94, kA4, kB4, kD4, kE4, kF4, \
- k81, k71, k61, k51, k41, k31, k95, kA5, kB5, kD5, kE5, kF5, \
- k82, k72, k62, k52, k42, k32, k96, kA6, kB6, kD6, kE6, kF6, \
- k83, k73, k63, k53, k43, k33, k97, kA7, kB7, kD7, kE7, kF7, \
- k74, k64, k54, k34, k93, kB3, kD3, kE3, \
- k36, k35, k47, k66, \
- k55, k67, \
- k56, k46, k75, k87, k76, k86 \
-) { \
- { k00, k01, k02, k03, k04, k05, ___, ___ }, \
- { k10, k11, k12, k13, k14, ___, ___, ___ }, \
- { k20, k21, k22, k23, k24, ___, ___, ___ }, \
- { k30, k31, k32, k33, k34, k35, k36, ___ }, \
- { k40, k41, k42, k43, ___, ___, k46, k47 }, \
- { k50, k51, k52, k53, k54, k55, k56, ___ }, \
- { k60, k61, k62, k63, k64, ___, k66, k67 }, \
- { k70, k71, k72, k73, k74, k75, k76, ___ }, \
- { k80, k81, k82, k83, k84, k85, k86, k87 }, \
- { ___, ___, ___, k93, k94, k95, k96, k97 }, \
- { ___, ___, ___, ___, kA4, kA5, kA6, kA7 }, \
- { ___, ___, ___, kB3, kB4, kB5, kB6, kB7 }, \
- { ___, ___, ___, ___, ___, ___, ___, ___ }, \
- { ___, ___, ___, kD3, kD4, kD5, kD6, kD7 }, \
- { ___, ___, ___, kE3, kE4, kE5, kE6, kE7 }, \
- { ___, ___, ___, ___, kF4, kF5, kF6, kF7 } \
-}
-
-
-/*
- Row pin configuration
-
- PF0 A
- PF1 B
- PF2 C
- PF3 G 0 = U4, 1 = U5
-
-
- Matrix Map (US QWERTY keyboard layout shown)
-
- | row 0 | row 1 | row 2 | row 3 | row 4 | row 5 | row 6 | row 7 | row 8 | row 9 | row A | row B | row C | row D | row E | row F
- ----------------------------------------------------------------------------------------------------------------------------------------------------
- PB0 col0 | F6 | F8 | F7 | 5% | 4$ | 3# | 2@ | 1! | =+ | | | | | | |
- PB1 col1 | F3 | F5 | F4 | T | R | E | W | Q | Tab | | | | | | |
- PB2 col2 | Esc | F2 | F1 | G | F | D | S | A | CapsLk | | | | | | |
- PB3 col3 | F9 | F11 | F10 | B | V | C | X | Z | LShift | Up | | Down | | [{ | ]} |
- PB4 col4 | F12 | ScrLk | PrtSc | Right | | Left | Insert | `~ | 1! | 6^ | 7& | 8* | | 9( | 0) | -_
- PB5 col5 | Pause | | | LAlt | | Home | | End | Fn | Y | U | I | | O | P | \|
- PB6 col6 | | | | LCtrl | Delete | Bksp | RCtrl | Enter | Space | H | J | K | | L | ;: | '"
- PB7 col7 | | | | | RGUI | | PageUp | | PageDn | N | M | ,< | | .> | /? | RShift
-*/
-
-#endif
diff --git a/keyboards/kinesis/alvicstep/config.h b/keyboards/kinesis/alvicstep/config.h
deleted file mode 100644
index 88b7e2644a..0000000000
--- a/keyboards/kinesis/alvicstep/config.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef ALVICSTEP_CONFIG_H
-#define ALVICSTEP_CONFIG_H
-
-#include "../config.h"
-
-/* USB Device descriptor parameter */
-#define PRODUCT_ID 0x6060
-#define DEVICE_VER 0x0001
-
-/* key matrix size */
-#define MATRIX_ROWS 16
-#define MATRIX_COLS 8
-
-/*
- * Keyboard Matrix Assignments
- *
- * Change this to how you wired your keyboard
- * COLS: AVR pins used for columns, left to right
- * ROWS: AVR pins used for rows, top to bottom
- * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
- * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
- *
-*/
-//Passed through the port multipler, so 4 pins =16
-#define MATRIX_ROW_PINS { F0,F1, F2, F3 }
-
-// May be upside down.
-#define MATRIX_COL_PINS { B0,B1, B2, B3, B4, B5, B6, B7 }
-#define UNUSED_PINS
-
-/* COL2ROW or ROW2COL */
-#define DIODE_DIRECTION COL2ROW
-
-
-#endif
diff --git a/keyboards/kinesis/alvicstep/docs/kicad/kinesis-cache.lib b/keyboards/kinesis/alvicstep/docs/kicad/kinesis-cache.lib
deleted file mode 100644
index f798d39d6c..0000000000
--- a/keyboards/kinesis/alvicstep/docs/kicad/kinesis-cache.lib
+++ /dev/null
@@ -1,232 +0,0 @@
-EESchema-LIBRARY Version 2.3 Date: Wednesday, November 12, 2014 'pmt' 10:15:19 pm
-#encoding utf-8
-#
-# AT90S4414-P
-#
-DEF AT90S4414-P IC 0 40 Y Y 1 F N
-F0 "IC" -850 1880 40 H V L BNN
-F1 "AT90S4414-P" 450 -1950 40 H V L BNN
-F2 "DIL40" 0 0 30 H V C CIN
-F3 "~" 0 0 60 H V C CNN
-ALIAS AT90S8515-P
-$FPLIST
- 40DIP-ELL600
- 40dip600
-$ENDFPLIST
-DRAW
-S -850 1850 850 -1850 0 1 10 f
-X (T0)PB0 1 1000 700 150 L 40 40 1 1 B
-X (T1)PB1 2 1000 600 150 L 40 40 1 1 B
-X (AIN0)PB2 3 1000 500 150 L 40 40 1 1 B
-X (AIN1)PB3 4 1000 400 150 L 40 40 1 1 B
-X (~SS~)PB4 5 1000 300 150 L 40 40 1 1 B
-X (MOSI)PB5 6 1000 200 150 L 40 40 1 1 B
-X (MISO)PB6 7 1000 100 150 L 40 40 1 1 B
-X (SCK)PB7 8 1000 0 150 L 40 40 1 1 B
-X ~RESET 9 -1000 1700 150 R 40 40 1 1 I
-X (RXD)PD0 10 1000 -1000 150 L 40 40 1 1 B
-X GND 20 0 -2000 150 U 40 40 1 1 W
-X ALE 30 1000 850 150 L 40 40 1 1 O
-X VCC 40 0 2000 150 D 40 40 1 1 W
-X (TXD)PD1 11 1000 -1100 150 L 40 40 1 1 B
-X (A8)PC0 21 1000 -150 150 L 40 40 1 1 B
-X ICP 31 -1000 -1400 150 R 40 40 1 1 I
-X (INT0)PD2 12 1000 -1200 150 L 40 40 1 1 B
-X (A9)PC1 22 1000 -250 150 L 40 40 1 1 B
-X (AD7)PA7 32 1000 1000 150 L 40 40 1 1 B
-X (INT1)PD3 13 1000 -1300 150 L 40 40 1 1 B
-X (A10)PC2 23 1000 -350 150 L 40 40 1 1 B
-X (AD6)PA6 33 1000 1100 150 L 40 40 1 1 B
-X PD4 14 1000 -1400 150 L 40 40 1 1 B
-X (A11)PC3 24 1000 -450 150 L 40 40 1 1 B
-X (AD5)PA5 34 1000 1200 150 L 40 40 1 1 B
-X (OC1A)PD5 15 1000 -1500 150 L 40 40 1 1 B
-X (A12)PC4 25 1000 -550 150 L 40 40 1 1 B
-X (AD4)PA4 35 1000 1300 150 L 40 40 1 1 B
-X (~WR~)PD6 16 1000 -1600 150 L 40 40 1 1 B
-X (A13)PC5 26 1000 -650 150 L 40 40 1 1 B
-X (AD3)PA3 36 1000 1400 150 L 40 40 1 1 B
-X (~RD~)PD7 17 1000 -1700 150 L 40 40 1 1 B
-X (A14)PC6 27 1000 -750 150 L 40 40 1 1 B
-X (AD2)PA2 37 1000 1500 150 L 40 40 1 1 B
-X XTAL2 18 -1000 1200 150 R 40 40 1 1 B
-X (A15)PC7 28 1000 -850 150 L 40 40 1 1 B
-X (AD1)PA1 38 1000 1600 150 L 40 40 1 1 B
-X XTAL1 19 -1000 800 150 R 40 40 1 1 B
-X OC1B 29 -1000 -1500 150 R 40 40 1 1 W
-X (AD0)PA0 39 1000 1700 150 L 40 40 1 1 B
-ENDDRAW
-ENDDEF
-#
-# ATMEGA16U4-A
-#
-DEF ATMEGA16U4-A U 0 40 Y Y 1 F N
-F0 "U" -950 1700 40 H V C CNN
-F1 "ATMEGA16U4-A" 700 -1500 40 H V C CNN
-F2 "TQFP44" 0 0 35 H V C CIN
-F3 "~" 1100 1100 60 H V C CNN
-ALIAS ATMEGA16U4RC-A ATMEGA32U4-A ATMEGA32U4RC-A
-$FPLIST
- TQFP44
-$ENDFPLIST
-DRAW
-S -1000 1650 950 -1450 0 1 10 f
-X (INT6/AIN0)PE6 1 1100 -650 150 L 40 40 1 1 B
-X UVCC 2 -450 1800 150 D 40 40 1 1 W
-X D- 3 -1150 100 150 R 40 40 1 1 B
-X D+ 4 -1150 200 150 R 40 40 1 1 B
-X UGND 5 -400 -1600 150 U 40 40 1 1 P
-X UCAP 6 -1150 -50 150 R 40 40 1 1 P
-X VBUS 7 -1150 350 150 R 40 40 1 1 P
-X (SS/PCINT0)PB0 8 1100 1550 150 L 40 40 1 1 B
-X (SCLK/PCINT1)PB1 9 1100 1450 150 L 40 40 1 1 B
-X (PDI/MOSI/PCINT2)PB2 10 1100 1350 150 L 40 40 1 1 B
-X (RXD/INT2)PD2 20 1100 150 150 L 40 40 1 1 B
-X (ADC13/OC1B/OC4B/PCINT13)PB6 30 1100 950 150 L 40 40 1 1 B
-X (ADC1)PF1 40 1100 -950 150 L 40 40 1 1 B
-X (PDO/MISO/PCINT3)PB3 11 1100 1250 150 L 40 40 1 1 B
-X (TXD/INT3)PD3 21 1100 50 150 L 40 40 1 1 B
-X (OC3A/~OC4A~)PC6 31 1100 650 150 L 40 40 1 1 B
-X (ADC0)PF0 41 1100 -850 150 L 40 40 1 1 B
-X (OC0A/OC1C/~RTS~/PCINT7)PB7 12 1100 850 150 L 40 40 1 1 B
-X (XCK1/~CTS~)PD5 22 1100 -150 150 L 40 40 1 1 B
-X (ICP3/CLK0/OC4A)PC7 32 1100 550 150 L 40 40 1 1 B
-X AREF 42 -1150 -850 150 R 40 40 1 1 P
-X ~RESET~ 13 -1150 1550 150 R 40 40 1 1 I
-X GND 23 -50 -1600 150 U 40 40 1 1 W
-X (~HWB~)PE2 33 1100 -550 150 L 40 40 1 1 B
-X GND 43 150 -1600 150 U 40 40 1 1 W
-X VCC 14 -200 1800 150 D 40 40 1 1 W
-X AVCC 24 150 1800 150 D 40 40 1 1 W
-X VCC 34 -100 1800 150 D 40 40 1 1 W
-X AVCC 44 250 1800 150 D 40 40 1 1 W
-X GND 15 -150 -1600 150 U 40 40 1 1 W
-X (ICP2/ADC8)PD4 25 1100 -50 150 L 40 40 1 1 B
-X GND 35 50 -1600 150 U 40 40 1 1 W
-X XTAL2 16 -1150 950 150 R 40 40 1 1 O
-X (T1/~OC4D~/ADC9)PD6 26 1100 -250 150 L 40 40 1 1 B
-X (ADC7/TDI)PF7 36 1100 -1350 150 L 40 40 1 1 B
-X XTAL1 17 -1150 1150 150 R 40 40 1 1 I
-X (T0/OC4D/ADC10)PD7 27 1100 -350 150 L 40 40 1 1 B
-X (ADC6/TDO)PF6 37 1100 -1250 150 L 40 40 1 1 B
-X (OC0B/SCL/INT0)PD0 18 1100 350 150 L 40 40 1 1 B
-X (ADC11/PCINT4)PB4 28 1100 1150 150 L 40 40 1 1 B
-X (ADC5/TMS)PF5 38 1100 -1150 150 L 40 40 1 1 B
-X (SDA/INT1)PD1 19 1100 250 150 L 40 40 1 1 B
-X (ADC12/OC1A/~OC4B~/PCINT12)PB5 29 1100 1050 150 L 40 40 1 1 B
-X (ADC4/TCK)PF4 39 1100 -1050 150 L 40 40 1 1 B
-ENDDRAW
-ENDDEF
-#
-# C
-#
-DEF C C 0 10 N Y 1 F N
-F0 "C" 0 100 40 H V L CNN
-F1 "C" 6 -85 40 H V L CNN
-F2 "~" 38 -150 30 H V C CNN
-F3 "~" 0 0 60 H V C CNN
-$FPLIST
- SM*
- C?
- C1-1
-$ENDFPLIST
-DRAW
-P 2 0 1 20 -80 -30 80 -30 N
-P 2 0 1 20 -80 30 80 30 N
-X ~ 1 0 200 170 D 40 40 1 1 P
-X ~ 2 0 -200 170 U 40 40 1 1 P
-ENDDRAW
-ENDDEF
-#
-# CONN_7
-#
-DEF CONN_7 P 0 40 Y N 1 F N
-F0 "P" -30 0 60 V V C CNN
-F1 "CONN_7" 70 0 60 V V C CNN
-F2 "~" 0 0 60 H V C CNN
-F3 "~" 0 0 60 H V C CNN
-DRAW
-S -100 350 150 -350 0 1 0 N
-X P1 1 -350 300 250 R 50 50 1 1 P I
-X P2 2 -350 200 250 R 50 50 1 1 P I
-X P3 3 -350 100 250 R 50 50 1 1 P I
-X P4 4 -350 0 250 R 50 50 1 1 P I
-X P5 5 -350 -100 250 R 50 50 1 1 P I
-X P6 6 -350 -200 250 R 50 50 1 1 P I
-X P7 7 -350 -300 250 R 50 50 1 1 P I
-ENDDRAW
-ENDDEF
-#
-# GND
-#
-DEF ~GND #PWR 0 0 Y Y 1 F P
-F0 "#PWR" 0 0 30 H I C CNN
-F1 "GND" 0 -70 30 H I C CNN
-F2 "~" 0 0 60 H V C CNN
-F3 "~" 0 0 60 H V C CNN
-DRAW
-P 4 0 1 0 -50 0 0 -50 50 0 -50 0 N
-X GND 1 0 0 0 U 30 30 1 1 W N
-ENDDRAW
-ENDDEF
-#
-# R
-#
-DEF R R 0 0 N Y 1 F N
-F0 "R" 80 0 40 V V C CNN
-F1 "R" 7 1 40 V V C CNN
-F2 "~" -70 0 30 V V C CNN
-F3 "~" 0 0 30 H V C CNN
-$FPLIST
- R?
- SM0603
- SM0805
- R?-*
- SM1206
-$ENDFPLIST
-DRAW
-S -40 150 40 -150 0 1 12 N
-X ~ 1 0 250 100 D 60 60 1 1 P
-X ~ 2 0 -250 100 U 60 60 1 1 P
-ENDDRAW
-ENDDEF
-#
-# USB-MINI-B
-#
-DEF USB-MINI-B CON 0 40 Y Y 1 F N
-F0 "CON" -250 450 60 H V C CNN
-F1 "USB-MINI-B" -50 -500 60 H V C CNN
-F2 "~" 0 0 60 H V C CNN
-F3 "~" 0 0 60 H V C CNN
-$FPLIST
- USB-Mini-B-Jack
-$ENDFPLIST
-DRAW
-S -350 400 350 -400 0 1 0 N
-X VBUS 1 -550 300 200 R 50 50 1 1 W
-X D- 2 -550 150 200 R 50 50 1 1 B
-X D+ 3 -550 0 200 R 50 50 1 1 B
-X ID 4 -550 -150 200 R 50 50 1 1 B
-X GND 5 -550 -300 200 R 50 50 1 1 W
-X SHELL1 6 550 300 200 L 50 50 1 1 B
-X SHELL2 7 550 150 200 L 50 50 1 1 B
-X SHELL3 8 550 -150 200 L 50 50 1 1 B
-X SHELL4 9 550 -300 200 L 50 50 1 1 B
-ENDDRAW
-ENDDEF
-#
-# VCC
-#
-DEF VCC #PWR 0 0 Y Y 1 F P
-F0 "#PWR" 0 100 30 H I C CNN
-F1 "VCC" 0 100 30 H V C CNN
-F2 "~" 0 0 60 H V C CNN
-F3 "~" 0 0 60 H V C CNN
-DRAW
-X VCC 1 0 0 0 U 20 20 0 0 W N
-C 0 50 20 0 1 0 N
-P 3 0 1 0 0 0 0 30 0 30 N
-ENDDRAW
-ENDDEF
-#
-#End Library
diff --git a/keyboards/kinesis/alvicstep/docs/kicad/kinesis.pro b/keyboards/kinesis/alvicstep/docs/kicad/kinesis.pro
deleted file mode 100644
index 9f130b5092..0000000000
--- a/keyboards/kinesis/alvicstep/docs/kicad/kinesis.pro
+++ /dev/null
@@ -1,83 +0,0 @@
-update=Wednesday, November 05, 2014 'pmt' 12:08:47 pm
-version=1
-last_client=pcbnew
-[cvpcb]
-version=1
-NetIExt=net
-[cvpcb/libraries]
-EquName1=devcms
-[general]
-version=1
-[eeschema]
-version=1
-PageLayoutDescrFile=
-SubpartIdSeparator=0
-SubpartFirstId=65
-LibDir=../../../lib/kicad/library
-NetFmtName=
-RptD_X=0
-RptD_Y=100
-RptLab=1
-LabSize=60
-[eeschema/libraries]
-LibName1=power
-LibName2=device
-LibName3=transistors
-LibName4=conn
-LibName5=linear
-LibName6=regul
-LibName7=74xx
-LibName8=cmos4000
-LibName9=adc-dac
-LibName10=memory
-LibName11=xilinx
-LibName12=special
-LibName13=microcontrollers
-LibName14=dsp
-LibName15=microchip
-LibName16=analog_switches
-LibName17=motorola
-LibName18=texas
-LibName19=intel
-LibName20=audio
-LibName21=interface
-LibName22=digital-audio
-LibName23=philips
-LibName24=display
-LibName25=cypress
-LibName26=siliconi
-LibName27=opto
-LibName28=atmel
-LibName29=contrib
-LibName30=valves
-LibName31=custom
-[pcbnew]
-version=1
-LastNetListRead=
-UseCmpFile=1
-PadDrill=1.016000000000
-PadDrillOvalY=1.016000000000
-PadSizeH=1.524000000000
-PadSizeV=1.524000000000
-PcbTextSizeV=1.500000000000
-PcbTextSizeH=1.500000000000
-PcbTextThickness=0.300000000000
-ModuleTextSizeV=1.000000000000
-ModuleTextSizeH=1.000000000000
-ModuleTextSizeThickness=0.150000000000
-SolderMaskClearance=0.000000000000
-SolderMaskMinWidth=0.000000000000
-DrawSegmentWidth=0.200000000000
-BoardOutlineThickness=0.100000000000
-ModuleOutlineThickness=0.150000000000
-[pcbnew/libraries]
-LibDir=../../../lib/kicad/modules
-LibName1=custom
-LibName2=Sockets
-LibName3=Connect
-LibName4=Discret
-LibName5=Divers
-LibName6=Display
-LibName7=LEDs
-LibName8=SMD_Packages
-LibName9=Sockets_DIP
diff --git a/keyboards/kinesis/alvicstep/docs/kicad/kinesis.sch b/keyboards/kinesis/alvicstep/docs/kicad/kinesis.sch
deleted file mode 100644
index f75335aa08..0000000000
--- a/keyboards/kinesis/alvicstep/docs/kicad/kinesis.sch
+++ /dev/null
@@ -1,634 +0,0 @@
-EESchema Schematic File Version 2
-LIBS:power
-LIBS:device
-LIBS:transistors
-LIBS:conn
-LIBS:linear
-LIBS:regul
-LIBS:74xx
-LIBS:cmos4000
-LIBS:adc-dac
-LIBS:memory
-LIBS:xilinx
-LIBS:special
-LIBS:microcontrollers
-LIBS:dsp
-LIBS:microchip
-LIBS:analog_switches
-LIBS:motorola
-LIBS:texas
-LIBS:intel
-LIBS:audio
-LIBS:interface
-LIBS:digital-audio
-LIBS:philips
-LIBS:display
-LIBS:cypress
-LIBS:siliconi
-LIBS:opto
-LIBS:atmel
-LIBS:contrib
-LIBS:valves
-LIBS:custom
-LIBS:kinesis-cache
-EELAYER 27 0
-EELAYER END
-$Descr A4 11693 8268
-encoding utf-8
-Sheet 1 1
-Title ""
-Date "13 nov 2014"
-Rev ""
-Comp ""
-Comment1 ""
-Comment2 ""
-Comment3 ""
-Comment4 ""
-$EndDescr
-$Comp
-L C C4
-U 1 1 545804FB
-P 2850 4250
-F 0 "C4" H 2850 4350 40 0000 L CNN
-F 1 "1uF" H 2856 4165 40 0000 L CNN
-F 2 "~" H 2888 4100 30 0000 C CNN
-F 3 "~" H 2850 4250 60 0000 C CNN
- 1 2850 4250
- -1 0 0 1
-$EndComp
-$Comp
-L R R3
-U 1 1 545805E8
-P 2500 4000
-F 0 "R3" V 2580 4000 40 0000 C CNN
-F 1 "22" V 2507 4001 40 0000 C CNN
-F 2 "~" V 2430 4000 30 0000 C CNN
-F 3 "~" H 2500 4000 30 0000 C CNN
- 1 2500 4000
- 0 -1 -1 0
-$EndComp
-$Comp
-L R R2
-U 1 1 545805FA
-P 2500 3800
-F 0 "R2" V 2580 3800 40 0000 C CNN
-F 1 "22" V 2507 3801 40 0000 C CNN
-F 2 "~" V 2430 3800 30 0000 C CNN
-F 3 "~" H 2500 3800 30 0000 C CNN
- 1 2500 3800
- 0 -1 -1 0
-$EndComp
-Entry Wire Line
- 6450 2450 6550 2550
-Entry Wire Line
- 6450 2550 6550 2650
-Entry Wire Line
- 6450 2650 6550 2750
-Entry Wire Line
- 6450 2750 6550 2850
-Entry Wire Line
- 6450 2950 6550 3050
-Entry Wire Line
- 6450 3050 6550 3150
-Entry Wire Line
- 6450 2850 6550 2950
-Entry Wire Line
- 6450 3150 6550 3250
-Wire Wire Line
- 10250 1800 10750 1800
-Entry Wire Line
- 10750 1800 10850 1900
-Entry Wire Line
- 10750 1900 10850 2000
-Entry Wire Line
- 10750 2000 10850 2100
-Entry Wire Line
- 10750 2800 10850 2900
-Entry Wire Line
- 10750 2900 10850 3000
-Entry Wire Line
- 10750 3000 10850 3100
-Entry Wire Line
- 10750 3100 10850 3200
-Entry Wire Line
- 10750 3200 10850 3300
-Entry Wire Line
- 10750 3300 10850 3400
-$Comp
-L AT90S8515-P IC2
-U 1 1 545A62EA
-P 9250 3500
-F 0 "IC2" H 8400 5380 40 0000 L BNN
-F 1 "AT90S8515-P" H 9700 1550 40 0000 L BNN
-F 2 "DIL40" H 9250 3500 30 0000 C CIN
-F 3 "" H 9250 3500 60 0000 C CNN
- 1 9250 3500
- 1 0 0 -1
-$EndComp
-NoConn ~ 10250 2650
-Entry Wire Line
- 10750 3650 10850 3750
-Entry Wire Line
- 10750 3750 10850 3850
-Entry Wire Line
- 10750 3850 10850 3950
-Entry Wire Line
- 10750 3950 10850 4050
-Entry Wire Line
- 10750 4050 10850 4150
-Entry Wire Line
- 10750 4150 10850 4250
-Entry Wire Line
- 10750 4350 10850 4450
-Entry Wire Line
- 10750 4250 10850 4350
-NoConn ~ 8250 4900
-NoConn ~ 8250 5000
-NoConn ~ 8250 1800
-Wire Wire Line
- 10250 1900 10750 1900
-Wire Wire Line
- 10250 2000 10750 2000
-Wire Wire Line
- 10250 2100 10750 2100
-Wire Wire Line
- 10250 2200 10750 2200
-Wire Wire Line
- 10250 2300 10750 2300
-Wire Wire Line
- 10250 2400 10750 2400
-Wire Wire Line
- 10250 2500 10750 2500
-Text Label 10350 1800 0 60 ~ 0
-A
-Text Label 10350 1900 0 60 ~ 0
-B
-Text Label 10350 2000 0 60 ~ 0
-C
-Text Label 10350 2100 0 60 ~ 0
-G
-Wire Wire Line
- 10250 2800 10750 2800
-Wire Wire Line
- 10250 2900 10750 2900
-Wire Wire Line
- 10250 3000 10750 3000
-Wire Wire Line
- 10250 3100 10750 3100
-Wire Wire Line
- 10250 3200 10750 3200
-Wire Wire Line
- 10250 3300 10750 3300
-Wire Wire Line
- 10250 3400 10750 3400
-Wire Wire Line
- 10250 3500 10750 3500
-Text Label 10350 2800 0 60 ~ 0
-DL2
-Text Label 10350 2900 0 60 ~ 0
-DR1
-Text Label 10350 3000 0 60 ~ 0
-DR2
-Text Label 10350 3100 0 60 ~ 0
-DL1
-Text Label 10350 3400 0 60 ~ 0
-SCL
-Text Label 10350 3500 0 60 ~ 0
-SDA
-Wire Wire Line
- 10250 3650 10750 3650
-Wire Wire Line
- 10250 3750 10750 3750
-Wire Wire Line
- 10250 3850 10750 3850
-Wire Wire Line
- 10250 3950 10750 3950
-Wire Wire Line
- 10250 4050 10750 4050
-Wire Wire Line
- 10250 4150 10750 4150
-Wire Wire Line
- 10250 4250 10750 4250
-Wire Wire Line
- 10250 4350 10750 4350
-Text Label 10350 3650 0 60 ~ 0
-R1
-Text Label 10350 3750 0 60 ~ 0
-R2
-Text Label 10350 3850 0 60 ~ 0
-R3
-Text Label 10350 3950 0 60 ~ 0
-R4
-Text Label 10350 4050 0 60 ~ 0
-R5
-Text Label 10350 4150 0 60 ~ 0
-R6
-Text Label 10350 4250 0 60 ~ 0
-R7
-Text Label 10350 4350 0 60 ~ 0
-R8
-Wire Wire Line
- 10250 4500 10750 4500
-Wire Wire Line
- 10250 4600 10750 4600
-Wire Wire Line
- 10250 4700 10750 4700
-Wire Wire Line
- 10250 4800 10750 4800
-Wire Wire Line
- 10250 4900 10750 4900
-Wire Wire Line
- 10250 5000 10750 5000
-Wire Wire Line
- 10250 5100 10750 5100
-Wire Wire Line
- 10250 5200 10750 5200
-Text Label 10350 4600 0 60 ~ 0
-FS1
-Text Label 10350 5000 0 60 ~ 0
-FS3
-Text Label 10350 5200 0 60 ~ 0
-FS2
-$Comp
-L GND #PWR01
-U 1 1 545A7377
-P 9250 5600
-F 0 "#PWR01" H 9250 5600 30 0001 C CNN
-F 1 "GND" H 9250 5530 30 0001 C CNN
-F 2 "" H 9250 5600 60 0000 C CNN
-F 3 "" H 9250 5600 60 0000 C CNN
- 1 9250 5600
- 1 0 0 -1
-$EndComp
-Wire Wire Line
- 9250 5500 9250 5600
-Text Label 10350 4700 0 60 ~ 0
-CLOCK
-Text Label 10350 4800 0 60 ~ 0
-DATA
-NoConn ~ 10750 4700
-NoConn ~ 10750 4800
-Text Label 10350 3200 0 60 ~ 0
-KP
-Text Label 10350 3300 0 60 ~ 0
-PGM
-Text Label 10350 2500 0 60 ~ 0
-BUZZ
-NoConn ~ 8250 2300
-NoConn ~ 8250 2700
-$Comp
-L GND #PWR02
-U 1 1 545A7565
-P 4750 5700
-F 0 "#PWR02" H 4750 5700 30 0001 C CNN
-F 1 "GND" H 4750 5630 30 0001 C CNN
-F 2 "" H 4750 5700 60 0000 C CNN
-F 3 "" H 4750 5700 60 0000 C CNN
- 1 4750 5700
- 1 0 0 -1
-$EndComp
-Entry Wire Line
- 6450 3650 6550 3750
-Entry Wire Line
- 6450 3750 6550 3850
-Entry Wire Line
- 6450 4150 6550 4250
-Entry Wire Line
- 6450 4250 6550 4350
-Entry Wire Line
- 6450 4050 6550 4150
-Entry Wire Line
- 6450 4350 6550 4450
-NoConn ~ 3750 2850
-Wire Wire Line
- 1200 2000 6450 2000
-NoConn ~ 3750 3050
-Wire Wire Line
- 2750 3800 3750 3800
-Wire Wire Line
- 2750 3900 3750 3900
-Wire Wire Line
- 2750 3900 2750 4000
-Wire Bus Line
- 6550 2100 6550 6050
-Wire Bus Line
- 10850 1600 10850 6050
-Text Label 6050 4350 0 60 ~ 0
-DL1
-Text Label 6050 4250 0 60 ~ 0
-DR2
-Text Label 6050 4150 0 60 ~ 0
-DR1
-Text Label 6050 4050 0 60 ~ 0
-DL2
-Text Label 6050 2450 0 60 ~ 0
-R1
-Text Label 6050 2550 0 60 ~ 0
-R2
-Text Label 6050 2650 0 60 ~ 0
-R3
-Text Label 6050 2750 0 60 ~ 0
-R4
-Text Label 6050 2850 0 60 ~ 0
-R5
-Text Label 6050 2950 0 60 ~ 0
-R6
-Text Label 6050 3050 0 60 ~ 0
-R7
-Text Label 6050 3150 0 60 ~ 0
-R8
-Text Label 6050 5050 0 60 ~ 0
-A
-Text Label 6050 5150 0 60 ~ 0
-B
-Text Label 6050 5250 0 60 ~ 0
-C
-Text Label 6050 5350 0 60 ~ 0
-G
-Text Label 1300 3800 0 60 ~ 0
-D+
-Text Label 1300 4000 0 60 ~ 0
-D-
-NoConn ~ 10750 2200
-NoConn ~ 10750 2300
-NoConn ~ 10750 2400
-Text Label 10350 4500 0 60 ~ 0
-GND
-NoConn ~ 10750 4900
-NoConn ~ 10750 5100
-Text Label 6050 3450 0 60 ~ 0
-KP
-Text Label 6050 3350 0 60 ~ 0
-PGM
-$Comp
-L ATMEGA32U4-A U1
-U 1 1 5462E0B1
-P 4900 4000
-F 0 "U1" H 3950 5700 40 0000 C CNN
-F 1 "ATMEGA32U4-A" H 5600 2500 40 0000 C CNN
-F 2 "TQFP44" H 4900 4000 35 0000 C CIN
-F 3 "" H 6000 5100 60 0000 C CNN
- 1 4900 4000
- 1 0 0 -1
-$EndComp
-Wire Wire Line
- 3750 4850 3750 5600
-Wire Wire Line
- 4450 2200 5150 2200
-Connection ~ 4700 2200
-Connection ~ 4800 2200
-Connection ~ 5050 2200
-Connection ~ 4800 2000
-Wire Wire Line
- 6000 2450 6450 2450
-Wire Wire Line
- 6000 2550 6450 2550
-Wire Wire Line
- 6000 2650 6450 2650
-Wire Wire Line
- 6000 2750 6450 2750
-Wire Wire Line
- 6000 2850 6450 2850
-Wire Wire Line
- 6000 2950 6450 2950
-Wire Wire Line
- 6000 3050 6450 3050
-Wire Wire Line
- 6000 3150 6450 3150
-Wire Wire Line
- 6000 5050 6450 5050
-Wire Wire Line
- 6000 5150 6450 5150
-Wire Wire Line
- 6000 5250 6450 5250
-Wire Wire Line
- 6000 4050 6450 4050
-Wire Wire Line
- 6000 4150 6450 4150
-Wire Wire Line
- 6000 4250 6450 4250
-Wire Wire Line
- 6000 4350 6450 4350
-Wire Wire Line
- 6000 4550 6450 4550
-Entry Wire Line
- 6450 3350 6550 3450
-Entry Wire Line
- 6450 3450 6550 3550
-Entry Wire Line
- 6450 5050 6550 5150
-Entry Wire Line
- 6450 5150 6550 5250
-Entry Wire Line
- 6450 5250 6550 5350
-Entry Wire Line
- 6450 5350 6550 5450
-Entry Wire Line
- 6450 4650 6550 4750
-Wire Wire Line
- 6000 3350 6450 3350
-Wire Wire Line
- 6000 3450 6450 3450
-Wire Wire Line
- 1200 5600 6450 5600
-Connection ~ 4950 5600
-Connection ~ 4850 5600
-Wire Wire Line
- 4750 5600 4750 5700
-Connection ~ 4750 5600
-Connection ~ 4500 5600
-Text Label 6050 4550 0 60 ~ 0
-HWB
-Wire Wire Line
- 6000 5350 6450 5350
-Wire Wire Line
- 6000 3650 6450 3650
-Wire Wire Line
- 6000 3750 6450 3750
-Text Label 6050 3650 0 60 ~ 0
-SCL
-Text Label 6050 3750 0 60 ~ 0
-SDA
-Wire Wire Line
- 6000 3850 6450 3850
-Wire Wire Line
- 6000 3950 6450 3950
-Wire Wire Line
- 6000 4650 6450 4650
-Text Label 6050 4650 0 60 ~ 0
-BUZZ
-NoConn ~ 10750 4600
-NoConn ~ 10750 5000
-NoConn ~ 10750 5200
-Entry Wire Line
- 10750 3400 10850 3500
-Entry Wire Line
- 10750 3500 10850 3600
-Entry Wire Line
- 10750 4500 10850 4600
-Wire Wire Line
- 2850 4050 3750 4050
-Text Label 2950 4050 0 60 ~ 0
-UCAP
-Wire Wire Line
- 6000 4850 6450 4850
-Wire Wire Line
- 6000 4950 6450 4950
-NoConn ~ 6450 4850
-NoConn ~ 6450 4950
-NoConn ~ 6450 4550
-$Comp
-L USB-MINI-B CON1
-U 1 1 546431C1
-P 2100 5050
-F 0 "CON1" H 1850 5500 60 0000 C CNN
-F 1 "USB-MINI-B" H 2050 4550 60 0000 C CNN
-F 2 "" H 2100 5050 60 0000 C CNN
-F 3 "" H 2100 5050 60 0000 C CNN
- 1 2100 5050
- 0 1 1 0
-$EndComp
-$Comp
-L VCC #PWR03
-U 1 1 54643698
-P 2400 4400
-F 0 "#PWR03" H 2400 4500 30 0001 C CNN
-F 1 "VCC" H 2400 4500 30 0000 C CNN
-F 2 "" H 2400 4400 60 0000 C CNN
-F 3 "" H 2400 4400 60 0000 C CNN
- 1 2400 4400
- 1 0 0 -1
-$EndComp
-Text Notes 2600 2750 0 60 ~ 0
-Teensy 2.0\n(not fully drawn)
-$Comp
-L CONN_7 B7K-PH-K-S1
-U 1 1 54643939
-P 1950 6900
-F 0 "B7K-PH-K-S1" V 1920 6900 60 0000 C CNN
-F 1 "CONN_7" V 2020 6900 60 0000 C CNN
-F 2 "" H 1950 6900 60 0000 C CNN
-F 3 "" H 1950 6900 60 0000 C CNN
- 1 1950 6900
- 1 0 0 -1
-$EndComp
-Connection ~ 3750 5600
-Connection ~ 2400 5600
-Connection ~ 2250 5600
-Connection ~ 1950 5600
-Wire Wire Line
- 2400 4400 2400 4500
-Wire Wire Line
- 2250 4000 2250 4500
-Wire Wire Line
- 1200 3800 2250 3800
-Wire Wire Line
- 2100 3800 2100 4500
-Wire Wire Line
- 2850 4450 2850 5600
-Connection ~ 2850 5600
-Entry Wire Line
- 1100 6800 1200 6900
-Entry Wire Line
- 1100 6900 1200 7000
-Entry Wire Line
- 1100 7000 1200 7100
-Entry Wire Line
- 1100 6700 1200 6800
-Wire Wire Line
- 1200 6600 1600 6600
-Wire Wire Line
- 1200 6700 1600 6700
-Wire Wire Line
- 1200 6800 1600 6800
-Wire Wire Line
- 1200 6900 1600 6900
-Wire Wire Line
- 1200 7000 1600 7000
-Wire Wire Line
- 1200 7100 1600 7100
-Wire Wire Line
- 1200 7200 1600 7200
-Text Label 1300 6600 0 60 ~ 0
-FS2
-Text Label 1300 6700 0 60 ~ 0
-FS1
-Text Label 1300 6800 0 60 ~ 0
-VCC
-Text Label 1300 6900 0 60 ~ 0
-D-
-Text Label 1300 7000 0 60 ~ 0
-D+
-Text Label 1300 7100 0 60 ~ 0
-GND
-Text Label 1300 7200 0 60 ~ 0
-FS3
-NoConn ~ 3750 2450
-Wire Wire Line
- 3600 2000 3600 3650
-Wire Wire Line
- 3600 3650 3750 3650
-NoConn ~ 1950 4500
-Wire Bus Line
- 1100 1900 1100 7100
-NoConn ~ 1200 6600
-NoConn ~ 1200 6700
-NoConn ~ 1200 7200
-Connection ~ 2100 3800
-Wire Wire Line
- 1200 4000 2250 4000
-Entry Wire Line
- 1100 3700 1200 3800
-Entry Wire Line
- 1100 3900 1200 4000
-Text Label 10350 1500 0 60 ~ 0
-VCC
-Entry Wire Line
- 1100 1900 1200 2000
-Text Label 1250 2000 0 60 ~ 0
-VCC
-Entry Wire Line
- 1100 5500 1200 5600
-Connection ~ 1800 5600
-Text Label 1300 5600 0 60 ~ 0
-GND
-Wire Wire Line
- 9250 5500 10750 5500
-Entry Wire Line
- 10750 5500 10850 5600
-Text Label 10350 5500 0 60 ~ 0
-GND
-Wire Wire Line
- 9250 1500 10750 1500
-Entry Wire Line
- 10750 1500 10850 1600
-Connection ~ 3600 2000
-Wire Wire Line
- 4800 2000 4800 2200
-Entry Wire Line
- 6450 2000 6550 2100
-Text Label 6050 2000 0 60 ~ 0
-VCC
-Connection ~ 5050 5600
-Entry Wire Line
- 6450 5600 6550 5700
-Text Label 6050 5600 0 60 ~ 0
-GND
-NoConn ~ 6450 3850
-NoConn ~ 6450 3950
-Wire Wire Line
- 1800 4500 1500 4500
-Wire Wire Line
- 1500 4500 1500 5600
-Connection ~ 1500 5600
-Entry Wire Line
- 10750 2500 10850 2600
-Entry Wire Line
- 10750 2100 10850 2200
-Text Notes 1000 5300 1 60 ~ 0
-Sacrificial USB cable from header to Teensy
-Text Notes 7850 5950 0 60 ~ 0
-Ribbon cable between Teensy pins and socket
-Wire Bus Line
- 10850 6050 6550 6050
-$EndSCHEMATC
diff --git a/keyboards/kinesis/alvicstep/docs/readme.txt b/keyboards/kinesis/alvicstep/docs/readme.txt
deleted file mode 100644
index b65ac77147..0000000000
--- a/keyboards/kinesis/alvicstep/docs/readme.txt
+++ /dev/null
@@ -1,59 +0,0 @@
-This directory of documentation was copied from https://github.com/wjanssens/tmk_keyboard/tree/master/keyboard/kinesis
-and is probably Copyright 2014 Warren Janssens <warren.janssens@gmail.com>
-and probably released under GPL v2, which may be recovered at <http://www.gnu.org/licenses/>.
-
-Row configuration
-PF0 A
-PF1 B
-PF2 C
-PF3 G 0 = U4, 1 = U5
-
-Column configuration
- 4y0 4y1 4y2 4y3 4y4 4y5 4y6 4y7 5y0 5y1 5y2 5y3 5y4 5y5 5y6 5y7
- r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16
-PB0 21 c1 f6 f8 f7 5 4 3 2 1 =+
-PB1 22 c2 f3 f5 f4 t r e w q TAB
-PB2 23 c3 ESC f2 f1 g f d s a CL
-PB3 24 c4 f9 f11 f10 b v c x z LS UP DN [{ ]}
-PB4 25 c5 f12 SL PS RT LT §± `~ 6 7 8 9 0 -_
-PB5 26 c6 PB PGM KPD y u i o p \
-PB6 27 c7 LC DL BS RC EN SP h j k l ;: '"
-PB7 28 c8 RA PU PD n m ,< .> /? RS
- */
-
-schematic:
-https://i.imgur.com/cCmWH4E.png
-
-photos:
-https://i.imgur.com/xiaE4tk.jpg
-https://i.imgur.com/PQ1y2vS.jpg
-https://i.imgur.com/OoQvgfA.jpg
-
-40 pin connector
-
- DL2 1 40 VCC
- DR1 2 39 A
- DR2 3 38 B
- DL1 4 37 C
- KPD 5 36 G
- PGM 6 35
- SCL 7 34
- SDA 8 33
- RST 9 32 BUZZ
- WP 10 31 EA
- FS1 11 30 ALE
- CLOCK 12 29 PSEN
- DATA 13 28 r8
- 14 27 r7
- FS3 15 26 r6
- 16 25 r5
- FS2 17 24 r4
- XTAL1 18 23 r3
- XTAL2 19 22 r2
- GND 20 21 r1
-
-
-references:
-https://github.com/chrisandreae/keyboard-firmware
-
-
diff --git a/keyboards/kinesis/alvicstep/matrix.c b/keyboards/kinesis/alvicstep/matrix.c
deleted file mode 100644
index be2bab039c..0000000000
--- a/keyboards/kinesis/alvicstep/matrix.c
+++ /dev/null
@@ -1,219 +0,0 @@
-/*
-Copyright 2014 Warren Janssens <warren.janssens@gmail.com>
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-/*
- * scan matrix
- */
-#include <stdint.h>
-#include <stdbool.h>
-#include <avr/io.h>
-#include <util/delay.h>
-#include "action_layer.h"
-#include "print.h"
-#include "debug.h"
-#include "util.h"
-#include "matrix.h"
-#include "led.h"
-#include "config.h"
-
-#ifndef DEBOUNCE
-# define DEBOUNCE 5
-#endif
-static uint8_t debouncing = DEBOUNCE;
-
-/* matrix state(1:on, 0:off) */
-static uint8_t matrix[MATRIX_ROWS];
-static uint8_t matrix_debouncing[MATRIX_ROWS];
-
-static matrix_row_t read_row(uint8_t row);
-static void unselect_rows(void);
-static void select_rows(uint8_t row);
-
-
-__attribute__ ((weak))
-void matrix_init_kb(void) {
- matrix_init_user();
-}
-
-__attribute__ ((weak))
-void matrix_scan_kb(void) {
- matrix_scan_user();
-}
-
-__attribute__ ((weak))
-void matrix_init_user(void) {
-}
-
-__attribute__ ((weak))
-void matrix_scan_user(void) {
-}
-
-inline
-uint8_t matrix_rows(void)
-{
- return MATRIX_ROWS;
-}
-
-
-inline
-uint8_t matrix_cols(void)
-{
- return MATRIX_COLS;
-}
-
-void matrix_init(void)
-{
- //debug_enable = true;
-
- //dprint("matrix_init"); dprintln();
- // output high (leds)
- DDRD = 0xFF;
- PORTD = 0xFF;
-
- // output low (multiplexers)
- DDRF = 0xFF;
- PORTF = 0x00;
-
- // input with pullup (matrix)
- DDRB = 0x00;
- PORTB = 0xFF;
-
- // input with pullup (program and keypad buttons)
- DDRC = 0x00;
- PORTC = 0xFF;
-
- // initialize row and col
- unselect_rows();
-
- // initialize matrix state: all keys off
- for (uint8_t i=0; i < MATRIX_ROWS; i++) {
- matrix[i] = 0;
- matrix_debouncing[i] = 0;
- }
-
-}
-
-uint8_t matrix_scan(void)
-{
-
- for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
- select_rows(i);
- uint8_t row = read_row(i);
- if (matrix_debouncing[i] != row) {
- matrix_debouncing[i] = row;
- if (debouncing) {
- debug("bounce!: "); debug_hex(debouncing); debug("\n");
- }
- debouncing = DEBOUNCE;
- }
- unselect_rows();
- }
-
- if (debouncing) {
- if (--debouncing) {
- _delay_ms(1);
- } else {
- for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
- matrix[i] = matrix_debouncing[i];
- }
- }
- }
- matrix_scan_quantum();
- return 1;
-}
-
-bool matrix_is_modified(void)
-{
- if (debouncing) return false;
- return true;
-}
-
-inline
-bool matrix_is_on(uint8_t row, uint8_t col)
-{
- return (matrix[row] & ((matrix_row_t)1<<col));
-}
-
-inline
-matrix_row_t matrix_get_row(uint8_t row)
-{
- return matrix[row];
-}
-
-void matrix_print(void)
-{
- print("\nr/c 01234567\n");
- for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
- phex(row); print(": ");
- pbin_reverse(matrix_get_row(row));
- print("\n");
- }
-}
-
-uint8_t matrix_key_count(void)
-{
- uint8_t count = 0;
- for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
- count += bitpop16(matrix[i]);
- }
- return count;
-}
-
-static matrix_row_t read_row(uint8_t row)
-{
- _delay_us(30); // without this wait read unstable value.
-
- //keypad and program buttons
- if (row == 12)
- {
- return ~(PINC | 0b00111111);
- }
- return ~PINB;
-}
-
-static void unselect_rows(void)
-{
- // set A,B,C,G to 0 (F4 - F7)
- PORTF &= 0x0F;
-}
-
-static void select_rows(uint8_t row)
-{
- // set A,B,C,G to row value
- PORTF |= row << 4;
-}
-
-
-/* Row pin configuration
-PF0 A
-PF1 B
-PF2 C
-PF3 G 0 = U4, 1 = U5
-
- 4y0 4y1 4y2 4y3 4y4 4y5 4y6 4y7 5y0 5y1 5y2 5y3 5y4 5y5 5y6 5y7
- r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16
-PB0 21 c1 f6 f8 f7 5 4 3 2 1 =+
-PB1 22 c2 f3 f5 f4 t r e w q TAB
-PB2 23 c3 ESC f2 f1 g f d s a CL
-PB3 24 c4 f9 f11 f10 b v c x z LS UP DN [{ ]}
-PB4 25 c5 f12 SL PS RT LT §± `~ 6 7 8 9 0 -_
-PB5 26 c6 PB PGM KPD y u i o p \
-PB6 27 c7 LC DL BS RC EN SP h j k l ;: '"
-PB7 28 c8 RA PU PD n m ,< .> /? RS
- */
-
-
diff --git a/keyboards/kinesis/alvicstep/readme.md b/keyboards/kinesis/alvicstep/readme.md
deleted file mode 100644
index 810a7aba16..0000000000
--- a/keyboards/kinesis/alvicstep/readme.md
+++ /dev/null
@@ -1,46 +0,0 @@
-kinesis-advantage keyboard firmware
-======================
-
-This directory is called alvicstep because https://github.com/alvicstep did the heavy work and took the photos in the doc directory.
-alvicstep did NOT do anything related to the QMK implementation, so don't bug him/her.
-
-There are other ways of replacing the CPU in the kinesis, this one uses jumper wires from the Teensy to the original DIP socket
-
-
-## Kinesis specific information
-This is a port of https://github.com/alvicstep/tmk_keyboard,
-which is a fork of https://github.com/wjanssens/tmk_keyboard,
-which is based on work from https://github.com/chrisandreae/keyboard-firmware
-
-If you replace the kinesis CPU as described in the doc folder, then this code should allow you to use QMK.
-I've tested with a Teensy 2++, remember to change the CPU if you use a 32u4 instead.
-
-Not yet implemented:
-- Kinesis EEProm reading or writing
-- Audio - this should be simple if we remove hardcoded pins from audio.h and switch to E7
-
-
-
-## Quantum MK Firmware
-
-For the full Quantum feature list, see [the parent readme.md](/docs/README.md).
-
-## Building
-
-Download or clone the whole firmware and navigate to the keyboards/kinesis-advantage folder. Once your dev env is setup, you'll be able to type `make` to generate your .hex - you can then use the Teensy Loader to program your .hex file.
-
-Depending on which keymap you would like to use, you will have to compile slightly differently.
-
-### Default
-
-To build with the default keymap, simply run `make`.
-
-### Other Keymaps
-
-Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. To define your own keymap create a folder with the name of your keymap in the keymaps folder, and see keymap documentation (you can find in top readme.md) and existant keymap files.
-
-To build the firmware binary hex file with a keymap just do `make` with `keymap` option like:
-
-$ make keymap=[default|jack|<name>]
-
-Keymaps follow the format **__keymap.c__** and are stored in folders in the `keymaps` folder, eg `keymaps/my_keymap/`
diff --git a/keyboards/kinesis/alvicstep/rules.mk b/keyboards/kinesis/alvicstep/rules.mk
deleted file mode 100644
index 76e69d0278..0000000000
--- a/keyboards/kinesis/alvicstep/rules.mk
+++ /dev/null
@@ -1,6 +0,0 @@
-# just silently stop, since we need to upload with teensy uploader
-# upload: build
-
-
-
-
diff --git a/keyboards/kinesis/config.h b/keyboards/kinesis/config.h
deleted file mode 100644
index 74e85f6f1b..0000000000
--- a/keyboards/kinesis/config.h
+++ /dev/null
@@ -1,140 +0,0 @@
-/*
-Copyright 2012 Jun Wako <wakojun@gmail.com>
-
-This program is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program. If not, see <http://www.gnu.org/licenses/>.
-*/
-
-#ifndef CONFIG_H
-#define CONFIG_H
-
-#include "config_common.h"
-
-/* USB Device descriptor parameter */
-#define VENDOR_ID 0xFEED
-#define MANUFACTURER You
-#define PRODUCT Kinesis Advantage/Contoured
-#define DESCRIPTION A custom keyboard
-
-// Mouse
-#define MOUSEKEY_DELAY 60
-#define MOUSEKEY_INTERVAL 20
-#define MOUSEKEY_MAX_SPEED 4
-#define MOUSEKEY_TIME_TO_MAX 10
-#define MOUSEKEY_WHEEL_MAX_SPEED 1
-#define MOUSEKEY_WHEEL_DELTA 1
-#define MOUSEKEY_WHEEL_TIME_TO_MAX 1
-
-/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
-#define DEBOUNCING_DELAY 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
-
-/*
- * Force NKRO
- *
- * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved
- * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the
- * makefile for this to work.)
- *
- * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N)
- * until the next keyboard reset.
- *
- * NKRO may prevent your keystrokes from being detected in the BIOS, but it is
- * fully operational during normal computer usage.
- *
- * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N)
- * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by
- * bootmagic, NKRO mode will always be enabled until it is toggled again during a
- * power-up.
- *
- */
-//#define FORCE_NKRO
-
-/*
- * Magic Key Options
- *
- * Magic keys are hotkey commands that allow control over firmware functions of
- * the keyboard. They are best used in combination with the HID Listen program,
- * found here: https://www.pjrc.com/teensy/hid_listen.html
- *
- * The options below allow the magic key functionality to be changed. This is
- * useful if your keyboard/keypad is missing keys and you want magic key support.
- *
- */
-
-/* control how magic key switches layers */
-//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
-//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
-//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
-
-/* override magic key keymap */
-//#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
-//#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
-//#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
-//#define MAGIC_KEY_HELP1 H
-//#define MAGIC_KEY_HELP2 SLASH
-//#define MAGIC_KEY_DEBUG D
-//#define MAGIC_KEY_DEBUG_MATRIX X
-//#define MAGIC_KEY_DEBUG_KBD K
-//#define MAGIC_KEY_DEBUG_MOUSE M
-//#define MAGIC_KEY_VERSION V
-//#define MAGIC_KEY_STATUS S
-//#define MAGIC_KEY_CONSOLE C
-//#define MAGIC_KEY_LAYER0_ALT1 ESC
-//#define MAGIC_KEY_LAYER0_ALT2 GRAVE
-//#define MAGIC_KEY_LAYER0 0
-//#define MAGIC_KEY_LAYER1 1
-//#define MAGIC_KEY_LAYER2 2
-//#define MAGIC_KEY_LAYER3 3
-//#define MAGIC_KEY_LAYER4 4
-//#define MAGIC_KEY_LAYER5 5
-//#define MAGIC_KEY_LAYER6 6
-//#define MAGIC_KEY_LAYER7 7
-//#define MAGIC_KEY_LAYER8 8
-//#define MAGIC_KEY_LAYER9 9
-//#define MAGIC_KEY_BOOTLOADER PAUSE
-//#define MAGIC_KEY_LOCK CAPS
-//#define MAGIC_KEY_EEPROM E
-//#define MAGIC_KEY_NKRO N
-//#define MAGIC_KEY_SLEEP_LED Z
-
-/*
- * Feature disable options
- * These options are also useful to firmware size reduction.
- */
-
-/* disable debug print */
-//#define NO_DEBUG
-
-/* disable print */
-//#define NO_PRINT
-
-/* disable action features */
-//#define NO_ACTION_LAYER
-//#define NO_ACTION_TAPPING
-//#define NO_ACTION_ONESHOT
-//#define NO_ACTION_MACRO
-//#define NO_ACTION_FUNCTION
-
-#ifdef SUBPROJECT_alvicstep
- #include "alvicstep/config.h"
-#endif
-#ifdef SUBPROJECT_stapelberg
- #include "stapelberg/config.h"
-#endif
-
-#endif
diff --git a/keyboards/kinesis/info.json b/keyboards/kinesis/info.json
deleted file mode 100644
index c90d3b6254..0000000000
--- a/keyboards/kinesis/info.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "keyboard_name": "Kinesis",
- "url": "",
- "maintainer": "qmk",
- "width": 15.5,
- "height": 9,
- "layouts": {
- "LAYOUT": {
- "key_count": 86,
- "layout": [{"label":"Esc", "x":0, "y":0, "w":0.69, "h":0.85}, {"label":"F1", "x":0.7, "y":0, "w":0.69, "h":0.85}, {"label":"F2", "x":1.39, "y":0, "w":0.69, "h":0.85}, {"label":"F3", "x":2.09, "y":0, "w":0.69, "h":0.85}, {"label":"F4", "x":2.78, "y":0, "w":0.69, "h":0.85}, {"label":"F5", "x":3.48, "y":0, "w":0.69, "h":0.85}, {"label":"F6", "x":4.17, "y":0, "w":0.69, "h":0.85}, {"label":"F7", "x":4.87, "y":0, "w":0.69, "h":0.85}, {"label":"F8", "x":5.56, "y":0, "w":0.69, "h":0.85}, {"label":"+", "x":0, "y":1.25, "w":1.25}, {"label":"!", "x":1.25, "y":1.25}, {"label":"@", "x":2.25, "y":1}, {"label":"#", "x":3.25, "y":1}, {"label":"$", "x":4.25, "y":1}, {"label":"%", "x":5.25, "y":1}, {"label":"Tab", "x":0, "y":2.25, "w":1.25}, {"label":"Q", "x":1.25, "y":2.25}, {"label":"W", "x":2.25, "y":2}, {"label":"E", "x":3.25, "y":2}, {"label":"R", "x":4.25, "y":2}, {"label":"T", "x":5.25, "y":2}, {"label":"Caps Lock", "x":0, "y":3.25, "w":1.25}, {"label":"A", "x":1.25, "y":3.25}, {"label":"S", "x":2.25, "y":3}, {"label":"D", "x":3.25, "y":3}, {"label":"F", "x":4.25, "y":3}, {"label":"G", "x":5.25, "y":3}, {"label":"Shift", "x":0, "y":4.25, "w":1.25}, {"label":"Z", "x":1.25, "y":4.25}, {"label":"X", "x":2.25, "y":4}, {"label":"C", "x":3.25, "y":4}, {"label":"V", "x":4.25, "y":4}, {"label":"B", "x":5.25, "y":4}, {"label":"~", "x":1.25, "y":5.25}, {"label":"|", "x":2.25, "y":5}, {"label":"←", "x":3.25, "y":5}, {"label":"→", "x":4.25, "y":5}, {"label":"Ctrl", "x":5.25, "y":6}, {"label":"Alt", "x":6.25, "y":6}, {"label":"Home", "x":6.25, "y":7}, {"label":"Back Space", "x":4.25, "y":7, "h":2}, {"label":"Delete", "x":5.25, "y":7, "h":2}, {"label":"End", "x":6.25, "y":8}, {"label":"F9", "x":9.25, "y":0, "w":0.69, "h":0.85}, {"label":"F10", "x":9.95, "y":0, "w":0.69, "h":0.85}, {"label":"F11", "x":10.64, "y":0, "w":0.69, "h":0.85}, {"label":"F12", "x":11.34, "y":0, "w":0.69, "h":0.85}, {"label":"Print Scrn", "x":12.03, "y":0, "w":0.69, "h":0.85}, {"label":"Scroll Lock", "x":12.73, "y":0, "w":0.69, "h":0.85}, {"label":"Pause", "x":13.42, "y":0, "w":0.69, "h":0.85}, {"label":"Keypad", "x":14.12, "y":0, "w":0.69, "h":0.85}, {"label":"Progrm", "x":14.81, "y":0, "w":0.69, "h":0.85}, {"label":"^", "x":9.25, "y":1}, {"label":"&amp;", "x":10.25, "y":1}, {"label":"*", "x":11.25, "y":1}, {"label":"(", "x":12.25, "y":1}, {"label":")", "x":13.25, "y":1.25}, {"label":"_", "x":14.25, "y":1.25, "w":1.25}, {"label":"Y", "x":9.25, "y":2}, {"label":"U", "x":10.25, "y":2}, {"label":"I", "x":11.25, "y":2}, {"label":"O", "x":12.25, "y":2}, {"label":"P", "x":13.25, "y":2.25}, {"label":"|", "x":14.25, "y":2.25, "w":1.25}, {"label":"H", "x":9.25, "y":3}, {"label":"J", "x":10.25, "y":3}, {"label":"K", "x":11.25, "y":3}, {"label":"L", "x":12.25, "y":3}, {"label":":", "x":13.25, "y":3.25}, {"label":"\"", "x":14.25, "y":3.25, "w":1.25}, {"label":"N", "x":9.25, "y":4}, {"label":"M", "x":10.25, "y":4}, {"label":"&lt;", "x":11.25, "y":4}, {"label":"&gt;", "x":12.25, "y":4}, {"label":"?", "x":13.25, "y":4.25}, {"label":"Shift", "x":14.25, "y":4.25, "w":1.25}, {"label":"↑", "x":10.25, "y":5}, {"label":"↓", "x":11.25, "y":5}, {"label":"{", "x":12.25, "y":5}, {"label":"}", "x":13.25, "y":5.25}, {"label":"GUI", "x":8.25, "y":6}, {"label":"Ctrl", "x":9.25, "y":6}, {"label":"Page Up", "x":8.25, "y":7}, {"label":"Page Down", "x":8.25, "y":8}, {"label":"Enter", "x":9.25, "y":7, "h":2}, {"label":"Space", "x":10.25, "y":7, "h":2}]
- },
-
- "LAYOUT_pretty": {
- "key_count": 86,
- "layout": [{"label":"Esc", "x":0, "y":0, "w":0.69, "h":0.85}, {"label":"F1", "x":0.7, "y":0, "w":0.69, "h":0.85}, {"label":"F2", "x":1.39, "y":0, "w":0.69, "h":0.85}, {"label":"F3", "x":2.09, "y":0, "w":0.69, "h":0.85}, {"label":"F4", "x":2.78, "y":0, "w":0.69, "h":0.85}, {"label":"F5", "x":3.48, "y":0, "w":0.69, "h":0.85}, {"label":"F6", "x":4.17, "y":0, "w":0.69, "h":0.85}, {"label":"F7", "x":4.87, "y":0, "w":0.69, "h":0.85}, {"label":"F8", "x":5.56, "y":0, "w":0.69, "h":0.85}, {"label":"F9", "x":9.25, "y":0, "w":0.69, "h":0.85}, {"label":"F10", "x":9.95, "y":0, "w":0.69, "h":0.85}, {"label":"F11", "x":10.64, "y":0, "w":0.69, "h":0.85}, {"label":"F12", "x":11.34, "y":0, "w":0.69, "h":0.85}, {"label":"Print Scrn", "x":12.03, "y":0, "w":0.69, "h":0.85}, {"label":"Scroll Lock", "x":12.73, "y":0, "w":0.69, "h":0.85}, {"label":"Pause", "x":13.42, "y":0, "w":0.69, "h":0.85}, {"label":"Keypad", "x":14.12, "y":0, "w":0.69, "h":0.85}, {"label":"Progrm", "x":14.81, "y":0, "w":0.69, "h":0.85}, {"label":"+", "x":0, "y":1.25, "w":1.25}, {"label":"!", "x":1.25, "y":1.25}, {"label":"@", "x":2.25, "y":1}, {"label":"#", "x":3.25, "y":1}, {"label":"$", "x":4.25, "y":1}, {"label":"%", "x":5.25, "y":1}, {"label":"^", "x":9.25, "y":1}, {"label":"&amp;", "x":10.25, "y":1}, {"label":"*", "x":11.25, "y":1}, {"label":"(", "x":12.25, "y":1}, {"label":")", "x":13.25, "y":1.25}, {"label":"_", "x":14.25, "y":1.25, "w":1.25}, {"label":"Tab", "x":0, "y":2.25, "w":1.25}, {"label":"Q", "x":1.25, "y":2.25}, {"label":"W", "x":2.25, "y":2}, {"label":"E", "x":3.25, "y":2}, {"label":"R", "x":4.25, "y":2}, {"label":"T", "x":5.25, "y":2}, {"label":"Y", "x":9.25, "y":2}, {"label":"U", "x":10.25, "y":2}, {"label":"I", "x":11.25, "y":2}, {"label":"O", "x":12.25, "y":2}, {"label":"P", "x":13.25, "y":2.25}, {"label":"|", "x":14.25, "y":2.25, "w":1.25}, {"label":"Caps Lock", "x":0, "y":3.25, "w":1.25}, {"label":"A", "x":1.25, "y":3.25}, {"label":"S", "x":2.25, "y":3}, {"label":"D", "x":3.25, "y":3}, {"label":"F", "x":4.25, "y":3}, {"label":"G", "x":5.25, "y":3}, {"label":"H", "x":9.25, "y":3}, {"label":"J", "x":10.25, "y":3}, {"label":"K", "x":11.25, "y":3}, {"label":"L", "x":12.25, "y":3}, {"label":":", "x":13.25, "y":3.25}, {"label":"\"", "x":14.25, "y":3.25, "w":1.25}, {"label":"Shift", "x":0, "y":4.25, "w":1.25}, {"label":"Z", "x":1.25, "y":4.25}, {"label":"X", "x":2.25, "y":4}, {"label":"C", "x":3.25, "y":4}, {"label":"V", "x":4.25, "y":4}, {"label":"B", "x":5.25, "y":4}, {"label":"N", "x":9.25, "y":4}, {"label":"M", "x":10.25, "y":4}, {"label":"&lt;", "x":11.25, "y":4}, {"label":"&gt;", "x":12.25, "y":4}, {"label":"?", "x":13.25, "y":4.25}, {"label":"Shift", "x":14.25, "y":4.25, "w":1.25}, {"label":"~", "x":1.25, "y":5.25}, {"label":"|", "x":2.25, "y":5}, {"label":"←", "x":3.25, "y":5}, {"label":"→", "x":4.25, "y":5}, {"label":"↑", "x":10.25, "y":5}, {"label":"↓", "x":11.25, "y":5}, {"label":"{", "x":12.25, "y":5}, {"label":"}", "x":13.25, "y":5.25}, {"label":"Ctrl", "x":5.25, "y":6}, {"label":"Alt", "x":6.25, "y":6}, {"label":"GUI", "x":8.25, "y":6}, {"label":"Ctrl", "x":9.25, "y":6}, {"label":"Home", "x":6.25, "y":7}, {"label":"Page Up", "x":8.25, "y":7}, {"label":"Back Space", "x":4.25, "y":7, "h":2}, {"label":"Delete", "x":5.25, "y":7, "h":2}, {"label":"End", "x":6.25, "y":8}, {"label":"Page Down", "x":8.25, "y":8}, {"label":"Enter", "x":9.25, "y":7, "h":2}, {"label":"Space", "x":10.25, "y":7, "h":2}]
- }
- }
-}
diff --git a/keyboards/kinesis/keymaps/carpalx/config.h b/keyboards/kinesis/keymaps/carpalx/config.h
deleted file mode 100644
index 8893d122e0..0000000000
--- a/keyboards/kinesis/keymaps/carpalx/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CONFIG_USER_H
-#define CONFIG_USER_H
-
-#include "../../config.h"
-
-// place overrides here
-
-#endif
diff --git a/keyboards/kinesis/keymaps/carpalx/keymap.c b/keyboards/kinesis/keymaps/carpalx/keymap.c
deleted file mode 100644
index 2e56946e76..0000000000
--- a/keyboards/kinesis/keymaps/carpalx/keymap.c
+++ /dev/null
@@ -1,192 +0,0 @@
-#include QMK_KEYBOARD_H
-
-extern keymap_config_t keymap_config;
-
-#define _CX 0 // Carpalx layer
-#define _QW 1 // Qwerty layer
-#define _KP 2 // Keypad + Media Layer
-
-// Macro name shortcuts
-#define DVORAK M(_DV)
-#define QWERTY M(_QW)
-#define COLEMAK M(_CM)
-
-/*
-
- Function Keys on All Layers (Keypad toggles):
- ,---------------------------------------------------------------.
- | L0 | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 |
- `---------------------------------------------------------------'
- ,---------------------------------------------------------------.
- | F9 | F10 | F11 | F12 | PSCR | L1 | L2 | L2 | RESET |
- `---------------------------------------------------------------'
-
- L0 Carpalx layer:
- ,-------------------------------------------.,-------------------------------------------.
- | Del | 1 | 3 | 5 | 7 | 9 || 0 | 8 | 6 | 4 | 2 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | G | M | L | W || B | Y | U | V | ; | = |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | ESC | D | S | T | N | R || I | A | E | O | H | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | F | J || K | P | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | [ | Left | Rght | | Dn | Up | ] | \ |
- `---------------------------' `---------------------------'
- ,----------------.,----------------.
- | LCtl | LAlt || LAlt | RCtl |
- ,------|-------|--------||--------+-------+-------.
- | | | RGUI || RGUI | | |
- | BkSp | ESC |--------||--------| Enter | Space |
- | | | MO(L2) || MO(L2) | | |
- `-----------------------'`------------------------'
-
- L1 QWERTY layer:
- ,-------------------------------------------.,-------------------------------------------.
- | Del | 1 | 3 | 5 | 7 | 9 || 0 | 8 | 6 | 4 | 2 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T || Y | U | I | O | P | = |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | ESC | A | S | D | F | G || H | J | K | L | ; | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | B || N | M | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | [ | Left | Rght | | Dn | Up | ] | \ |
- `---------------------------' `---------------------------'
- ,----------------.,----------------.
- | LCtl | LAlt || LAlt | RCtl |
- ,------|-------|--------||--------+-------+-------.
- | | | RGUI || RGUI | | |
- | BkSp | ESC |--------||--------| Enter | Space |
- | | | MO(L1) || MO(L2) | | |
- `-----------------------'`------------------------'
-
- L2 Keypad + Media layer:
- ,-------------------------------------------.,-------------------------------------------.
- | | | | | | || | NmLk | KP = | KP / | KP * | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | Mute | Vol- | Vol+ | || | KP 7 | KP 8 | KP 9 | KP - | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | Stop | Prev | Play | Next | Sel || | KP 4 | KP 5 | KP 6 | KP + | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | | | | || | KP 1 | KP 2 | KP 3 |KP Ent| |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | | | | | | ( | ) | KP . |KP Ent| |
- `---------------------------' `----------------------------------'
- ,----------------.,----------------.
- | | || | |
- ,------|-------|--------||--------+-------+-------.
- | | | || | | |
- | | |--------||--------|KP Entr| KP 0 |
- | | | || | | |
- `-----------------------'`------------------------'
-*/
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-[_CX] = LAYOUT(
- // Left Hand
- TO(_CX), KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8,
- KC_DEL, KC_1, KC_3, KC_5, KC_7, KC_9,
- KC_TAB, KC_Q, KC_G, KC_M, KC_L, KC_W,
- KC_ESC, KC_D, KC_S, KC_T, KC_N, KC_R,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_F, KC_J,
- KC_GRV, KC_LBRC, KC_LEFT, KC_RGHT,
- // Left Thumb
- KC_LCTL, KC_LALT,
- KC_RGUI,
- KC_BSPC, KC_ESC, MO(_KP),
-
- // Right Hand
- KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, TO(_QW), TO(_KP), TO(_KP), RESET,
- KC_0, KC_8, KC_6, KC_4, KC_2, KC_MINS,
- KC_B, KC_Y, KC_U, KC_V, KC_SCLN, KC_EQL,
- KC_I, KC_A, KC_E, KC_O, KC_H, KC_QUOT,
- KC_K, KC_P, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- KC_DOWN, KC_UP, KC_RBRC, KC_BSLS,
- // Right Thumb
- KC_RALT, KC_RCTL,
- KC_RGUI,
- MO(_KP), KC_ENT, KC_SPC
- ),
-
-[_QW] = LAYOUT(
- // Left Hand
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, KC_Q, KC_W, KC_E, KC_R, KC_T,
- _______, KC_A, KC_S, KC_D, KC_F, KC_G,
- _______, KC_Z, KC_X, KC_C, KC_V, KC_B,
- _______, _______, _______, _______,
- // Left Thumb
- _______, _______,
- _______,
- _______, _______, _______,
-
- // Right Hand
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- KC_Y, KC_U, KC_I, KC_O, KC_P, _______,
- KC_H, KC_J, KC_K, KC_L, KC_SCLN, _______,
- KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, _______,
- _______, _______, _______, _______,
- // Right Thumb
- _______, _______,
- _______,
- _______, _______, _______
- ),
-
-[_KP] = LAYOUT(
- // Left Hand
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______,
- _______, KC_MSTP, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSEL,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______,
- // Left Thumb
- _______, _______,
- _______,
- _______, _______, _______,
-
- // Right Hand */
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, KC_NLCK, KC_PEQL, KC_PSLS, KC_PAST, _______,
- _______, KC_P7, KC_P8, KC_P9, KC_PMNS, _______,
- _______, KC_P4, KC_P5, KC_P6, KC_PPLS, _______,
- _______, KC_P1, KC_P2, KC_P3, KC_PENT, _______,
- KC_LPRN, KC_RPRN, KC_PDOT, KC_PENT,
- // Right Thumb
- _______, _______,
- _______,
- _______, KC_PENT, KC_P0
- )
-
-};
-
-void persistent_default_layer_set(uint16_t default_layer) {
- eeconfig_update_default_layer(default_layer);
- default_layer_set(default_layer);
-}
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- switch(id) {
- case _CX:
- if (record->event.pressed) {
- persistent_default_layer_set(1UL<<_CX);
- }
- break;
- case _QW:
- if (record->event.pressed) {
- persistent_default_layer_set(1UL<<_QW);
- }
- break;
- }
- return MACRO_NONE;
-};
-
-// Runs just one time when the keyboard initializes.
-void matrix_init_user(void) {
-
-};
diff --git a/keyboards/kinesis/keymaps/carpalx/readme.md b/keyboards/kinesis/keymaps/carpalx/readme.md
deleted file mode 100644
index aa57b60a52..0000000000
--- a/keyboards/kinesis/keymaps/carpalx/readme.md
+++ /dev/null
@@ -1,83 +0,0 @@
-# Carpalx Kinesis Keymap
-
-## About this keymap
-
-Carpalx layout (also known as QGMLWBY) is an optimized alternative keyboard layout.
-Learn more about it at:
-[http://mkweb.bcgsc.ca/carpalx/?popular_alternatives]()
-
-The layout also includes a QWERTY layer to help with the transition.
- - Scroll Lock: QWERTY layer
- - Esc (Fn row): Carpalx layer
- - Keypad: Keypad and Media layer
-
-## Details mapping
-
- Function Keys on All Layers (Keypad toggles):
- ,---------------------------------------------------------------.
- | L0 | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 |
- `---------------------------------------------------------------'
- ,---------------------------------------------------------------.
- | F9 | F10 | F11 | F12 | PSCR | L1 | L2 | L2 | RESET |
- `---------------------------------------------------------------'
-
- L0 Carpalx layer:
- ,-------------------------------------------.,-------------------------------------------.
- | Del | 1 | 3 | 5 | 7 | 9 || 0 | 8 | 6 | 4 | 2 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | G | M | L | W || B | Y | U | V | ; | = |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | ESC | D | S | T | N | R || I | A | E | O | H | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | F | J || K | P | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | [ | Left | Rght | | Dn | Up | ] | \ |
- `---------------------------' `---------------------------'
- ,----------------.,----------------.
- | LCtl | LAlt || LAlt | RCtl |
- ,------|-------|--------||--------+-------+-------.
- | | | RGUI || RGUI | | |
- | BkSp | ESC |--------||--------| Enter | Space |
- | | | MO(L2) || MO(L2) | | |
- `-----------------------'`------------------------'
-
- L1 QWERTY layer:
- ,-------------------------------------------.,-------------------------------------------.
- | Del | 1 | 3 | 5 | 7 | 9 || 0 | 8 | 6 | 4 | 2 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T || Y | U | I | O | P | = |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | ESC | A | S | D | F | G || H | J | K | L | ; | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | B || N | M | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | [ | Left | Rght | | Dn | Up | ] | \ |
- `---------------------------' `---------------------------'
- ,----------------.,----------------.
- | LCtl | LAlt || LAlt | RCtl |
- ,------|-------|--------||--------+-------+-------.
- | | | RGUI || RGUI | | |
- | BkSp | ESC |--------||--------| Enter | Space |
- | | | MO(L1) || MO(L2) | | |
- `-----------------------'`------------------------'
-
- L2 Keypad + Media layer:
- ,-------------------------------------------.,-------------------------------------------.
- | | | | | | || | NmLk | KP = | KP / | KP * | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | Mute | Vol- | Vol+ | || | KP 7 | KP 8 | KP 9 | KP - | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | Stop | Prev | Play | Next | Sel || | KP 4 | KP 5 | KP 6 | KP + | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | | | | || | KP 1 | KP 2 | KP 3 |KP Ent| |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | | | | | | ( | ) | KP . |KP Ent| |
- `---------------------------' `----------------------------------'
- ,----------------.,----------------.
- | | || | |
- ,------|-------|--------||--------+-------+-------.
- | | | || | | |
- | | |--------||--------|KP Entr| KP 0 |
- | | | || | | |
- `-----------------------'`------------------------'
-
diff --git a/keyboards/kinesis/keymaps/carpalx/rules.mk b/keyboards/kinesis/keymaps/carpalx/rules.mk
deleted file mode 100644
index 63f52ac18e..0000000000
--- a/keyboards/kinesis/keymaps/carpalx/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/keymaps/default/config.h b/keyboards/kinesis/keymaps/default/config.h
deleted file mode 100644
index 271f48d001..0000000000
--- a/keyboards/kinesis/keymaps/default/config.h
+++ /dev/null
@@ -1,3 +0,0 @@
-#pragma once
-
-// place overrides here
diff --git a/keyboards/kinesis/keymaps/default/keymap.c b/keyboards/kinesis/keymaps/default/keymap.c
deleted file mode 100644
index 98de455e58..0000000000
--- a/keyboards/kinesis/keymaps/default/keymap.c
+++ /dev/null
@@ -1,85 +0,0 @@
-#include QMK_KEYBOARD_H
-
-#define QWERTY 0 // Base qwerty
-
-
-/****************************************************************************************************
-*
-* Keymap: Default Layer in Qwerty
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | Esc | F1 | F2 | F3 | F4 | F5 | F6 | F8 | F9 | F10 | F12 | PSCR | SLCK | PAUS | FN0 | BOOT |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | =+ | 1! | 2@ | 3# | 4$ | 5% | | 6^ | 7& | 8* | 9( | 0) | -_ |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | Tab | Q | W | E | R | T | | Y | U | I | O | P | \| |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | Caps | A | S | D | F | G | | H | J | K | L | ;: | '" |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | Shift | Z | X | C | V | B | | N | M | ,. | .> | /? | Shift |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | `~ | INS | Left | Right| | Up | Down | [{ | ]} |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | Ctrl | Alt | | Gui | Ctrl |
-* ,------|------|------| |------+------+------.
-* | | | Home | | PgUp | | |
-* | BkSp | Del |------| |------|Return| Space|
-* | | | End | | PgDn | | |
-* `--------------------' `--------------------'
-*/
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-[QWERTY] = LAYOUT(
- KC_ESC, KC_F1 ,KC_F2 ,KC_F3 ,KC_F4 ,KC_F5 ,KC_F6 ,KC_F7 ,KC_F8,
- KC_EQL, KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,
- KC_TAB, KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,
- KC_CAPS,KC_A ,KC_S ,KC_D ,KC_F ,KC_G ,
- KC_LSFT,KC_Z ,KC_X ,KC_C ,KC_V ,KC_B ,
- KC_GRV ,KC_INS ,KC_LEFT,KC_RGHT,
- KC_LCTL,KC_LALT,
- KC_HOME,
- KC_BSPC,KC_DEL ,KC_END ,
- KC_F9 ,KC_F10 ,KC_F11 ,KC_F12 ,KC_PSCR ,KC_SLCK ,KC_PAUS, KC_FN0, KC_1,
- KC_6 ,KC_7 ,KC_8 ,KC_9 ,KC_0 ,KC_MINS,
- KC_Y ,KC_U ,KC_I ,KC_O ,KC_P ,KC_BSLS,
- KC_H ,KC_J ,KC_K ,KC_L ,KC_SCLN,KC_QUOT,
- KC_N ,KC_M ,KC_COMM,KC_DOT ,KC_SLSH,KC_RSFT,
- KC_UP ,KC_DOWN,KC_LBRC,KC_RBRC,
- KC_RGUI,KC_RCTL,
- KC_PGUP,
- KC_PGDN,KC_ENTER ,KC_SPC
- )
-};
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- // MACRODOWN only works in this function
- switch(id) {
- case 0:
- if (record->event.pressed) {
- register_code(KC_RSFT);
- } else {
- unregister_code(KC_RSFT);
- }
- break;
- }
- return MACRO_NONE;
-};
-
-
-void matrix_init_user(void) {
-
-}
-
-void matrix_scan_user(void) {
-
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void led_set_user(uint8_t usb_led) {
-
-}
diff --git a/keyboards/kinesis/keymaps/default/readme.md b/keyboards/kinesis/keymaps/default/readme.md
deleted file mode 100644
index da033be1e9..0000000000
--- a/keyboards/kinesis/keymaps/default/readme.md
+++ /dev/null
@@ -1 +0,0 @@
-# The default keymap for kinesis-advantage
diff --git a/keyboards/kinesis/keymaps/default/rules.mk b/keyboards/kinesis/keymaps/default/rules.mk
deleted file mode 100644
index 7a331cd530..0000000000
--- a/keyboards/kinesis/keymaps/default/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = yes # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/keymaps/default_pretty/config.h b/keyboards/kinesis/keymaps/default_pretty/config.h
deleted file mode 100644
index 8893d122e0..0000000000
--- a/keyboards/kinesis/keymaps/default_pretty/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CONFIG_USER_H
-#define CONFIG_USER_H
-
-#include "../../config.h"
-
-// place overrides here
-
-#endif
diff --git a/keyboards/kinesis/keymaps/default_pretty/keymap.c b/keyboards/kinesis/keymaps/default_pretty/keymap.c
deleted file mode 100644
index cb4cb6f26a..0000000000
--- a/keyboards/kinesis/keymaps/default_pretty/keymap.c
+++ /dev/null
@@ -1,78 +0,0 @@
-#include QMK_KEYBOARD_H
-
-#define QWERTY 0 // Base qwerty
-
-
-/****************************************************************************************************
-*
-* Keymap: Default Layer in Qwerty
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | Esc | F1 | F2 | F3 | F4 | F5 | F6 | F8 | F9 | F10 | F12 | PSCR | SLCK | PAUS | FN0 | BOOT |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | =+ | 1! | 2@ | 3# | 4$ | 5% | | 6^ | 7& | 8* | 9( | 0) | -_ |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | Tab | Q | W | E | R | T | | Y | U | I | O | P | \| |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | Caps | A | S | D | F | G | | H | J | K | L | ;: | '" |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | Shift | Z | X | C | V | B | | N | M | ,. | .> | /? | Shift |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | `~ | INS | Left | Right| | Up | Down | [{ | ]} |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | Ctrl | Alt | | Gui | Ctrl |
-* ,------|------|------| |------+------+------.
-* | | | Home | | PgUp | | |
-* | BkSp | Del |------| |------|Return| Space|
-* | | | End | | PgDn | | |
-* `--------------------' `--------------------'
-*/
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
- [QWERTY] = LAYOUT_pretty(
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, KC_FN0, KC_1,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
- KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- KC_GRV, KC_INS, KC_LEFT, KC_RGHT, KC_UP, KC_DOWN, KC_LBRC, KC_RBRC,
- KC_LCTL, KC_LALT, KC_RGUI, KC_RCTL,
- KC_HOME, KC_PGUP,
- KC_BSPC, KC_DEL, KC_END, KC_PGDN, KC_ENTER, KC_SPC
- )
-
-};
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- // MACRODOWN only works in this function
- switch(id) {
- case 0:
- if (record->event.pressed) {
- register_code(KC_RSFT);
- } else {
- unregister_code(KC_RSFT);
- }
- break;
- }
- return MACRO_NONE;
-};
-
-
-void matrix_init_user(void) {
-
-}
-
-void matrix_scan_user(void) {
-
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void led_set_user(uint8_t usb_led) {
-
-}
diff --git a/keyboards/kinesis/keymaps/default_pretty/readme.md b/keyboards/kinesis/keymaps/default_pretty/readme.md
deleted file mode 100644
index a8783b978a..0000000000
--- a/keyboards/kinesis/keymaps/default_pretty/readme.md
+++ /dev/null
@@ -1,5 +0,0 @@
-# The default keymap for kinesis-advantage
-
-This keymap is the same as the one in the `default` directory, but is
-formatted to use the `LAYOUT_pretty` matrix, which places the two halves of
-the keyboard side-by-side, rather than the left-hand side being on top.
diff --git a/keyboards/kinesis/keymaps/default_pretty/rules.mk b/keyboards/kinesis/keymaps/default_pretty/rules.mk
deleted file mode 100644
index 7a331cd530..0000000000
--- a/keyboards/kinesis/keymaps/default_pretty/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = yes # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/keymaps/dvorak/config.h b/keyboards/kinesis/keymaps/dvorak/config.h
deleted file mode 100644
index 8893d122e0..0000000000
--- a/keyboards/kinesis/keymaps/dvorak/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CONFIG_USER_H
-#define CONFIG_USER_H
-
-#include "../../config.h"
-
-// place overrides here
-
-#endif
diff --git a/keyboards/kinesis/keymaps/dvorak/keymap.c b/keyboards/kinesis/keymaps/dvorak/keymap.c
deleted file mode 100644
index 9e44c10ce5..0000000000
--- a/keyboards/kinesis/keymaps/dvorak/keymap.c
+++ /dev/null
@@ -1,88 +0,0 @@
-#include QMK_KEYBOARD_H
-
-#define _DVORAK 0 // Base Dvorak layer
-#define _MEDIA 1 // Media layer
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-[_DVORAK] = LAYOUT(
- // left hand
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8,
- KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5,
- KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y,
- KC_BSPC, KC_A, KC_O, KC_E, KC_U, KC_I,
- KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X,
- KC_ESC, KC_LBRC, KC_DOWN, KC_UP,
- // left thumb
- KC_LGUI, KC_LCTL,
- KC_LALT,
- KC_BSPC, KC_DEL, TG(_MEDIA),
- // right hand
- KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, KC_FN0, KC_1,
- KC_6, KC_7, KC_8, KC_9, KC_0, KC_EQL,
- KC_F, KC_G, KC_C, KC_R, KC_L, KC_SLSH,
- KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS,
- KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
- KC_LEFT, KC_RIGHT, KC_RBRC, KC_BSLS,
- // right thumb
- KC_RCTL, KC_RGUI,
- KC_RALT,
- TG(_MEDIA), KC_ENT, KC_SPC
- ),
-
-[_MEDIA] = LAYOUT(
- // left hand
- KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
- KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
- KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
- KC_NO, KC_BTN4, KC_BTN3, KC_BTN2, KC_BTN1, KC_NO,
- KC_NO, KC_NO, KC_MUTE, KC_VOLD, KC_VOLU, KC_NO,
- KC_NO, KC_NO, KC_MS_D, KC_MS_U,
- // left thumb
- KC_NO, KC_NO,
- KC_NO,
- KC_NO, KC_NO, KC_TRNS,
- // right hand
- KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO,
- KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_POWER,
- KC_NO, KC_VOLU, KC_MS_U, KC_VOLD, KC_NO, KC_NO,
- KC_NO, KC_MS_L, KC_MS_D, KC_MS_R, KC_NO, KC_NO,
- KC_NO, KC_MPRV, KC_MPLY, KC_MNXT, KC_NO, KC_NO,
- KC_MS_L, KC_MS_R, KC_NO, KC_NO,
- // right thumb
- KC_NO, KC_NO,
- KC_NO,
- KC_TRNS, KC_ENT, KC_NO
-)
-};
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- // MACRODOWN only works in this function
- switch(id) {
- case 0:
- if (record->event.pressed) {
- register_code(KC_RSFT);
- } else {
- unregister_code(KC_RSFT);
- }
- break;
- }
- return MACRO_NONE;
-};
-
-
-void matrix_init_user(void) {
-
-}
-
-void matrix_scan_user(void) {
-
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void led_set_user(uint8_t usb_led) {
-
-}
diff --git a/keyboards/kinesis/keymaps/dvorak/rules.mk b/keyboards/kinesis/keymaps/dvorak/rules.mk
deleted file mode 100644
index 7a331cd530..0000000000
--- a/keyboards/kinesis/keymaps/dvorak/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = yes # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/keymaps/insertsnideremarks/config.h b/keyboards/kinesis/keymaps/insertsnideremarks/config.h
deleted file mode 100644
index 9ce094be51..0000000000
--- a/keyboards/kinesis/keymaps/insertsnideremarks/config.h
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifndef CONFIG_USER_H
-#define CONFIG_USER_H
-
-
-#include "../../config.h"
-
-// place overrides here
-#define IGNORE_MOD_TAP_INTERRUPT
-#define TAPPING_TERM 175
-#define TAPPING_TOGGLE 2
-
-
-#endif
diff --git a/keyboards/kinesis/keymaps/insertsnideremarks/keymap.c b/keyboards/kinesis/keymaps/insertsnideremarks/keymap.c
deleted file mode 100644
index 7f328b4f0e..0000000000
--- a/keyboards/kinesis/keymaps/insertsnideremarks/keymap.c
+++ /dev/null
@@ -1,482 +0,0 @@
-#include QMK_KEYBOARD_H
-
-extern keymap_config_t keymap_config;
-
-enum kinesis_layers {
- _COLEMAK, // Colemak (default layer)
- _QWERTY, // Qwerty
- _COLEMAKGM, // Colemak gaming/vanilla (limited dual-role keys with layer access)
- _QWERTYGM, // QWERTY gaming/vanilla (limited dual-role keys with layer access)
- _NUMBERS, // Numbers & Symbols
- _NUMBERS2, // Numbers & Symbols 2 (identical as _NUMBERS; basically used for tri-layer access to _ADJUST)
- _FUNCTION, // Function
- _FUNCTION2, // Function 2 (identical as _FUNCTION; used to allow for easier use of space and backspace while using function layer arrows)
- _NUMPAD, // Numpad
- _ADJUST, // Adjust layer (accessed via tri-layer feature)
- _ADJUST2 // Second Adjust layer (accessed outside of tri-layer feature)
-};
-
-enum kinesis_keycodes {
- COLEMAK = SAFE_RANGE,
- QWERTY,
- COLEMAKGM,
- QWERTYGM,
- NUMPAD = TG(_NUMPAD),
- ADJUST = MO(_ADJUST2),
- SPCFN = LT(_FUNCTION, KC_SPC),
- BSPCFN = LT(_FUNCTION2, KC_BSPC),
- ENTNS = LT(_NUMBERS, KC_ENT),
- DELNS = LT(_NUMBERS2, KC_DEL),
- CTLESC = CTL_T(KC_ESC),
- ALTAPP = ALT_T(KC_APP),
- NKROTG = MAGIC_TOGGLE_NKRO
-};
-
-//Tap Dance Declarations
-enum {
- ADJ = 0,
- LBCB,
- RBCB,
- EQPL,
- PLEQ,
- MNUN,
- SLAS,
- GVTL,
- PPLEQ,
- PMNUN,
- PSLPAS
-};
-
-void dance_LAYER_finished(qk_tap_dance_state_t *state, void *user_data) {
- if (state->count == 2) {
- layer_on(_ADJUST2);
- set_oneshot_layer(_ADJUST2, ONESHOT_START);
- }
-}
-void dance_LAYER_reset(qk_tap_dance_state_t *state, void *user_data) {
- if (state->count == 2) {
- layer_off(_ADJUST2);
- clear_oneshot_layer_state(ONESHOT_PRESSED);
- }
-}
-
-qk_tap_dance_action_t tap_dance_actions[] = {
-[ADJ] = ACTION_TAP_DANCE_FN_ADVANCED(NULL, dance_LAYER_finished, dance_LAYER_reset), // Double-tap to activate Adjust layer via oneshot layer
-[LBCB] = ACTION_TAP_DANCE_DOUBLE(KC_LBRC, KC_LCBR), // Left bracket on a single-tap, left brace on a double-tap
-[RBCB] = ACTION_TAP_DANCE_DOUBLE(KC_RBRC, KC_RCBR), // Right bracket on a single-tap, right brace on a double-tap
-[EQPL] = ACTION_TAP_DANCE_DOUBLE(KC_EQL, KC_PLUS), // Plus sign on a single-tap, equal sign on a double-tap
-[PLEQ] = ACTION_TAP_DANCE_DOUBLE(KC_PLUS, KC_EQL), // Equal sign on a single-tap, plus sign on a double-tap
-[MNUN] = ACTION_TAP_DANCE_DOUBLE(KC_MINS, KC_UNDS), // Minus sign on a single-tap, underscore on a double-tap
-[SLAS] = ACTION_TAP_DANCE_DOUBLE(KC_SLSH, KC_ASTR), // Slash in a single-tap, asterisk in a double-tap
-[GVTL] = ACTION_TAP_DANCE_DOUBLE(KC_GRV, KC_TILD), // Grave on a single-tap, tilde on a double-tap
-[PPLEQ] = ACTION_TAP_DANCE_DOUBLE(KC_PPLS, KC_EQL), // Numpad plus sign on a single-tap, equal sign on a double-tap
-[PMNUN] = ACTION_TAP_DANCE_DOUBLE(KC_PMNS, KC_UNDS), // Numpad minus sign on a single-tap, underscore on a double-tap
-[PSLPAS] = ACTION_TAP_DANCE_DOUBLE(KC_PSLS, KC_PAST) // Numpad slash on a single-tap, numpad asterisk on a double-tap
-};
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-/* Colemak
- (Defauit layer; keys separated by /: tap for first, hold for second; uses Space Cadet Shifts)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | F | P | G | | J | L | U | Y | ; | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |Esc/Ctrl| A | R | S | T | D | | H | N | E | I | O | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |SC Shift| Z | X | C | V | B | | K | M | , | . | / |SC Shift|
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl| Hyper | | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | Space | Enter |App/Alt| | RGUI | Delete| Bspc |
- | / | / |-------| |-------| / | / |
- | Fn | Number| Bspc | | Enter |Number2| Fn2 |
- `-----------------------' `-----------------------'
-*/
-[_COLEMAK] = LAYOUT_pretty(
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, NUMPAD, ADJUST,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
- KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSLS,
- CTLESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
- KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC,
- KC_INS, KC_GRV, KC_LBRC, KC_RBRC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
- CTLESC, ALL_T(KC_NO), KC_RALT, KC_RCTL,
- ALTAPP, KC_RGUI,
- SPCFN, ENTNS, KC_BSPC, KC_ENT, DELNS, BSPCFN
-),
-
-/* QWERTY
- (Keys separated by /: tap for first, hold for second; uses Space Cadet Shifts)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T | | Y | U | I | O | P | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |Esc/Ctrl| A | S | D | F | G | | H | J | K | L | ; | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |SC Shift| Z | X | C | V | B | | N | M | , | . | / |SC Shift|
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl| Hyper | | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | Space | Enter |App/Alt| | RGUI | Delete| Bspc |
- | / | / |-------| |-------| / | / |
- | Fn | Number| Bspc | | Enter |Number2| Fn2 |
- `-----------------------' `-----------------------'
-*/
-[_QWERTY] = LAYOUT_pretty(
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, NUMPAD, ADJUST,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
- CTLESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
- KC_LSPO, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSPC,
- KC_INS, KC_GRV, KC_LBRC, KC_RBRC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
- CTLESC, ALL_T(KC_NO), KC_RALT, KC_RCTL,
- ALTAPP, KC_RGUI,
- SPCFN, ENTNS, KC_BSPC, KC_ENT, DELNS, BSPCFN
-),
-
-/* Number/symbol layer
- (Multiple characters: single-tap for first, double-tap for second)
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | F12 | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | 6 | 7 | 8 | 9 | 0 | | ^ | & | * | ( | ) | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | 1 | 2 | 3 | 4 | 5 | | ! | @ | # | $ | % | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | . | / * | - _ | + = | | ` ~ | [ { | ] } | | | |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | ( | ) | [ { | ] } | | | | | |
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-*/
-[_NUMBERS] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
- _______, KC_6, KC_7, KC_8, KC_9, KC_0, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
- _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______,
- _______, _______, KC_DOT, TD(SLAS), TD(MNUN), TD(PLEQ), TD(GVTL), TD(LBCB), TD(RBCB), _______, _______, _______,
- KC_LPRN, KC_RPRN, TD(LBCB), TD(RBCB), _______, _______, _______, _______,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-),
-
-[_NUMBERS2] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
- _______, KC_6, KC_7, KC_8, KC_9, KC_0, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, _______,
- _______, KC_1, KC_2, KC_3, KC_4, KC_5, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, _______,
- _______, _______, KC_DOT, TD(SLAS), TD(MNUN), TD(PLEQ), TD(GVTL), TD(LBCB), TD(RBCB), _______, _______, _______,
- KC_LPRN, KC_RPRN, TD(LBCB), TD(RBCB), _______, _______, _______, _______,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-),
-
-/* Function layer
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | F12 | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | Up | | | | | | Up |Ctrl+Y| | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | |Ctrl+A| Left | Down | Right|C+A+Tb| | PgUp | Right| Down | Left | Home | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | |Ctrl+Z|Ctrl+X|Ctrl+C|Ctrl+V| Bspc | | PgDn | Mute | Vol- | Vol+ | End | |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | | | | | | Prev | Play | Next | Stop |
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-*/
-[_FUNCTION] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
- _______, _______, _______, KC_UP, _______, _______, _______, _______, KC_UP, LCTL(KC_Y), _______, _______,
- _______, LCTL(KC_A), KC_LEFT, KC_DOWN, KC_RGHT, LCA(KC_TAB), KC_PGUP, KC_LEFT, KC_DOWN, KC_RGHT, KC_HOME, _______,
- _______, LCTL(KC_Z), LCTL(KC_X), LCTL(KC_C), LCTL(KC_V), KC_BSPC, KC_PGDN, KC_MUTE, KC_VOLD, KC_VOLU, KC_END, _______,
- _______, _______, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSTP,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-),
-
-[_FUNCTION2] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
- _______, _______, _______, KC_UP, _______, _______, _______, _______, KC_UP, LCTL(KC_Y), _______, _______,
- _______, LCTL(KC_A), KC_LEFT, KC_DOWN, KC_RGHT, LCA(KC_TAB), KC_PGUP, KC_LEFT, KC_DOWN, KC_RGHT, KC_HOME, _______,
- _______, LCTL(KC_Z), LCTL(KC_X), LCTL(KC_C), LCTL(KC_V), KC_BSPC, KC_PGDN, KC_MUTE, KC_VOLD, KC_VOLU, KC_END, _______,
- _______, _______, _______, _______, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSTP,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-),
-
-/* Numpad layer
- (Left side duplicates layout from the Numbers layer, just with numpad output; right side layout close to PC numpad layout)
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | | NumLk| | | | | | Tab | NumLk| KP / | KP * | KP - | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | KP 6 | KP 7 | KP 8 | KP 9 | KP 0 | | | KP 7 | KP 8 | KP 9 | KP + | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | KP 1 | KP 2 | KP 3 | KP 4 | KP 5 | | | KP 4 | KP 5 | KP 6 | = | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | KP . |KP/KP*| KP- _| KP+ =| | | KP 1 | KP 2 | KP 3 |KP Ent| |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | ( | ) | [ { | ] } | | KP 0 | , | KP . |KP Ent|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-*/
-[_NUMPAD] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, KC_NLCK, _______, _______, _______, _______, KC_TAB, KC_NLCK, KC_PSLS, KC_PAST, KC_PMNS, _______,
- _______, KC_P6, KC_P7, KC_P8, KC_P9, KC_P0, _______, KC_P7, KC_P8, KC_P9, KC_PPLS, _______,
- _______, KC_P1, KC_P2, KC_P3, KC_P4, KC_P5, _______, KC_P4, KC_P5, KC_P6, KC_EQL, _______,
- _______, _______, KC_PDOT, TD(PSLPAS), TD(PMNUN), TD(PPLEQ), _______, KC_P1, KC_P2, KC_P3, KC_PENT, _______,
- KC_LPRN, KC_RPRN, TD(LBCB), TD(RBCB), KC_P0, KC_COMM, KC_PDOT, KC_PENT,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-),
-
-/* Colemak gaming/vanilla
- (Limited access to Function or Numbers layers; mainly used for gaming; double-tap and hold TD(ADJ) above LAlt to access Adjust layer)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | F | P | G | | J | L | U | Y | ; | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Ctrl | A | R | S | T | D | | H | N | E | I | O | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Shift | Z | X | C | V | B | | K | M | , | . | / | Shift |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl|TD(ADJ)| | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | | | LAlt | | RGUI | | |
- | Space | Enter |-------| |-------| Delete| Bspc |
- | | |Bspc/FN| | Ent/NS| | |
- `-----------------------' `-----------------------'
-*/
-[_COLEMAKGM] = LAYOUT_pretty(
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, NUMPAD, ADJUST,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
- KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSLS,
- KC_LCTL, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- KC_INS, KC_GRV, KC_LBRC, KC_RBRC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
- CTLESC, TD(ADJ), KC_RALT, KC_RCTL,
- KC_LALT, KC_RGUI,
- KC_SPC, KC_ENT, BSPCFN, ENTNS, KC_DEL, KC_BSPC
-),
-
-/* QWERTY gaming/vanilla
- (Limited access to Function or Numbers layers; mainly used for gaming; double-tap and hold TD(ADJ) above LAlt to access Adjust layer)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T | | Y | U | I | O | P | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Ctrl | A | S | D | F | G | | H | J | K | L | ; | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Shift | Z | X | C | V | B | | N | M | , | . | / | Shift |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl|TD(ADJ)| | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | | | LAlt | | RGUI | | |
- | Space | Enter |-------| |-------| Delete| Bspc |
- | | |Bspc/FN| | Ent/NS| | |
- `-----------------------' `-----------------------'
-*/
-[_QWERTYGM] = LAYOUT_pretty(
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, NUMPAD, ADJUST,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
- KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- KC_INS, KC_GRV, KC_LBRC, KC_RBRC, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT,
- CTLESC, TD(ADJ), KC_RALT, KC_RCTL,
- KC_LALT, KC_RGUI,
- KC_SPC, KC_ENT, BSPCFN, ENTNS, KC_DEL, KC_BSPC
-),
-
-/* Adjust layer
- (Enter/Number + Delete/Number2 under non-gaming/vanilla layers or press & hold Adjust key on function row; Numpad is a toggle)
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | |Colmak|Qwerty| |ClmkGM| QWGM | |Numpad| | | | | RESET |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | | | | | | | | | | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | | | | | | NKRO | | | | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | | | | | | | | | | |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | | | | | | | | | |
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-*/
-[_ADJUST] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, COLEMAK, QWERTY, _______, COLEMAKGM, QWERTYGM, NUMPAD, _______, _______, _______, _______, RESET,
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, NKROTG, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-),
-
-[_ADJUST2] = LAYOUT_pretty(
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, COLEMAK, QWERTY, _______, COLEMAKGM, QWERTYGM, NUMPAD, _______, _______, _______, _______, RESET,
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, NKROTG, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______,
- _______, _______,
- _______, _______, _______, _______, _______, _______
-)
-
-};
-
-uint32_t layer_state_set_user(uint32_t state) {
- return update_tri_layer_state(state, _NUMBERS, _NUMBERS2, _ADJUST);
-}
-
-void persistent_default_layer_set(uint16_t default_layer) {
- eeconfig_update_default_layer(default_layer);
- default_layer_set(default_layer);
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case COLEMAK:
- if (record->event.pressed) {
- default_layer_set(1UL << _COLEMAK);
-// persistent_default_layer_set(1UL << _COLEMAK);
- layer_off ( _QWERTY);
- layer_off ( _NUMBERS);
- layer_off ( _NUMBERS2);
- layer_off ( _FUNCTION);
- layer_off ( _FUNCTION2);
- layer_off ( _NUMPAD);
- layer_off ( _COLEMAKGM);
- layer_off ( _QWERTYGM);
- layer_off ( _ADJUST);
- layer_off ( _ADJUST2);
- }
- return false;
- break;
- case QWERTY:
- if (record->event.pressed) {
- default_layer_set(1UL << _QWERTY);
-// persistent_default_layer_set(1UL << _QWERTY);
- layer_off ( _COLEMAK);
- layer_off ( _NUMBERS);
- layer_off ( _NUMBERS2);
- layer_off ( _FUNCTION);
- layer_off ( _FUNCTION2);
- layer_off ( _NUMPAD);
- layer_off ( _COLEMAKGM);
- layer_off ( _QWERTYGM);
- layer_off ( _ADJUST);
- layer_off ( _ADJUST2);
- }
- return false;
- break;
- case COLEMAKGM:
- if (record->event.pressed) {
- default_layer_set(1UL << _COLEMAKGM);
- layer_off ( _QWERTY);
- layer_off ( _COLEMAK);
- layer_off ( _NUMBERS);
- layer_off ( _NUMBERS2);
- layer_off ( _FUNCTION);
- layer_off ( _FUNCTION2);
- layer_off ( _NUMPAD);
- layer_off ( _QWERTYGM);
- layer_off ( _ADJUST);
- layer_off ( _ADJUST2);
- }
- return false;
- break;
- case QWERTYGM:
- if (record->event.pressed) {
- default_layer_set(1UL << _QWERTYGM);
- layer_off ( _QWERTY);
- layer_off ( _COLEMAK);
- layer_off ( _NUMBERS);
- layer_off ( _NUMBERS2);
- layer_off ( _FUNCTION);
- layer_off ( _FUNCTION2);
- layer_off ( _NUMPAD);
- layer_off ( _COLEMAKGM);
- layer_off ( _ADJUST);
- layer_off ( _ADJUST2);
- }
- return false;
- break;
- }
- return true;
-}
diff --git a/keyboards/kinesis/keymaps/insertsnideremarks/readme.md b/keyboards/kinesis/keymaps/insertsnideremarks/readme.md
deleted file mode 100644
index 7a146c7a29..0000000000
--- a/keyboards/kinesis/keymaps/insertsnideremarks/readme.md
+++ /dev/null
@@ -1,224 +0,0 @@
-# insertsnideremarks' Kinesis Keymap
-
-These layouts are derived from what I was using on my Kinesis Contoured keyboards with Hasu's TMK converters. With the move to QMK via Stapelberg replacement controller, I've cleaned up the layouts a bit while adding more functions and layers.
-
-There are minor changes in the base keywell layout of non-alpha keys (e.g., CapsLock is ESC/Ctl, arrow clusters on one side), while the thumb clusters deviate more from the default layout.
-
-Changes to the thumb clusters include:
-* The navigations keys moved to function layers.
-* The function of 2u keys have been reversed - I've always used space with my left thumb, and I find it more helpful to have access to Space and Enter while using my mouse/trackball.
-* Backspace have been duplicated on both clusters.
-* The 2u keys serve dual function as momentary layer switchers.
-
-I've largely left the function keys untouched, with the intension of not using them. They are neither easy to use nor reach due to their locations and size, and, prior to Advantage2, particularly terrible rubber domes were used. They have since updated the keys with Cherry ML switches on Advantage2, but did not resolve the issues of size or location. Additionally, leaving the function keys unused here makes it easier for me to adapt the keymaps to my other keyboards, most of which do not have physical function keys.
-
-I use Colemak as my default layout. I've included QWERTY here as well.
-
-Additionally, I've added gaming/vanilla version of Colemak and QWERTY layouts. These layouts have limited access to the Function or Numbers layers, and are mainly used for gaming.
-
-Persistent default layer has been enabled for Colemak and QWERTY. The gaming/vanilla Colemak and QWERTY can be set as default layer, but will not be persistent.
-
-## Future plans
-
-* Add status LEDs to the Stapelberg PCB (usually used for Caps Lock, Num Lock, and Scroll Lock). May configure it as layer indicator.
-* Add a speaker now that QMK supports additional pins for audio use.
-* Utilize the leftover spots on the key matrix, as well as unused pins on Teensy to run macropad and/or foot pedals.
-
-
-### Colemak
- (Default layer, keys separated by /: tap for first, hold for second; uses Space Cadet Shifts)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | F | P | G | | J | L | U | Y | ; | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |Esc/Ctrl| A | R | S | T | D | | H | N | E | I | O | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |SC Shift| Z | X | C | V | B | | K | M | , | . | / |SC Shift|
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl| Hyper | | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | Space | Enter |App/Alt| | RGUI | Delete| Bspc |
- | / | / |-------| |-------| / | / |
- | Fn | Number| Bspc | | Enter |Number2| Fn2 |
- `-----------------------' `-----------------------'
-
-
-### QWERTY
- (Keys separated by /: tap for first, hold for second; uses Space Cadet Shifts)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T | | Y | U | I | O | P | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |Esc/Ctrl| A | S | D | F | G | | H | J | K | L | ; | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- |SC Shift| Z | X | C | V | B | | N | M | , | . | / |SC Shift|
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl| Hyper | | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | Space | Enter |App/Alt| | RGUI | Delete| Bspc |
- | / | / |-------| |-------| / | / |
- | Fn | Number| Bspc | | Enter |Number2| Fn2 |
- `-----------------------' `-----------------------'
-
-
-### Numbers & Symbols layer
- (Multiple characters: single-tap for first, double-tap for second)
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | F12 | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | 6 | 7 | 8 | 9 | 0 | | ^ | & | * | ( | ) | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | 1 | 2 | 3 | 4 | 5 | | ! | @ | # | $ | % | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | . | / * | - _ | + = | | ` ~ | [ { | ] } | | | |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | ( | ) | [ { | ] } | | | | | |
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-
-
-### Function layer
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | F12 | F1 | F2 | F3 | F4 | F5 | | F6 | F7 | F8 | F9 | F10 | F11 |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | Up | | | | | | Up |Ctrl+Y| | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | |Ctrl+A| Left | Down | Right|C+A+Tb| | PgUp | Right| Down | Left | Home | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | |Ctrl+Z|Ctrl+X|Ctrl+C|Ctrl+V| Bspc | | PgDn | Mute | Vol- | Vol+ | End | |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | | | | | | Prev | Play | Next | Stop |
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-
-
-### Numpad layer
- (Left side duplicates layout from the Numbers layer, just with numpad output; right side layout close to PC numpad layout)
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | | NumLk| | | | | | Tab | NumLk| KP / | KP * | KP - | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | KP 6 | KP 7 | KP 8 | KP 9 | KP 0 | | | KP 7 | KP 8 | KP 9 | KP + | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | KP 1 | KP 2 | KP 3 | KP 4 | KP 5 | | | KP 4 | KP 5 | KP 6 | = | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | KP . |KP/KP*| KP- _| KP+ =| | | KP 1 | KP 2 | KP 3 |KP Ent| |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | ( | ) | [ { | ] } | | KP 0 | , | KP . |KP Ent|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
-
-
-### Colemak gaming/vanilla
- (Limited access to Function or Numbers layers; mainly used for gaming; double-tap and hold TD(ADJ) above LAlt to access Adjust layer)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | F | P | G | | J | L | U | Y | ; | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Ctrl | A | R | S | T | D | | H | N | E | I | O | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Shift | Z | X | C | V | B | | K | M | , | . | / | Shift |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl|TD(ADJ)| | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | | | LAlt | | RGUI | | |
- | Space | Enter |-------| |-------| Delete| Bspc |
- | | |Bspc/FN| | Ent/NS| | |
- `-----------------------' `-----------------------'
-
-
-### QWERTY gaming/vanilla
- (Limited access to Function or Numbers layers; mainly used for gaming; double-tap and hold TD(ADJ) above LAlt to access Adjust layer)
- ,-----------------------------------------------------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 | F9 | F10 | F11 | F12 | PScr| SLck| Paus|Numpd|Adjst|
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T | | Y | U | I | O | P | \ |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Ctrl | A | S | D | F | G | | H | J | K | L | ; | ' |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | Shift | Z | X | C | V | B | | N | M | , | . | / | Shift |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | Ins | ` | [ | ] | | Left | Down | Up | Right|
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- |Esc/Ctl|TD(ADJ)| | RAlt | RCtl |
- ,-------|-------|-------| |-------+-------+-------.
- | | | LAlt | | RGUI | | |
- | Space | Enter |-------| |-------| Delete| Bspc |
- | | |Bspc/FN| | Ent/NS| | |
- `-----------------------' `-----------------------'
-
-### Adjust layer
- (Press Enter/Number + Delete/Number2 under non-gaming/vanilla layers or press & hold Adjust key on function row; Numpad is a toggle)
- ,-----------------------------------------------------------------------------------------------------------.
- | | | | | | | | | | | | | | | | | | |
- `-----------------------------------------------------------------------------------------------------------'
- ,-------------------------------------------. ,-------------------------------------------.
- | |Colmak|Qwerty| |ClmkGM| QWGM | |Numpad| | | | | RESET |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | | | | | | | | | | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | | | | | | NKRO | | | | |
- |--------+------+------+------+------+------| |------+------+------+------+------+--------|
- | | | | | | | | | | | | | |
- `--------+------+------+------+------+------' `------+------+------+------+------+--------'
- | | | | | | | | | |
- `---------------------------' `---------------------------'
- ,---------------. ,---------------.
- | | | | | |
- ,-------|-------|-------| |-------+-------+-------.
- | | | | | | | |
- | | |-------| |-------| | |
- | | | | | | | |
- `-----------------------' `-----------------------'
- \ No newline at end of file
diff --git a/keyboards/kinesis/keymaps/insertsnideremarks/rules.mk b/keyboards/kinesis/keymaps/insertsnideremarks/rules.mk
deleted file mode 100644
index d2e362886a..0000000000
--- a/keyboards/kinesis/keymaps/insertsnideremarks/rules.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-DEFAULT_FOLDER = kinesis/stapelberg
-
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = yes # Console for debug(+400)
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = yes # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-TAP_DANCE_ENABLE = yes # Enable Tap Dancing function
-
diff --git a/keyboards/kinesis/keymaps/milestogo/config.h b/keyboards/kinesis/keymaps/milestogo/config.h
deleted file mode 100644
index 8893d122e0..0000000000
--- a/keyboards/kinesis/keymaps/milestogo/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CONFIG_USER_H
-#define CONFIG_USER_H
-
-#include "../../config.h"
-
-// place overrides here
-
-#endif
diff --git a/keyboards/kinesis/keymaps/milestogo/keymap.c b/keyboards/kinesis/keymaps/milestogo/keymap.c
deleted file mode 100644
index f3eb24eb05..0000000000
--- a/keyboards/kinesis/keymaps/milestogo/keymap.c
+++ /dev/null
@@ -1,377 +0,0 @@
-#include QMK_KEYBOARD_H
-#include "mousekey.h"
-
-#define _QWERTY 0 // Base qerty
-#define _SYMB 1// Symbol layer
-#define _MOUSE 2//
-#define _TRANS 3//
-#define _SYMB2 4// old symbol level, more ergodox like
-
-/* Macros */
-enum {
- NONE = 0,
- // Diagonal mouse movement
- A_MUL,
- A_MUR,
- A_MDL,
- A_MDR,
-};
-
-
-// Train out of using uncomfortable esc and GUI keys.
-/****************************************************************************************************
-*
-* Keymap: Default Layer in Qwerty
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | no | F1 | F2 | F3 | F4 | F5 | F6 | F8 | F9 | F10 | F12 | FN0 | FN1 | FN2 | | bOOT |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | `~ | 1! | 2@ | 3# | 4$ | 5% | | 6^ | 7& | 8* | 9( | 0) | -_ |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | Tab | Q | W | E | R | T | | Y | U | I | O | P | \| |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* |MouseFN0| A | S | D | F | G | | H | J | K | L | ;: | '" |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | Shift | Z | X | C | V | B | | N | M | ,< | .> | /? | Shift |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | ~` | ESC |GUI/L |L1/RT | | L1/UP|GUI/DN| [{ | ]} |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | CTRL | ALT | | ALT | GUI |
-* ,------|------|------| |------+------+------.
-* | | | Del | | PgUp | | |
-* | BkSp | BkSp |------| |------|Return| Space|
-* | | | FN0 | | PgDn | | |
-* `--------------------' `--------------------'
-*/
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-[_QWERTY] = LAYOUT(
- XXXXXXX, KC_F1 ,KC_F2 ,KC_F3 ,KC_F4 ,KC_F5 ,KC_F6 ,KC_F7 ,KC_F8,
- KC_GRAVE, KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,
- KC_TAB, KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,
- TT(_MOUSE) ,KC_A ,KC_S ,KC_D ,KC_F ,KC_G ,
- KC_LSFT,KC_Z ,KC_X ,KC_C ,KC_V ,KC_B ,
- KC_GRAVE, KC_ESC, KC_FN4, KC_FN5,
- KC_LCTL,KC_LALT,
- KC_DEL,
- KC_BSPC, KC_DEL ,TT(_MOUSE) ,
- KC_F9 ,KC_F10 ,KC_F11 ,KC_F12 ,TT(_MOUSE) ,KC_FN1 ,TT(_SYMB), KC_NO, RESET,
- KC_6 ,KC_7 ,KC_8 ,KC_9 ,KC_0 ,KC_MINS,
- KC_Y ,KC_U ,KC_I ,KC_O ,KC_P ,KC_BSLS,
- KC_H ,KC_J ,KC_K ,KC_L ,KC_SCLN,KC_QUOT,
- KC_N ,KC_M ,KC_COMM,KC_DOT ,KC_SLSH,KC_RSFT,
- KC_FN6, KC_FN7, KC_LBRC ,KC_RBRC,
- KC_RALT,KC_RGUI,
- KC_PGUP,
- KC_PGDN,KC_ENTER ,KC_SPC
- ),
-
-
-/* _SYMB level, more planck like. Much work to make sequences into multi-finger rolls. eg ([1,0]), !=0
-* Also sorted by frequency / strength of finger.
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | | | | | | | | | | | | | | | | |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | | | | | | | | | | | | | |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | | ^ | { | } | @ | % | | & | [ | ( | ) | _ | \ |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | | ! | # | 0 | = | ~ | | * | + | 1 | - | ] | ` |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | | 6 | 7 | 8 | 9 | pipe | | $ | 2 | 3 | 4 | 5 | |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | | : |GUI/L |L1/RT | | L1/UP|GUI/DN| \ | |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | CTRL | | | ALT | GUI |
-* ,------|------|------| |------+------+------.
-* | | | | | | | |
-* | Cut | Paste|------| |------| | |
-* | | |Reset | | | | |
-* `--------------------' `--------------------'
-*/
-
-
-
-[_SYMB] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, KC_CIRC, KC_LCBR, KC_RCBR, KC_AT, KC_PERC,
- _______, KC_EXLM, KC_HASH, KC_0, KC_EQL, KC_TILD,
- _______, KC_6, KC_7, KC_8, KC_9, KC_PIPE,
- _______, KC_COLON, KC_FN4, KC_FN5,
- _______, _______,
- _______,
- _______, _______, RESET,
- _______, _______, _______, _______, _______, _______, _______, TT(_MOUSE), KC_2,
- _______, _______, _______, _______, _______, _______,
- KC_AMPR, KC_LBRC, KC_LPRN, KC_RPRN, KC_UNDS, _______,
- KC_ASTR, KC_PLUS, KC_1, KC_MINS, KC_RBRC, KC_GRV,
- KC_DLR, KC_2, KC_3, KC_4, KC_5, XXXXXXX,
- KC_FN6, KC_FN7, KC_BSLS, XXXXXXX,
- _______, _______,
- _______,
- _______, _______, _______
- ),
-
-
-/* _SYMB2ol level, more ergodox like
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | | | | | | | | | | | | | | | | |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | | | * | # | | | | | | | | | |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | | / | < | > | | | | | | + | * | | |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | | | { | } | | | | | | = | - | | |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | | = | ( | ) | | | | | | | | | | |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | | |GUI/L |L1/RT | | L1/UP|GUI/DN| { | } |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | CTRL | | | ALT | GUI |
-* ,------|------|------| |------+------+------.
-* | | | | | | | |
-* | BkSp | Del |------| |------|Mouse1|Mouse2|
-* | | |Reset | | |LClick|Rclick|
-* `--------------------' `--------------------'
-*/
-
-
-
-[_SYMB2] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, KC_ASTR, KC_HASH, _______, _______,
- _______, KC_SLSH, RSFT(KC_COMM), RSFT(KC_DOT), _______, _______,
- _______, _______, RSFT(KC_LBRC), RSFT(KC_RBRC), _______, _______,
- _______, KC_EQL, RSFT(KC_9), RSFT(KC_0), _______, _______,
- _______, _______, KC_FN4, KC_FN5,
- _______, _______,
- _______,
- _______, _______, RESET,
- _______, _______, _______, _______, _______, _______, _______, TT(_MOUSE), KC_2,
- _______, _______, _______, KC_ASTR, _______, _______,
- _______, _______, KC_PLUS, KC_MINS, _______, _______,
- _______, _______, KC_EQL, KC_PIPE, _______, _______,
- _______, _______, _______, _______, _______, _______,
- KC_FN6, KC_FN7, _______, _______,
- _______, _______,
- _______,
- _______, _______, _______
- ),
-/* Keymap: Movement and function layer
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | Caps | F1 | F2 | F3 | F4 | F5 | F6 | F8 | F9 | F10 | F12 | FN0 | FN1 | FN2 | Tada | bOOT |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | =+ | ! | @ | # | $ | % | | ^ | & | * | ( | ) |MS Fast |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | Tab | | | | |PgUp | | MwU |MS_UL | MS_U |MS_UR | | Ms Norm|
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* |MouseFN1|GUI_V |GUI X |GUI C |GUI_V | | | | MS_L |Mouse1| MS_R | |MS Slow |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | | | | | |PgDown| | MWD | MDown|MS Dwn|MS_DR | ? | |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | `~ | ESC | | | | | | { | } |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | CTRL | GUI | | ALT | GUI |
-* ,------|------|------| |------+------+------.
-* | | | Home | | PgUp | | |
-* | BkSp | Del |------| |------|Mouse1|Mouse2|
-* | | | End | | PgDn |LClick|Rclick|
-* `--------------------' `--------------------'
-*/
-
-
-[_MOUSE] = LAYOUT(
- KC_CAPS, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, KC_EXLM ,KC_AT, KC_HASH, KC_DLR ,KC_PERC ,
- _______, KC_NO, KC_NO, KC_UP, KC_NO, KC_PGUP,
- KC_FN1, LGUI(KC_Z),LGUI(KC_X),LGUI(KC_C),LGUI(KC_V), KC_NO,
- _______, KC_NO, KC_NO, KC_UP, KC_NO, KC_PGDN,
- _______, _______, KC_NO, KC_NO,
- _______, _______,
- _______,
- _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, TT(_MOUSE),RESET,
- KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_ACL2,
- KC_WH_U, M(A_MUL), KC_MS_U, M(A_MUR), KC_NO, KC_ACL1,
- KC_NO, KC_MS_L, KC_MS_D, KC_MS_R, KC_NO, KC_ACL0,
- KC_WH_D, M(A_MDL), KC_MS_D, M(A_MDR), RSFT(KC_LBRC), RSFT(KC_RBRC),
- KC_LCBR, KC_RCBR, KC_NO, KC_NO,
- _______, _______,
- _______,
- _______, KC_BTN1, KC_BTN2
- ),
-
-
-
-/* EMPTY
-*
-* ,-------------------------------------------------------------------------------------------------------------------.
-* | | | | | | | | | | | | | | | | bOOT |
-* |--------+------+------+------+------+------+---------------------------+------+------+------+------+------+--------|
-* | | | | | | | | | | | | | |
-* |--------+------+------+------+------+------| +------+------+------+------+------+--------|
-* | | | | | | | | | | | | | |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | | | | | | | | | | | | | |
-* |--------+------+------+------+------+------| |------+------+------+------+------+--------|
-* | | | | | | | | | | | | | |
-* `--------+------+------+------+------+------- `------+------+------+------+------+--------'
-* | | | | | | | | | |
-* `---------------------------' `---------------------------'
-* ,-------------. ,-------------.
-* | Ctrl | Alt | | Gui | Ctrl |
-* ,------|------|------| |------+------+------.
-* | | | Home | | PgUp | | |
-* | BkSp | Del |------| |------|Mouse1|Mouse2|
-* | | | End | | PgDn |LClick|Rclick|
-* `--------------------' `--------------------'
-*/
-
-
-
-[_TRANS] = LAYOUT(
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______,
- _______, _______,
- _______,
- _______, _______, _______,
- _______, _______, _______, _______, _______, _______, _______, TT(_MOUSE), KC_2,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______,
- _______, _______,
- _______,
- _______, _______, _______
- ),
-
-
-};
-
-
-
-const uint16_t PROGMEM fn_actions[] = {
- [1] = ACTION_LAYER_TOGGLE(_MOUSE) ,
- [5]= ACTION_LAYER_TAP_KEY(_SYMB,KC_RIGHT),
- [4]= ACTION_MODS_TAP_KEY(MOD_LGUI,KC_LEFT),
- [6]= ACTION_LAYER_TAP_KEY(_SYMB,KC_UP),
- [7]= ACTION_MODS_TAP_KEY(MOD_LGUI,KC_DOWN),
-
-
-};
-
-const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
-{
- // MACRODOWN only works in this function
- switch(id) {
- case 0:
- if (record->event.pressed) {
- register_code(KC_RSFT);
- } else {
- unregister_code(KC_RSFT);
- }
- break;
-
- // from algernon's ErgoDox EZ layout,
- case A_MUL:
- if (record->event.pressed) {
- mousekey_on(KC_MS_UP);
- mousekey_on(KC_MS_LEFT);
- } else {
- mousekey_off(KC_MS_UP);
- mousekey_off(KC_MS_LEFT);
- }
- mousekey_send();
- break;
-
- case A_MUR:
- if (record->event.pressed) {
- mousekey_on(KC_MS_UP);
- mousekey_on(KC_MS_RIGHT);
- } else {
- mousekey_off(KC_MS_UP);
- mousekey_off(KC_MS_RIGHT);
- }
- mousekey_send();
- break;
-
- case A_MDL:
- if (record->event.pressed) {
- mousekey_on(KC_MS_DOWN);
- mousekey_on(KC_MS_LEFT);
- } else {
- mousekey_off(KC_MS_DOWN);
- mousekey_off(KC_MS_LEFT);
- }
- mousekey_send();
- break;
-
- case A_MDR:
- if (record->event.pressed) {
- mousekey_on(KC_MS_DOWN);
- mousekey_on(KC_MS_RIGHT);
- } else {
- mousekey_off(KC_MS_DOWN);
- mousekey_off(KC_MS_RIGHT);
- }
- mousekey_send();
- break;
- }
- return MACRO_NONE;
-};
-
-
-void matrix_init_user(void) {
-
-
-}
-
-void matrix_scan_user(void) {
-
-#ifdef ALVICSTEP_CONFIG_H
- int8_t layer = biton32(layer_state);
-
- switch (layer) {
- case 1:
- if (!(host_keyboard_leds() & (1 << USB_LED_CAPS_LOCK))) {
- all_led_off();
- caps_lock_led_on();
- }
- break;
-
- case 2:
- if (!(host_keyboard_leds() & (1 << USB_LED_SCROLL_LOCK))) {
- all_led_off();
- scroll_lock_led_on();
- }
- case 0:
- all_led_off();
- num_lock_led_on();
- break;
- default:
- break;
- }
-#endif
-
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void led_set_user(uint8_t usb_led) {
-
-}
diff --git a/keyboards/kinesis/keymaps/milestogo/readme.md b/keyboards/kinesis/keymaps/milestogo/readme.md
deleted file mode 100644
index 76356a6871..0000000000
--- a/keyboards/kinesis/keymaps/milestogo/readme.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# a programmer friendly keymap for the kinesis-advantage
-# not really baked yet.
diff --git a/keyboards/kinesis/keymaps/milestogo/rules.mk b/keyboards/kinesis/keymaps/milestogo/rules.mk
deleted file mode 100644
index 7a331cd530..0000000000
--- a/keyboards/kinesis/keymaps/milestogo/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = yes # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/keymaps/tw1t611/config.h b/keyboards/kinesis/keymaps/tw1t611/config.h
deleted file mode 100644
index 271f48d001..0000000000
--- a/keyboards/kinesis/keymaps/tw1t611/config.h
+++ /dev/null
@@ -1,3 +0,0 @@
-#pragma once
-
-// place overrides here
diff --git a/keyboards/kinesis/keymaps/tw1t611/keymap.c b/keyboards/kinesis/keymaps/tw1t611/keymap.c
deleted file mode 100644
index ceb9d5e7d0..0000000000
--- a/keyboards/kinesis/keymaps/tw1t611/keymap.c
+++ /dev/null
@@ -1,64 +0,0 @@
-#include QMK_KEYBOARD_H
-#include "keymap_german.h"
-
-#define QWERTZ 0
-#define MOD 1
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-[QWERTZ] = LAYOUT(
- _______,KC_F1 ,KC_F2 ,KC_F3 ,KC_F4 ,KC_F5 ,KC_F6 ,KC_F7 ,KC_F8,
- _______,KC_1 ,KC_2 ,KC_3 ,KC_4 ,KC_5 ,
- KC_TAB ,KC_Q ,KC_W ,KC_E ,KC_R ,KC_T ,
- KC_ESC ,KC_A ,KC_S ,KC_D ,KC_F ,KC_G ,
- DE_HASH,KC_Z ,KC_X ,KC_C ,KC_V ,KC_B ,
- DE_TILD,DE_PIPE,DE_BSLS,DE_GRV,
- KC_RCTL,KC_LALT,
- KC_HOME,
- KC_LSFT,MO(MOD),KC_BSPC ,
- KC_F9 ,KC_F10 ,KC_F11 ,KC_F12 ,KC_PSCR,KC_SLCK,KC_PAUS,KC_FN0 ,RESET,
- KC_6 ,KC_7 ,KC_8 ,KC_9 ,KC_0 ,KC_AUDIO_MUTE,
- KC_Y ,KC_U ,KC_I ,KC_O ,KC_P ,DE_EQL ,
- KC_H ,KC_J ,KC_K ,KC_L ,DE_SLSH,DE_QUOT,
- KC_N ,KC_M ,DE_COMM,DE_DOT ,DE_MINS,DE_PLUS,
- DE_AE ,DE_OE, DE_UE, DE_SS,
- KC_LGUI,KC_LCTL,
- KC_END ,
- KC_DEL,KC_ENTER ,KC_SPC
- ),
-[MOD] = LAYOUT(
- _______,_______,_______,_______,_______,_______,_______,_______,_______,
- _______,_______,_______,_______,_______,_______,
- _______,DE_AT ,DE_EURO,DE_LBRC,DE_RBRC,_______,
- _______,DE_EXLM,DE_DLR ,DE_LPRN,DE_RPRN,_______,
- _______,DE_CIRC,DE_AMPR,DE_LCBR,DE_RCBR,_______,
- _______,_______,DE_LESS,DE_MORE,
- _______,_______,
- _______,
- _______,_______,_______,
- _______,_______,_______,_______,_______,_______,_______,_______,_______,
- _______,_______,_______,_______,_______,_______,
- _______,KC_PGDOWN,KC_PGUP,_______,_______,DE_PERC,
- KC_LEFT,KC_DOWN,KC_UP ,KC_RGHT,DE_QST ,DE_DQOT,
- _______,_______,DE_SCLN,DE_COLN,DE_UNDS,DE_ASTR,
- _______,_______,_______,_______,
- _______,_______,
- _______,
- _______,_______ ,_______
- )
-};
-
-void matrix_init_user(void) {
-
-}
-
-void matrix_scan_user(void) {
-
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- return true;
-}
-
-void led_set_user(uint8_t usb_led) {
-
-}
diff --git a/keyboards/kinesis/keymaps/tw1t611/readme.md b/keyboards/kinesis/keymaps/tw1t611/readme.md
deleted file mode 100644
index da033be1e9..0000000000
--- a/keyboards/kinesis/keymaps/tw1t611/readme.md
+++ /dev/null
@@ -1 +0,0 @@
-# The default keymap for kinesis-advantage
diff --git a/keyboards/kinesis/keymaps/tw1t611/rules.mk b/keyboards/kinesis/keymaps/tw1t611/rules.mk
deleted file mode 100644
index 7a331cd530..0000000000
--- a/keyboards/kinesis/keymaps/tw1t611/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = yes # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/keymaps/xyverz/config.h b/keyboards/kinesis/keymaps/xyverz/config.h
deleted file mode 100644
index 8893d122e0..0000000000
--- a/keyboards/kinesis/keymaps/xyverz/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef CONFIG_USER_H
-#define CONFIG_USER_H
-
-#include "../../config.h"
-
-// place overrides here
-
-#endif
diff --git a/keyboards/kinesis/keymaps/xyverz/keymap.c b/keyboards/kinesis/keymaps/xyverz/keymap.c
deleted file mode 100644
index 842645d905..0000000000
--- a/keyboards/kinesis/keymaps/xyverz/keymap.c
+++ /dev/null
@@ -1,300 +0,0 @@
-#include QMK_KEYBOARD_H
-
-extern keymap_config_t keymap_config;
-
-#define _DVORAK 0 // Dvorak layer
-#define _QWERTY 1 // Qwerty layer
-#define _COLEMAK 2 // Colemak layer
-#define _MEDIA 3 // Media Layer
-#define _KEYPAD 4 // Keypad Layer
-
-enum custom_keycodes {
- DVORAK = SAFE_RANGE,
- QWERTY,
- COLEMAK,
- MEDIA,
- KEYPAD
-};
-
-// Aliases to make the keymap more uniform
-#define GUI_END GUI_T(KC_END)
-#define MED_DEL LT(_MEDIA, KC_DEL)
-#define KPD_ENT LT(_KEYPAD, KC_ENT)
-
-/*
-
- Function Keys on All Layers (Keypad toggles):
- ,-----------------------------------------------------------------.
- | ESC | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 |
- `-----------------------------------------------------------------'
- ,-----------------------------------------------------------------.
- | F9 | F10 | F11 | F12 | PScr | SLck | Paus | Keypad | RESET |
- `-----------------------------------------------------------------'
-
- Dvorak layer:
- ,-------------------------------------------.,-------------------------------------------.
- | ] | 1 | 2 | 3 | 4 | 5 || 6 | 7 | 8 | 9 | 0 | [ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | ' | , | . | P | Y || F | G | C | R | L | \ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | CapsLk | A | O | E | U | I || D | H | T | N | S | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | X || B | M | W | V | Z | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | INS | Left | Rght | | Up | Dn | / | = |
- `---------------------------' `---------------------------'
- ,--------------.,--------------.
- | LCtl | LAlt || RGUI | RCtl |
- ,------|-------|------||------+-------+-------.
- | | Del | Home || PgUp | Enter | |
- | BkSp | / |------||------| / | Space |
- | | Media | End || PgDn | KeyPd | |
- `---------------------'`----------------------'
-
- QWERTY layer:
- ,-------------------------------------------.,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 || 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T || Y | U | I | O | P | \ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | CapsLk | A | S | D | F | G || H | J | K | L | ; | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | B || N | M | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | INS | Left | Rght | | Up | Dn | [ | ] |
- `---------------------------' `---------------------------'
- ,--------------.,--------------.
- | LCtl | LAlt || RGUI | RCtl |
- ,------|-------|------||------+-------+-------.
- | | Del | Home || PgUp | Enter | |
- | BkSp | / |------||------| / | Space |
- | | Media | End || PgDn | KeyPd | |
- `---------------------'`----------------------'
-
- Colemak layer:
- ,-------------------------------------------.,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 || 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | W | F | P | G || J | L | U | Y | ; | \ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | BkSpc | A | R | S | T | D || H | N | E | I | O | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | B || K | M | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | INS | Left | Rght | | Up | Dn | [ | ] |
- `---------------------------' `---------------------------'
- ,--------------.,--------------.
- | LCtl | LAlt || RGUI | RCtl |
- ,------|-------|------||------+-------+-------.
- | | Del | Home || PgUp | Enter | |
- | BkSp | / |------||------| / | Space |
- | | Media | End || PgDn | KeyPd | |
- `---------------------'`----------------------'
-
- Media layer:
- ,-------------------------------------------.,-------------------------------------------.
- | F11 | F1 | F2 | F3 | F4 | F5 || F6 | F7 | F8 | F9 | F10 | F12 |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | | | | || | | | | | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | Mute | Vol- | Vol+ | || | | | | | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | Stop | Prev | Play | Next | Sel || | | | | | |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | | | | | | | | | |
- `---------------------------' `---------------------------'
- ,-------------.,-------------.
- | | || | |
- ,------|------|------||------+------+------.
- | | | || | | |
- | | |------||------| | |
- | | | || | | |
- `--------------------'`--------------------'
-
- Keypad layer:
- ,-------------------------------------------.,-------------------------------------------.
- | Power | | | | | || | NmLk | KP = | KP / | KP * | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Sleep | | | | | || | KP 7 | KP 8 | KP 9 | KP - | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Wake | | Mute | Vol- | Vol+ | || | KP 4 | KP 5 | KP 6 | KP + | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | Stop | Prev | Play | Next | Sel || | KP 1 | KP 2 | KP 3 |KP Ent| |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | |QWERTY|Colemk|Dvorak| | | | KP . |KP Ent|
- `---------------------------' `---------------------------'
- ,-------------.,-------------.
- | | || | |
- ,------|------|------||------+------+------.
- | | | || | | |
- | | |------||------| | KP 0 |
- | | | || | | |
- `--------------------'`--------------------'
-*/
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
-[_DVORAK] = LAYOUT (
- // Left Hand
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8,
- KC_RBRC, KC_1, KC_2, KC_3, KC_4, KC_5,
- KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y,
- KC_CAPS, KC_A, KC_O, KC_E, KC_U, KC_I,
- KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X,
- KC_GRV, KC_INS, KC_LEFT, KC_RGHT,
- // Left Thumb
- KC_LCTL, KC_LALT,
- KC_HOME,
- KC_BSPC, MED_DEL, GUI_END,
-
- // Right Hand
- KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, TG(_KEYPAD), RESET,
- KC_6, KC_7, KC_8, KC_9, KC_0, KC_LBRC,
- KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSLS,
- KC_D, KC_H, KC_T, KC_N, KC_S, KC_MINS,
- KC_B, KC_M, KC_W, KC_V, KC_Z, KC_RSFT,
- KC_UP, KC_DOWN, KC_SLSH, KC_EQL,
- // Right Thumb
- KC_RGUI, KC_RCTL,
- KC_PGUP,
- KC_PGDN, KPD_ENT, KC_SPC
- ),
-
-[_QWERTY] = LAYOUT (
- // Left Hand
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5,
- KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T,
- KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B,
- KC_GRV, KC_INS, KC_LEFT, KC_RGHT,
- // Left Thumb
- KC_LCTL, KC_LALT,
- KC_HOME,
- KC_BSPC, MED_DEL, KC_END,
-
- // Right Hand
- KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, TG(_KEYPAD), RESET,
- KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSLS,
- KC_Y, KC_U, KC_I, KC_O, KC_P, KC_DEL ,
- KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
- KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- KC_UP, KC_DOWN, KC_LBRC, KC_RBRC,
- // Right Thumb
- KC_RGUI, KC_RCTL,
- KC_PGUP,
- KC_PGDN, KPD_ENT, KC_SPC
- ),
-
-[_COLEMAK] = LAYOUT (
- // Left Hand
- KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8,
- KC_EQL, KC_1, KC_2, KC_3, KC_4, KC_5,
- KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G,
- KC_BSPC, KC_A, KC_R, KC_S, KC_T, KC_D,
- KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B,
- KC_GRV, KC_INS, KC_LEFT, KC_RGHT,
- // Left Thumb
- KC_LCTL, KC_LALT,
- KC_HOME,
- KC_BSPC, MED_DEL, KC_END,
-
- // Right Hand
- KC_F9, KC_F10, KC_F11, KC_F12, KC_PSCR, KC_SLCK, KC_PAUS, TG(_KEYPAD), RESET,
- KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
- KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_DEL,
- KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
- KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
- KC_UP, KC_DOWN, KC_LBRC, KC_RBRC,
- // Right Thumb
- KC_RGUI, KC_RCTL,
- KC_PGUP,
- KC_PGDN, KPD_ENT, KC_SPC
- ),
-
-[_MEDIA] = LAYOUT (
- // Left Hand
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_F11, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5,
- _______, _______, _______, _______, _______, _______,
- _______, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______,
- _______, KC_MSTP, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSEL,
- _______, _______, _______, _______,
- // Left Thumb
- _______, _______,
- _______,
- _______, _______, _______,
-
- // Right Hand
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F12,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______, _______, _______,
- _______, _______, _______, _______,
- // Right Thumb
- _______, _______,
- _______,
- _______, _______, _______
- ),
-
-[_KEYPAD] = LAYOUT (
- // Left Hand
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- KC_PWR, _______, _______, _______, _______, _______,
- KC_SLEP, _______, _______, _______, _______, _______,
- KC_WAKE, _______, KC_MUTE, KC_VOLD, KC_VOLU, _______,
- _______, KC_MSTP, KC_MPRV, KC_MPLY, KC_MNXT, KC_MSEL,
- _______, QWERTY, COLEMAK, DVORAK,
- // Left Thumb
- _______, _______,
- _______,
- _______, _______, _______,
-
- // Right Hand */
- _______, _______, _______, _______, _______, _______, _______, _______, _______,
- _______, KC_NLCK, KC_PEQL, KC_PSLS, KC_PAST, _______,
- _______, KC_P7, KC_P8, KC_P9, KC_PMNS, _______,
- _______, KC_P4, KC_P5, KC_P6, KC_PPLS, _______,
- _______, KC_P1, KC_P2, KC_P3, KC_PENT, _______,
- _______, _______, KC_PDOT, KC_PENT,
- // Right Thumb
- _______, _______,
- _______,
- _______, _______, KC_P0
- )
-
-};
-
-void persistent_default_layer_set(uint16_t default_layer) {
- eeconfig_update_default_layer(default_layer);
- default_layer_set(default_layer);
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case DVORAK:
- if (record->event.pressed) {
- persistent_default_layer_set(1UL<<_DVORAK);
- }
- return false;
- break;
- case QWERTY:
- if (record->event.pressed) {
- persistent_default_layer_set(1UL<<_QWERTY);
- }
- return false;
- break;
- case COLEMAK:
- if (record->event.pressed) {
- persistent_default_layer_set(1UL<<_COLEMAK);
- }
- return false;
- break;
- }
- return true;
-};
-
-// Runs just one time when the keyboard initializes.
-void matrix_init_user(void) {
-};
diff --git a/keyboards/kinesis/keymaps/xyverz/readme.md b/keyboards/kinesis/keymaps/xyverz/readme.md
deleted file mode 100644
index b55100d25b..0000000000
--- a/keyboards/kinesis/keymaps/xyverz/readme.md
+++ /dev/null
@@ -1,130 +0,0 @@
-# Xyverz's Kinesis Keymap
-
-## About this keymap:
-
-The Dvorak layout shown here stems from my early Kinesis years, using the Contour PS/2 with a Dvorak software layout. Because of this, the RBRC and LBRC were on opposite sides of the board in the corner keys. I've decided to continue using this layout with my QMK Kinesis.
-
-The QWERTY layout shown here is based entirely on the Kinesis Advantage layout. The Colemak layout is merely an adaptation of that.
-
-I've enabled persistent keymaps for Qwerty, Dvorak and Colemak layers, similar to the default Planck layouts.
-
-Depending on the OS, most of the LEDs are now working in this keymap, but I still have yet to get the Num Pad LED working when switching to the Numpad layer.
-
-## Still to do:
-
- * Figure out how to make the Numpad LED work properly.
-
-### Function Keys on All Layers (`keypad` toggles to the keypad layer):
- ,-----------------------------------------------------------------.
- | Esc | F1 | F2 | F3 | F4 | F5 | F6 | F7 | F8 |
- `-----------------------------------------------------------------'
- ,-----------------------------------------------------------------.
- | F9 | F10 | F11 | F12 | PScr | SLck | Paus | Keypad | Reset |
- `-----------------------------------------------------------------'
-
-### Layer 0: Dvorak layer
-
- ,-------------------------------------------.,-------------------------------------------.
- | ] | 1 | 2 | 3 | 4 | 5 || 6 | 7 | 8 | 9 | 0 | [ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | ' | , | . | P | Y || F | G | C | R | L | \ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | CapsLk | A | O | E | U | I || D | H | T | N | S | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | X || B | M | W | V | Z | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | INS | Left | Rght | | Up | Dn | / | = |
- `---------------------------' `---------------------------'
- ,--------------.,--------------.
- | LCtl | LAlt || RGUI | RCtl |
- ,------|-------|------||------+-------+-------.
- | | Del | Home || PgUp | Enter | |
- | BkSp | / |------||------| / | Space |
- | | Media | End || PgDn | KeyPd | |
- `---------------------'`----------------------'
-
-### Layer 1: QWERTY layer
-
- ,-------------------------------------------.,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 || 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | W | E | R | T || Y | U | I | O | P | \ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | CapsLk | A | S | D | F | G || H | J | K | L | ; | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | B || N | M | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | Ins | Left | Rght | | Up | Dn | [ | ] |
- `---------------------------' `---------------------------'
- ,--------------.,--------------.
- | LCtl | LAlt || RGUI | RCtl |
- ,------|-------|------||------+-------+-------.
- | | Del | Home || PgUp | Enter | |
- | BkSp | / |------||------| / | Space |
- | | Media | End || PgDn | KeyPd | |
- `---------------------'`----------------------'
-
-### Keymap 2: Colemak layer
-
- ,-------------------------------------------.,-------------------------------------------.
- | = | 1 | 2 | 3 | 4 | 5 || 6 | 7 | 8 | 9 | 0 | - |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Tab | Q | W | F | P | G || J | L | U | Y | ; | \ |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | BkSpc | A | R | S | T | D || H | N | E | I | O | ' |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | LShift | Z | X | C | V | B || K | M | , | . | / | RShift |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | ` | Ins | Left | Rght | | Up | Dn | [ | ] |
- `---------------------------' `---------------------------'
- ,--------------.,--------------.
- | LCtl | LAlt || RGUI | RCtl |
- ,------|-------|------||------+-------+-------.
- | | Del | Home || PgUp | Enter | |
- | BkSp | / |------||------| / | Space |
- | | Media | End || PgDn | KeyPd | |
- `---------------------'`----------------------'
-
-### layer 3 : Media layer
-
- ,-------------------------------------------.,-------------------------------------------.
- | F11 | F1 | F2 | F3 | F4 | F5 || F6 | F7 | F8 | F9 | F10 | F12 |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | | | | || | | | | | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | | Mute | Vol- | Vol+ | || | | | | | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | Stop | Prev | Play | Next | Sel || | | | | | |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | | | | | | | | | |
- `---------------------------' `---------------------------'
- ,-------------.,-------------.
- | | || | |
- ,------|------|------||------+------+------.
- | | | || | | |
- | | |------||------| | |
- | | | || | | |
- `--------------------'`--------------------'
-
-
-
-### Keymap 4: Keypad layer
-
- ,-------------------------------------------.,-------------------------------------------.
- | Power | | | | | || | NmLk | KP = | KP / | KP * | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Sleep | | | | | || | KP 7 | KP 8 | KP 9 | KP - | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | Wake | | Mute | Vol- | Vol+ | || | KP 4 | KP 5 | KP 6 | KP + | |
- |--------+------+------+------+------+------||------+------+------+------+------+--------|
- | | Stop | Prev | Play | Next | Sel || | KP 1 | KP 2 | KP 3 |KP Ent| |
- `--------+------+------+------+------+------'`------+------+------+------+------+--------'
- | |QWERTY|Colemk|Dvorak| | | | KP . |KP Ent|
- `---------------------------' `---------------------------'
- ,-------------.,-------------.
- | | || | |
- ,------|------|------||------+------+------.
- | | | || | | |
- | | |------||------| | KP 0 |
- | | | || | | |
- `--------------------'`--------------------'
diff --git a/keyboards/kinesis/keymaps/xyverz/rules.mk b/keyboards/kinesis/keymaps/xyverz/rules.mk
deleted file mode 100644
index f21a27feac..0000000000
--- a/keyboards/kinesis/keymaps/xyverz/rules.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# Build Options
-# change to "no" to disable the options, or define them in the Makefile in
-# the appropriate keymap folder that will get included automatically
-#
-BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = no # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = no # Commands for debug and configuration
-NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
-MIDI_ENABLE = no # MIDI controls
-AUDIO_ENABLE = no # Audio output on port C6
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight.
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-
diff --git a/keyboards/kinesis/kinesis.c b/keyboards/kinesis/kinesis.c
deleted file mode 100644
index 7a6a1be544..0000000000
--- a/keyboards/kinesis/kinesis.c
+++ /dev/null
@@ -1 +0,0 @@
-#include "kinesis.h"
diff --git a/keyboards/kinesis/kinesis.h b/keyboards/kinesis/kinesis.h
deleted file mode 100644
index 94e913ebd9..0000000000
--- a/keyboards/kinesis/kinesis.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef KINESIS_H
-#define KINESIS_H
-
-#ifdef KEYBOARD_kinesis_alvicstep
- #include "alvicstep.h"
-#endif
-#ifdef KEYBOARD_kinesis_stapelberg
- #include "stapelberg.h"
-#endif
-
-#include "quantum.h"
-
-
-void all_led_off(void);
-void all_led_on(void);
-void num_lock_led_on(void);
-void caps_lock_led_on(void);
-void scroll_lock_led_on(void);
-void keypad_led_on(void);
-
-
-
-#endif
diff --git a/keyboards/kinesis/readme.md b/keyboards/kinesis/readme.md
deleted file mode 100644
index 3802f50c9a..0000000000
--- a/keyboards/kinesis/readme.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# Firmware for the Kinesis Advantage/Contoured keyboard
-
-There are at least two different ways to replace the controller in this keyboard.
-
-The Stapelberg folder contains the docs and configuration for using the custom controller created by Michael Stapelberg.
-
-The alvicstep folder contains docs and configuration for directly wiring a Teensy2++ to the existing controller board. This follows the pinouts described in https://github.com/alvicstep/tmk_keyboard, which is where the name comes from.
-
-## Keymaps
-Both hardware solutions should work with the same keymaps
-
-
diff --git a/keyboards/kinesis/rules.mk b/keyboards/kinesis/rules.mk
deleted file mode 100644
index c8646449bd..0000000000
--- a/keyboards/kinesis/rules.mk
+++ /dev/null
@@ -1,75 +0,0 @@
-
-## Project specific files
-
-SRC= matrix.c
-
-# MCU name
-MCU = at90usb1286
-#MCU = atmega32u4
-
-# Processor frequency.
-# This will define a symbol, F_CPU, in all source code files equal to the
-# processor frequency in Hz. You can then use this symbol in your source code to
-# calculate timings. Do NOT tack on a 'UL' at the end, this will be done
-# automatically to create a 32-bit value in your source code.
-#
-# This will be an integer division of F_USB below, as it is sourced by
-# F_USB after it has run through any CPU prescalers. Note that this value
-# does not *change* the processor frequency - it should merely be updated to
-# reflect the processor speed set externally so that the code can use accurate
-# software delays.
-F_CPU = 16000000
-
-
-#
-# LUFA specific
-#
-# Target architecture (see library "Board Types" documentation).
-ARCH = AVR8
-
-# Input clock frequency.
-# This will define a symbol, F_USB, in all source code files equal to the
-# input clock frequency (before any prescaling is performed) in Hz. This value may
-# differ from F_CPU if prescaling is used on the latter, and is required as the
-# raw input clock is fed directly to the PLL sections of the AVR for high speed
-# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
-# at the end, this will be done automatically to create a 32-bit value in your
-# source code.
-#
-# If no clock division is performed on the input clock inside the AVR (via the
-# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
-F_USB = $(F_CPU)
-
-# Interrupt driven control endpoint task(+60)
-OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
-
-
-# Boot Section Size in *bytes*
-# Teensy halfKay 512
-# Teensy++ halfKay 2048
-# Atmel DFU loader 4096
-# LUFA bootloader 4096
-# USBaspLoader 2048
-OPT_DEFS += -DBOOTLOADER_SIZE=2048
-
-
-# Build Options
-# change yes to no to disable
-#
-BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
-MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
-EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
-CONSOLE_ENABLE = no # Console for debug(+400)
-COMMAND_ENABLE = no
-# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
-SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
-# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
-NKRO_ENABLE = no # USB Nkey Rollover
-BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default
-MIDI_ENABLE = no # MIDI controls
-UNICODE_ENABLE = no # Unicode
-BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
-AUDIO_ENABLE = no # Audio output should be port E6, current quantum library hardcodes C6, which we use for programming
-CUSTOM_MATRIX=yes # need to do our own thing with the matrix
-
-DEFAULT_FOLDER = kinesis/alvicstep \ No newline at end of file
diff --git a/keyboards/kinesis/stapelberg/config.h b/keyboards/kinesis/stapelberg/config.h
deleted file mode 100644
index 321aec5eb2..0000000000
--- a/keyboards/kinesis/stapelberg/config.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef STAPELBERG_CONFIG_H
-#define STAPELBERG_CONFIG_H
-
-#include "../config.h"
-
-/* USB Device descriptor parameter */
-#define PRODUCT_ID 0x6060
-#define DEVICE_VER 0x0002
-
-/* key matrix size */
-#define MATRIX_ROWS 15
-#define MATRIX_COLS 7
-
-/*
- * Keyboard Matrix Assignments
- *
- * Change this to how you wired your keyboard
- * COLS: AVR pins used for columns, left to right
- * ROWS: AVR pins used for rows, top to bottom
- * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
- * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
- *
-*/
-#define MATRIX_ROW_PINS { D0, D1, D2, D3, D4, D5, D6, D7, C0, C1, C2, C3, C4, C5, C6 }
-#define MATRIX_COL_PINS { B0, B1, B2, B3, B4, B5, B6 }
-#define UNUSED_PINS
-
-/* COL2ROW or ROW2COL */
-#define DIODE_DIRECTION COL2ROW
-
-
-/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
-#define DEBOUNCING_DELAY 5
-
-/* don't know if this should be defined at the board or top level. Assuming board
-#define MOUSEKEY_DELAY 100
-#define MOUSEKEY_INTERVAL 20
-#define MOUSEKEY_MAX_SPEED 3
-#define MOUSEKEY_TIME_TO_MAX 10
-*/
-
-#define IGNORE_MOD_TAP_INTERRUPT
-
-#endif
diff --git a/keyboards/kinesis/stapelberg/readme.md b/keyboards/kinesis/stapelberg/readme.md
deleted file mode 100644
index 37b26623f2..0000000000
--- a/keyboards/kinesis/stapelberg/readme.md
+++ /dev/null
@@ -1,53 +0,0 @@
-# kinesis_stapelberg keyboard firmware
-
-This folder contains the firmware customization required to run QMK on the custom controller for the Kinesis Advantage created by Michael Stapelberg.
-It differs from the `alvicstep` keyboard in that the existing QMK Kinesis Advantage project uses the existing controller board provided by Kinesis.
-
-The controller board hardware is described
-[here](http://michael.stapelberg.de/Artikel/kinesis_custom_controller)
-
-Mapping the pin assignments was done using the corresponding matrix description provided at this
-[link](https://github.com/stapelberg/kinesis-firmware/blob/master/kb_kinesis/config.kspec)
-
-This code makes no attempt to drive the four LEDs provided on the controller board.
-
-
-## Building the Hardware
-
-If you want to perform this customization, these parts may be helpful.
-
-| Function | Quantity | Vendor | Part Number |
-| ------------------------------------------------------ | -------- | ------- | ------------ |
-| 13 pin connector for function keys and finger keywells | 4 | Digi-Key | WM14526-ND |
-| 10 pin headers for thumb clusters | 4 | Digi-Key | 609-3250-ND |
-| 8 pin cable for thumb clusters | 2 | Digi-Key | SAM8928-ND |
-| Teensy++ 2.0 | 1 | Digi-Key | 1528-1056-ND |
-| 2 pin right angle header for reset | 1 | Digi-Key | 3M9467-ND |
-| Reset cables | 2 | Sparkfun | PRT-09140 |
-
-The board and connections are shown here
-![controller board](https://i.imgur.com/2ZPMwvZ.jpg)
-
-The Teensy mounting detail can be seen here.
-I used a socket for prototyping.
-![teensy detail](https://i.imgur.com/HrkGUjc.jpg)
-
-
-Since the proper mounting of the Teensy board places the reset button in a tight space, I added a 2-pin header to the reset and ground pins on the edge of the board.
-Shorting these two pins together will reset the board.
-I also put female to male header jumper cables on these so they could be accessed outside the enclosure.
-The exterior cables can be seen here.
-![exterior reset](https://i.imgur.com/JNoxI40.jpg)
-
-
-## Keymaps
-
-### Default
-
-To build with the default keymap, run `make kinesis/stapelberg` while in the QMK directory.
-
-### Dvorak
-
-This keymap contains a dvorak implementation as well as media and symbol layers.
-
-Run `make kinesis/stapelberg:dvorak` while in the QMK directory.
diff --git a/keyboards/kinesis/stapelberg/rules.mk b/keyboards/kinesis/stapelberg/rules.mk
deleted file mode 100644
index 3f2ff2d6cc..0000000000
--- a/keyboards/kinesis/stapelberg/rules.mk
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/keyboards/kinesis/stapelberg/stapelberg.c b/keyboards/kinesis/stapelberg/stapelberg.c
deleted file mode 100644
index af407ac4fc..0000000000
--- a/keyboards/kinesis/stapelberg/stapelberg.c
+++ /dev/null
@@ -1,61 +0,0 @@
-#include "stapelberg.h"
-
-void matrix_init_kb(void) {
- // put your keyboard start-up code here
- // runs once when the firmware starts up
- // * Set our LED pins as output
- DDRF |= (1<<0); // Keypad LED
- DDRF |= (1<<1); // ScrLock LED
- DDRF |= (1<<2); // NumLock LED
- DDRF |= (1<<3); // CapsLock LED
-
- matrix_init_user();
-}
-
-void matrix_scan_kb(void) {
- // put your looping keyboard code here
- // runs every cycle (a lot)
-
- matrix_scan_user();
-}
-
-bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
- // put your per-action keyboard code here
- // runs for every action, just before processing by the firmware
-
- return process_record_user(keycode, record);
-}
-
-void led_init_ports() {
- // * Set our LED pins as output
- DDRF |= (1<<0); // Keypad LED
- DDRF |= (1<<1); // ScrLock LED
- DDRF |= (1<<2); // NumLock LED
- DDRF |= (1<<3); // CapsLock LED
-}
-
-void led_set_kb(uint8_t usb_led) {
- if (usb_led & (1<<USB_LED_COMPOSE)) {
- PORTF &= ~(1<<0);
- } else {
- PORTF |= (1<<0);
- }
-
- if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
- PORTF &= ~(1<<1);
- } else {
- PORTF |= (1<<1);
- }
-
- if (usb_led & (1<<USB_LED_NUM_LOCK)) {
- PORTF &= ~(1<<2);
- } else {
- PORTF |= (1<<2);
- }
-
- if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
- PORTF &= ~(1<<3);
- } else {
- PORTF |= (1<<3);
- }
-}
diff --git a/keyboards/kinesis/stapelberg/stapelberg.h b/keyboards/kinesis/stapelberg/stapelberg.h
deleted file mode 100644
index e35e2f5db8..0000000000
--- a/keyboards/kinesis/stapelberg/stapelberg.h
+++ /dev/null
@@ -1,104 +0,0 @@
-#ifndef KINESIS_STAPELBERG_H
-#define KINESIS_STAPELBERG_H
-
-#include "quantum.h"
-
-#define ___ KC_NO
-
-// This a shortcut to help you visually see your layout.
-// The first section contains all of the arguments as on the physical keyboard
-// The second converts the arguments into the 2-D scanned array
-
-#define LAYOUT( \
- kC0, kD0, kE0, kC1, kD1, kE1, kC2, kD2, kE2, \
- k00, k10, k20, k30, k40, k50, \
- k01, k11, k21, k31, k41, k51, \
- k02, k12, k22, k32, k42, k52, \
- k03, k13, k23, k33, k43, k53, \
- k14, k24, k34, k54, \
- k56, k55, \
- k35, \
- k36, k46, k25, \
- \
- kC3, kD3, kE3, kC4, kD4, kE4, kC5, kE5, kD5, \
- k60, k70, k80, k90, kA0, kB0, \
- k61, k71, k81, k91, kA1, kB1, \
- k62, k72, k82, k92, kA2, kB2, \
- k63, k73, k83, k93, kA3, kB3, \
- k64, k84, k94, kA4, \
- k96, k85, \
- k86, \
- k66, k75, k65 \
-) { \
- { k00, k01, k02, k03, ___, ___, ___ }, \
- { k10, k11, k12, k13, k14, ___, ___ }, \
- { k20, k21, k22, k23, k24, k25, ___ }, \
- { k30, k31, k32, k33, k34, k35, k36 }, \
- { k40, k41, k42, k43, ___, ___, k46 }, \
- { k50, k51, k52, k53, k54, k55, k56 }, \
- { k60, k61, k62, k63, k64, k65, k66 }, \
- { k70, k71, k72, k73, ___, k75, ___ }, \
- { k80, k81, k82, k83, k84, k85, k86 }, \
- { k90, k91, k92, k93, k94, ___, k96 }, \
- { kA0, kA1, kA2, kA3, kA4, ___, ___ }, \
- { kB0, kB1, kB2, kB3, ___, ___, ___ }, \
- { kC0, kC1, kC2, kC3, kC4, kC5, ___ }, \
- { kD0, kD1, kD2, kD3, kD4, kD5, ___ }, \
- { kE0, kE1, kE2, kE3, kE4, kE5, ___ } \
-}
-
-/* ---------------- LEFT HAND ----------------- ---------------- RIGHT HAND ---------------- */
-#define LAYOUT_pretty( \
- kC0, kD0, kE0, kC1, kD1, kE1, kC2, kD2, kE2, kC3, kD3, kE3, kC4, kD4, kE4, kC5, kE5, kD5, \
- k00, k10, k20, k30, k40, k50, k60, k70, k80, k90, kA0, kB0, \
- k01, k11, k21, k31, k41, k51, k61, k71, k81, k91, kA1, kB1, \
- k02, k12, k22, k32, k42, k52, k62, k72, k82, k92, kA2, kB2, \
- k03, k13, k23, k33, k43, k53, k63, k73, k83, k93, kA3, kB3, \
- k14, k24, k34, k54, k64, k84, k94, kA4, \
- k56, k55, k96, k85, \
- k35, k86, \
- k36, k46, k25, k66, k75, k65 \
-) { \
- { k00, k01, k02, k03, ___, ___, ___ }, \
- { k10, k11, k12, k13, k14, ___, ___ }, \
- { k20, k21, k22, k23, k24, k25, ___ }, \
- { k30, k31, k32, k33, k34, k35, k36 }, \
- { k40, k41, k42, k43, ___, ___, k46 }, \
- { k50, k51, k52, k53, k54, k55, k56 }, \
- { k60, k61, k62, k63, k64, k65, k66 }, \
- { k70, k71, k72, k73, ___, k75, ___ }, \
- { k80, k81, k82, k83, k84, k85, k86 }, \
- { k90, k91, k92, k93, k94, ___, k96 }, \
- { kA0, kA1, kA2, kA3, kA4, ___, ___ }, \
- { kB0, kB1, kB2, kB3, ___, ___, ___ }, \
- { kC0, kC1, kC2, kC3, kC4, kC5, ___ }, \
- { kD0, kD1, kD2, kD3, kD4, kD5, ___ }, \
- { kE0, kE1, kE2, kE3, kE4, kE5, ___ } \
-}
-
-/*
-This is the Stapelberg matrix as published at
-https://github.com/stapelberg/kinesis-firmware/blob/master/kb_kinesis/config.kspec
-Along with the pins for each row and column
- PB0 PB1 PB2 PB3 PB4 PB5 PB6
- kx0 kx1 kx2 kx3 kx4 kx5 kx6
-PD0 k0x Row: EQL TAB CAP LSH X2 -- --
-PD1 k1x Row: 1 Q A Z BQ -- --
-PD2 k2x Row: 2 W S X INS END --
-PD3 k3x Row: 3 E D C LFT HOM BAK
-PD4 k4x Row: 4 R F V -- -- DEL
-PD5 k5x Row: 5 T G B RT LAL LCT
-PD6 k6x Row: 6 Y H N UP SPC PGD
-PD7 k7x Row: 7 U J M -- RET --
-PC0 k8x Row: 8 I K COM DWN RCT PGU
-PC1 k9x Row: 9 O L PER LBR -- RAL
-PC2 kAx Row: 0 P SEM SLA RBR -- --
-PC3 kBx Row: MIN BSL APO RSH X1 -- --
-PC4 kCx Row: ESC F3 F6 F9 F12 PAU --
-PC5 kDx Row: F1 F4 F7 F10 PRT PRG --
-PC6 kEx Row: F2 F5 F8 F11 SLK KEY --
-*/
-
-
-
-#endif