aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bastardkb
diff options
context:
space:
mode:
authorQuentin <qlebastard@gmail.com>2021-08-12 16:45:42 +0200
committerGitHub <noreply@github.com>2021-08-12 07:45:42 -0700
commit356561c438766df09e8b90a81778b2053e319a6a (patch)
treeaf768f1833361ce49ea0568621f2ea2591692efd /keyboards/bastardkb
parent30843f8329315426ff433a40095f1de2b2669e57 (diff)
downloadqmk_firmware-356561c438766df09e8b90a81778b2053e319a6a.tar.gz
qmk_firmware-356561c438766df09e8b90a81778b2053e319a6a.zip
[Keyboard] Add Skeletyl keyboard (#13495)
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/bastardkb')
-rw-r--r--keyboards/bastardkb/skeletyl/config.h57
-rw-r--r--keyboards/bastardkb/skeletyl/info.json49
-rw-r--r--keyboards/bastardkb/skeletyl/keymaps/default/keymap.c70
-rw-r--r--keyboards/bastardkb/skeletyl/readme.md17
-rw-r--r--keyboards/bastardkb/skeletyl/rules.mk33
-rw-r--r--keyboards/bastardkb/skeletyl/skeletyl.c57
-rw-r--r--keyboards/bastardkb/skeletyl/skeletyl.h37
7 files changed, 320 insertions, 0 deletions
diff --git a/keyboards/bastardkb/skeletyl/config.h b/keyboards/bastardkb/skeletyl/config.h
new file mode 100644
index 000000000..2431f59df
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/config.h
@@ -0,0 +1,57 @@
1/*
2 * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#pragma once
19#include "config_common.h"
20#define VENDOR_ID 0xA8F8
21#define PRODUCT_ID 0x1830
22#define DEVICE_VER 0x0001
23#define MANUFACTURER Bastard Keyboards
24#define PRODUCT Skeletyl
25
26#define MATRIX_ROWS 8
27#define MATRIX_COLS 5
28#define RGBLIGHT_LIMIT_VAL 180
29#define MATRIX_ROW_PINS { B5, F7, F6, B6 }
30#define MATRIX_COL_PINS { E6, C6, B1, B3, B2 }
31
32#define DIODE_DIRECTION ROW2COL
33
34#define RGB_DI_PIN D2
35#define RGBLED_NUM 36
36#define RGBLED_SPLIT { 18, 18 }
37#define RGBLIGHT_ANIMATIONS
38
39#define DEBOUNCE 5
40
41#define SOFT_SERIAL_PIN D0
42
43#define USB_POLLING_INTERVAL_MS 1
44#define MASTER_RIGHT
45
46// RGB matrix support
47#ifdef RGB_MATRIX_ENABLE
48# define SPLIT_TRANSPORT_MIRROR
49# define DRIVER_LED_TOTAL 36 // Number of LEDs
50# define RGB_MATRIX_SPLIT { 18, 18 }
51# define RGB_MATRIX_MAXIMUM_BRIGHTNESS 50
52# define RGB_MATRIX_STARTUP_VAL RGB_MATRIX_MAXIMUM_BRIGHTNESS
53# ifndef RGB_DISABLE_WHEN_USB_SUSPENDED
54# define RGB_DISABLE_WHEN_USB_SUSPENDED true
55# endif
56# define RGB_MATRIX_KEYPRESSES
57#endif
diff --git a/keyboards/bastardkb/skeletyl/info.json b/keyboards/bastardkb/skeletyl/info.json
new file mode 100644
index 000000000..d7ebf8014
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/info.json
@@ -0,0 +1,49 @@
1{
2 "keyboard_name": "Skeletyl",
3 "url": "https://www.bastardkb.com",
4 "maintainer": "Quentin Lebastard",
5 "width": 17,
6 "height": 4,
7 "layouts": {
8 "LAYOUT_split_3x5_3": {
9 "layout": [
10 {"label":"L00", "x":0, "y":0},
11 {"label":"L01", "x":1, "y":0},
12 {"label":"L02", "x":2, "y":0},
13 {"label":"L03", "x":3, "y":0},
14 {"label":"L04", "x":4, "y":0},
15 {"label":"R00", "x":11, "y":0},
16 {"label":"R01", "x":12, "y":0},
17 {"label":"R02", "x":13, "y":0},
18 {"label":"R03", "x":14, "y":0},
19 {"label":"R04", "x":15, "y":0},
20 {"label":"L10", "x":0, "y":1},
21 {"label":"L11", "x":1, "y":1},
22 {"label":"L12", "x":2, "y":1},
23 {"label":"L13", "x":3, "y":1},
24 {"label":"L14", "x":4, "y":1},
25 {"label":"R10", "x":11, "y":1},
26 {"label":"R11", "x":12, "y":1},
27 {"label":"R12", "x":13, "y":1},
28 {"label":"R13", "x":14, "y":1},
29 {"label":"R14", "x":15, "y":1},
30 {"label":"L20", "x":0, "y":2},
31 {"label":"L21", "x":1, "y":2},
32 {"label":"L22", "x":2, "y":2},
33 {"label":"L23", "x":3, "y":2},
34 {"label":"L24", "x":4, "y":2},
35 {"label":"R20", "x":11, "y":2},
36 {"label":"R21", "x":12, "y":2},
37 {"label":"R22", "x":13, "y":2},
38 {"label":"R23", "x":14, "y":2},
39 {"label":"R24", "x":15, "y":2},
40 {"label":"L33", "x":4, "y":3},
41 {"label":"L34", "x":5, "y":3},
42 {"label":"L31", "x":6, "y":3},
43 {"label":"R33", "x":9, "y":3},
44 {"label":"R34", "x":10, "y":3},
45 {"label":"R31", "x":11, "y":3}
46 ]
47 }
48 }
49}
diff --git a/keyboards/bastardkb/skeletyl/keymaps/default/keymap.c b/keyboards/bastardkb/skeletyl/keymaps/default/keymap.c
new file mode 100644
index 000000000..56e56d9a4
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/keymaps/default/keymap.c
@@ -0,0 +1,70 @@
1/*
2 * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include QMK_KEYBOARD_H
19
20const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
21
22 [0] = LAYOUT_split_3x5_3(
23 //,-----------------------------------------------------. ,-----------------------------------------------------.
24 KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
25 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
26 KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
27 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
28 KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
29 //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
30 KC_LGUI, KC_SPC , MO(1), MO(2), KC_ENT , KC_RALT
31 //`--------------------------' `--------------------------'
32
33 ),
34
35 [1] = LAYOUT_split_3x5_3(
36 //,-----------------------------------------------------. ,-----------------------------------------------------.
37 KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0,
38 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
39 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LEFT, KC_DOWN, KC_UP,KC_RIGHT, XXXXXXX,
40 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
41 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
42 //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
43 KC_LGUI, KC_SPC, _______, MO(3), KC_ENT, KC_RALT
44 //`--------------------------' `--------------------------'
45 ),
46
47 [2] = LAYOUT_split_3x5_3(
48 //,-----------------------------------------------------. ,-----------------------------------------------------.
49 KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN,
50 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
51 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
52 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
53 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
54 //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
55 KC_LGUI, KC_SPC, MO(3), _______, KC_ENT, KC_RALT
56 //`--------------------------' `--------------------------'
57 ),
58
59 [3] = LAYOUT_split_3x5_3(
60 //,-----------------------------------------------------. ,-----------------------------------------------------.
61 XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
62 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
63 RGB_HUI, RGB_SAI, RGB_VAI, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
64 //|--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------|
65 RGB_HUD, RGB_SAD, RGB_VAD, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
66 //|--------+--------+--------+--------+--------+--------+--------| |--------+--------+--------+--------+--------+--------+--------|
67 KC_LGUI, KC_SPC, _______, _______, KC_ENT, KC_RALT
68 //`--------------------------' `--------------------------'
69 )
70};
diff --git a/keyboards/bastardkb/skeletyl/readme.md b/keyboards/bastardkb/skeletyl/readme.md
new file mode 100644
index 000000000..6c36b5835
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/readme.md
@@ -0,0 +1,17 @@
1# Skeletyl
2
3A very small keyboard made for ergonomic enthusiasts.
4
5* Keyboard Maintainer: [Bastard Keyboards](https://github.com/Bastardkb/)
6* Hardware Supported: elite-C V4
7* Hardware Availability: [Bastardkb.com](https://bastardkb.com/)
8
9Make example for this keyboard (after setting up your build environment):
10
11 make bastardkb/skeletyl:default
12
13This keyboard is made to be used with the Miryoku layout, do not use the default keymap.
14
15See 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).
16
17See the [keyboard build instructions](http://docs.bastardkb.com/)
diff --git a/keyboards/bastardkb/skeletyl/rules.mk b/keyboards/bastardkb/skeletyl/rules.mk
new file mode 100644
index 000000000..1afabf51c
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/rules.mk
@@ -0,0 +1,33 @@
1# MCU name
2MCU = atmega32u4
3
4# Bootloader selection
5BOOTLOADER = atmel-dfu
6
7# Build Options
8# change yes to no to disable
9#
10BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
11MOUSEKEY_ENABLE = yes # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = no # Console for debug
14COMMAND_ENABLE = no # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
17# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
18NKRO_ENABLE = yes # USB Nkey Rollover
19BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21RGB_MATRIX_ENABLE = yes # Enable keyboard RGB matrix (do not use together with RGBLIGHT_ENABLE)
22RGB_MATRIX_DRIVER = WS2812 # RGB matrix driver support
23BLUETOOTH_ENABLE = no # Enable Bluetooth
24AUDIO_ENABLE = no # Audio output
25SPLIT_KEYBOARD = yes
26TAP_DANCE_ENABLE = no
27LTO_ENABLE = yes
28
29AUDIO_SUPPORTED = no
30RGB_MATRIX_SUPPORTED = yes
31RGBLIGHT_SUPPORTED = yes
32
33LAYOUTS = split_3x5_3
diff --git a/keyboards/bastardkb/skeletyl/skeletyl.c b/keyboards/bastardkb/skeletyl/skeletyl.c
new file mode 100644
index 000000000..057465b4a
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/skeletyl.c
@@ -0,0 +1,57 @@
1/*
2 * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "skeletyl.h"
19
20#ifdef RGB_MATRIX_ENABLE
21led_config_t g_led_config = { {
22 // left
23 { 0, 5, 6, 11, 12 },
24 { 1, 4, 7, 10, 13 },
25 { 2, 3, 8, 9, 14 },
26 { 15, NO_LED, 16, 17, NO_LED },
27 // right
28 { 18, 23, 24, 29, 30 },
29 { 19, 22, 25, 28, 31 },
30 { 20, 21, 26, 27, 32 },
31 { 33, NO_LED, 34, 35, NO_LED }
32}, {
33 // left
34 { 0, 0 }, { 0, 21 }, { 0, 42 }, // col 1
35 { 25, 42 }, { 25, 21 }, { 25, 0 }, // col 2
36 { 50, 0 }, { 50, 21 }, { 50, 42 },
37 { 74, 42 }, { 74, 21 }, { 74, 0 },
38 { 99, 0 }, { 99, 21 }, { 99, 42 },
39 { 50, 64 }, { 74, 64 }, { 99, 64 }, // left thumb cluster
40 // right
41 { 224, 0 }, { 224, 21 }, { 224, 42 }, // col 10
42 { 198, 42 }, { 198, 21 }, { 198, 0 }, // col 9
43 { 174, 0 }, { 174, 21 }, { 174, 42 },
44 { 149, 42 }, { 149, 21 }, { 149, 0 },
45 { 124, 0 }, { 124, 21 }, { 124, 42 },
46 { 174, 64 }, { 149, 64 }, { 124, 64 } // right thumb cluster
47}, {
48 // left
49 4, 4, 4, 4, 4, 4, 4,
50 4, 4, 4, 4, 4, 4, 4, 4,
51 2, 2, 2,
52 // right
53 4, 4, 4, 4, 4, 4, 4,
54 4, 4, 4, 4, 4, 4, 4, 4,
55 2, 2, 2
56} };
57#endif
diff --git a/keyboards/bastardkb/skeletyl/skeletyl.h b/keyboards/bastardkb/skeletyl/skeletyl.h
new file mode 100644
index 000000000..36399567f
--- /dev/null
+++ b/keyboards/bastardkb/skeletyl/skeletyl.h
@@ -0,0 +1,37 @@
1/*
2 * Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18
19#pragma once
20#include "quantum.h"
21
22#define LAYOUT_split_3x5_3( \
23 k00, k01, k02, k03, k04, k44, k43, k42, k41, k40, \
24 k10, k11, k12, k13, k14, k54, k53, k52, k51, k50, \
25 k20, k21, k22, k23, k24, k64, k63, k62, k61, k60, \
26 k33, k34, k31, k71, k74, k73 \
27)\
28{\
29 { k00, k01, k02, k03, k04 }, \
30 { k10, k11, k12, k13, k14 }, \
31 { k20, k21, k22, k23, k24 }, \
32 { k31, KC_NO, k33, k34, KC_NO }, \
33 { k40, k41, k42, k43, k44 }, \
34 { k50, k51, k52, k53, k54 }, \
35 { k60, k61, k62, k63, k64 }, \
36 { k71, KC_NO, k73, k74, KC_NO }, \
37}