aboutsummaryrefslogtreecommitdiff
path: root/keyboards/2key2crawl
diff options
context:
space:
mode:
authorAkshay <[email protected]>2022-04-10 12:13:40 +0100
committerAkshay <[email protected]>2022-04-10 12:13:40 +0100
commitdc90387ce7d8ba7b607d9c48540bf6d8b560f14d (patch)
tree4ccb8fa5886b66fa9d480edef74236c27f035e16 /keyboards/2key2crawl
Diffstat (limited to 'keyboards/2key2crawl')
-rw-r--r--keyboards/2key2crawl/2key2crawl.c1
-rw-r--r--keyboards/2key2crawl/2key2crawl.h12
-rw-r--r--keyboards/2key2crawl/config.h43
-rw-r--r--keyboards/2key2crawl/info.json23
-rw-r--r--keyboards/2key2crawl/keymaps/default/keymap.c28
-rw-r--r--keyboards/2key2crawl/keymaps/tabs/keymap.c26
-rw-r--r--keyboards/2key2crawl/keymaps/vol/keymap.c26
-rw-r--r--keyboards/2key2crawl/readme.md16
-rw-r--r--keyboards/2key2crawl/rules.mk19
9 files changed, 194 insertions, 0 deletions
diff --git a/keyboards/2key2crawl/2key2crawl.c b/keyboards/2key2crawl/2key2crawl.c
new file mode 100644
index 000000000..fe2161bef
--- /dev/null
+++ b/keyboards/2key2crawl/2key2crawl.c
@@ -0,0 +1 @@
#include "2key2crawl.h"
diff --git a/keyboards/2key2crawl/2key2crawl.h b/keyboards/2key2crawl/2key2crawl.h
new file mode 100644
index 000000000..6e8ee6420
--- /dev/null
+++ b/keyboards/2key2crawl/2key2crawl.h
@@ -0,0 +1,12 @@
1#pragma once
2
3#include "quantum.h"
4
5#define LAYOUT( \
6 K00, K01, K02, K03, K15, \
7 K10, K11, K12, K13, K14, K16 \
8) { \
9 { K00, K01, K02, K03, KC_NO, KC_NO, KC_NO }, \
10 { K10, K11, K12, K13, K14, K15, K16 }, \
11}
12
diff --git a/keyboards/2key2crawl/config.h b/keyboards/2key2crawl/config.h
new file mode 100644
index 000000000..27a94a00c
--- /dev/null
+++ b/keyboards/2key2crawl/config.h
@@ -0,0 +1,43 @@
1#pragma once
2
3#include "config_common.h"
4
5/* USB Device descriptor parameter */
6#define VENDOR_ID 0xFEED
7#define PRODUCT_ID 0x6090
8#define DEVICE_VER 0x0002
9#define MANUFACTURER WoodKeys.click
10#define PRODUCT 2Key2Crawl
11
12/* key matrix size */
13#define MATRIX_ROWS 2
14#define MATRIX_COLS 7
15
16/* key matrix pins */
17#define MATRIX_ROW_PINS { C4, C5 }
18#define MATRIX_COL_PINS { B3, B4, B5, B6, B7, C7, B2 }
19#define UNUSED_PINS
20
21
22#define ENCODERS_PAD_A { D0 }
23#define ENCODERS_PAD_B { D1 }
24#define ENCODER_RESOLUTION 1
25
26/* COL2ROW or ROW2COL */
27#define DIODE_DIRECTION COL2ROW
28
29/* Set 0 if debouncing isn't needed */
30#define DEBOUNCE 5
31
32/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
33#define LOCKING_SUPPORT_ENABLE
34
35/* Locking resynchronize hack */
36#define LOCKING_RESYNC_ENABLE
37
38
39#ifdef RGBLIGHT_ENABLE
40#define RGB_DI_PIN C6
41#define RGBLIGHT_ANIMATIONS
42#define RGBLED_NUM 3
43#endif
diff --git a/keyboards/2key2crawl/info.json b/keyboards/2key2crawl/info.json
new file mode 100644
index 000000000..cc48e8113
--- /dev/null
+++ b/keyboards/2key2crawl/info.json
@@ -0,0 +1,23 @@
1{
2 "keyboard_name": "2Key2CrawlPad",
3 "url": "",
4 "maintainer": "qmk",
5 "layouts": {
6 "LAYOUT": {
7 "layout": [
8 {"label":"K00", "x":0, "y":0},
9 {"label":"K01", "x":1, "y":0},
10 {"label":"K02", "x":2, "y":0},
11 {"label":"K03", "x":3, "y":0},
12 {"label":"K15", "x":4, "y":0},
13
14 {"label":"K10", "x":0, "y":1},
15 {"label":"K11", "x":1, "y":1},
16 {"label":"K12", "x":2, "y":1},
17 {"label":"K13", "x":3, "y":1},
18 {"label":"K14", "x":4, "y":1},
19 {"label":"K16", "x":5.5, "y":0.5}
20 ]
21 }
22 }
23}
diff --git a/keyboards/2key2crawl/keymaps/default/keymap.c b/keyboards/2key2crawl/keymaps/default/keymap.c
new file mode 100644
index 000000000..3e36b6070
--- /dev/null
+++ b/keyboards/2key2crawl/keymaps/default/keymap.c
@@ -0,0 +1,28 @@
1#include QMK_KEYBOARD_H
2
3const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4
5LAYOUT(
6 KC_1, KC_2, KC_3, KC_4, KC_5,
7 KC_6, KC_7, KC_8, KC_9, KC_0, KC_ENTER),
8
9};
10
11void matrix_init_user(void) {
12 debug_config.matrix = 1;
13 debug_config.keyboard = 1;
14 debug_config.enable = 1;
15}
16
17
18
19bool encoder_update_user(uint8_t index, bool clockwise) {
20 if (index == 0) {
21 if (clockwise) {
22 tap_code(KC_PGUP);
23 } else {
24 tap_code(KC_PGDN);
25 }
26 }
27 return true;
28}
diff --git a/keyboards/2key2crawl/keymaps/tabs/keymap.c b/keyboards/2key2crawl/keymaps/tabs/keymap.c
new file mode 100644
index 000000000..9066c3f2e
--- /dev/null
+++ b/keyboards/2key2crawl/keymaps/tabs/keymap.c
@@ -0,0 +1,26 @@
1#include QMK_KEYBOARD_H
2
3const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4
5LAYOUT(
6 KC_1, KC_2, KC_3, KC_4, KC_5,
7 KC_6, KC_7, KC_8, KC_9, KC_0, KC_ENTER),
8
9};
10
11void matrix_init_user(void) {
12 debug_config.matrix = 1;
13 debug_config.keyboard = 1;
14 debug_config.enable = 1;
15}
16
17bool encoder_update_user(uint8_t index, bool clockwise) {
18 if (index == 0) {
19 if (clockwise) {
20 tap_code16(C(KC_T));
21 } else {
22 tap_code16(C(KC_W));
23 }
24 }
25 return true;
26}
diff --git a/keyboards/2key2crawl/keymaps/vol/keymap.c b/keyboards/2key2crawl/keymaps/vol/keymap.c
new file mode 100644
index 000000000..a45d3f778
--- /dev/null
+++ b/keyboards/2key2crawl/keymaps/vol/keymap.c
@@ -0,0 +1,26 @@
1#include QMK_KEYBOARD_H
2
3const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
4
5LAYOUT(
6 KC_1, KC_2, KC_3, KC_4, KC_5,
7 KC_6, KC_7, KC_8, KC_9, KC_0, KC_ENTER),
8
9};
10
11void matrix_init_user(void) {
12 debug_config.matrix = 1;
13 debug_config.keyboard = 1;
14 debug_config.enable = 1;
15}
16
17bool encoder_update_user(uint8_t index, bool clockwise) {
18 if (index == 0) {
19 if (clockwise) {
20 tap_code(KC_VOLU);
21 } else {
22 tap_code(KC_VOLD);
23 }
24 }
25 return true;
26}
diff --git a/keyboards/2key2crawl/readme.md b/keyboards/2key2crawl/readme.md
new file mode 100644
index 000000000..7651f4025
--- /dev/null
+++ b/keyboards/2key2crawl/readme.md
@@ -0,0 +1,16 @@
1# 2Key2CrawlPad
2
3![2Key2CrawlPad](https://i.imgur.com/ON7m7RI.jpg)
4
5A 2x5 macropad/numpad with a rotary encoder, exclusively available at Austin Keycrawl 2018 (12-01-2018).
6
7Keyboard Maintainer: QMK Community
8Keyboard Designer: [Cole Markham](https://github.com/colemarkham)
9Hardware Supported: Crawlpad
10Hardware Availability: Exclusive to Keycrawl events, contact [awwwwwwyeaahhhhhh](https://www.reddit.com/user/awwwwwwyeaahhhhhh) for more details.
11
12Make example for this keyboard (after setting up your build environment):
13
14 make 2key2crawl:default
15
16See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
diff --git a/keyboards/2key2crawl/rules.mk b/keyboards/2key2crawl/rules.mk
new file mode 100644
index 000000000..182637c7b
--- /dev/null
+++ b/keyboards/2key2crawl/rules.mk
@@ -0,0 +1,19 @@
1# MCU name
2MCU = atmega32u2
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
11MOUSEKEY_ENABLE = no # Mouse keys
12EXTRAKEY_ENABLE = no # Audio control and System control
13CONSOLE_ENABLE = yes # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15NKRO_ENABLE = no # Enable N-Key Rollover
16BACKLIGHT_ENABLE = no # [Crawlpad] Custom backlighting code is used, so this should not be enabled
17AUDIO_ENABLE = no # [Crawlpad] This can be enabled if a speaker is connected to the expansion port. Not compatible with RGBLIGHT below
18RGBLIGHT_ENABLE = no # [Crawlpad] This can be enabled if a ws2812 strip is connected to the expansion port.
19ENCODER_ENABLE = yes # [2Key2crawl] Make the knobs turn