aboutsummaryrefslogtreecommitdiff
path: root/keyboards/hineybush
diff options
context:
space:
mode:
authorJosh Hinnebusch <joshhinnebusch@gmail.com>2020-06-22 15:25:56 -0400
committerGitHub <noreply@github.com>2020-06-22 12:25:56 -0700
commit24b0cda3e877c28c53c1aca02ef6e0eaa66fad91 (patch)
treeaa73257cbe219bd9bae71e1fb03487116798c158 /keyboards/hineybush
parent1ab8f969f6a8a804241a64a8df40c49daab409a7 (diff)
downloadqmk_firmware-24b0cda3e877c28c53c1aca02ef6e0eaa66fad91.tar.gz
qmk_firmware-24b0cda3e877c28c53c1aca02ef6e0eaa66fad91.zip
[Keyboard] add h60 PCB (#9242)
* add h60 initial files * add h60 image * updated per PR request * Update keyboards/hineybush/h60/keymaps/default/keymap.c * Update keyboards/hineybush/h60/keymaps/kei/keymap.c * Update keyboards/hineybush/h60/keymaps/via/keymap.c * Update keyboards/hineybush/h60/h60.h * Update keyboards/hineybush/h60/h60.h * Update keyboards/hineybush/h60/rules.mk
Diffstat (limited to 'keyboards/hineybush')
-rw-r--r--keyboards/hineybush/h60/config.h89
-rw-r--r--keyboards/hineybush/h60/h60.c31
-rw-r--r--keyboards/hineybush/h60/h60.h111
-rw-r--r--keyboards/hineybush/h60/keymaps/default/keymap.c28
-rw-r--r--keyboards/hineybush/h60/keymaps/default/readme.md1
-rw-r--r--keyboards/hineybush/h60/keymaps/kei/keymap.c26
-rw-r--r--keyboards/hineybush/h60/keymaps/kei/readme.md1
-rw-r--r--keyboards/hineybush/h60/keymaps/via/keymap.c40
-rw-r--r--keyboards/hineybush/h60/keymaps/via/readme.md1
-rw-r--r--keyboards/hineybush/h60/keymaps/via/rules.mk1
-rw-r--r--keyboards/hineybush/h60/readme.md15
-rw-r--r--keyboards/hineybush/h60/rules.mk25
12 files changed, 369 insertions, 0 deletions
diff --git a/keyboards/hineybush/h60/config.h b/keyboards/hineybush/h60/config.h
new file mode 100644
index 000000000..ef14fdd4f
--- /dev/null
+++ b/keyboards/hineybush/h60/config.h
@@ -0,0 +1,89 @@
1/*
2Copyright 2020 hineybush
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20#include "config_common.h"
21
22/* USB Device descriptor parameter */
23#define VENDOR_ID 0x04D8
24#define PRODUCT_ID 0xEBBE
25#define DEVICE_VER 0x0001
26#define MANUFACTURER hineybush keyboards
27#define PRODUCT h60
28#define DESCRIPTION A 60% PCB.
29
30/* key matrix size */
31#define MATRIX_ROWS 5
32#define MATRIX_COLS 14
33
34#define MATRIX_ROW_PINS { B6, B5, B4, D7, E6 }
35#define MATRIX_COL_PINS { B3, D0, D1, D2, D3, D5, D6, C7, F0, F1, F4, F5, F6, F7 }
36#define UNUSED_PINS
37
38/* COL2ROW, ROW2COL*/
39#define DIODE_DIRECTION COL2ROW
40
41#define BACKLIGHT_PIN B7
42#define BACKLIGHT_BREATHING
43#define BACKLIGHT_LEVELS 3
44
45// leaving this here if I decide to add RGB down the line
46
47// #define RGB_DI_PIN E2
48// #ifdef RGB_DI_PIN
49// #define RGBLED_NUM 16
50// #define RGBLIGHT_HUE_STEP 8
51// #define RGBLIGHT_SAT_STEP 8
52// #define RGBLIGHT_VAL_STEP 8
53// #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
54// #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
55// /*== all animations enable ==*/
56// #define RGBLIGHT_ANIMATIONS
57// /*== or choose animations ==*/
58// #define RGBLIGHT_EFFECT_BREATHING
59// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
60// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
61// #define RGBLIGHT_EFFECT_SNAKE
62// #define RGBLIGHT_EFFECT_KNIGHT
63// #define RGBLIGHT_EFFECT_CHRISTMAS
64// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
65// #define RGBLIGHT_EFFECT_RGB_TEST
66// #define RGBLIGHT_EFFECT_ALTERNATING
67// /*== customize breathing effect ==*/
68// /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
69// #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
70// /*==== use exp() and sin() ====*/
71// #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
72// #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
73// #endif
74
75/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
76#define DEBOUNCE 5
77
78/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
79#define LOCKING_SUPPORT_ENABLE
80/* Locking resynchronize hack */
81#define LOCKING_RESYNC_ENABLE
82
83/* disable these deprecated features by default */
84#define NO_ACTION_MACRO
85#define NO_ACTION_FUNCTION
86
87/* Bootmagic Lite key configuration */
88#define BOOTMAGIC_LITE_ROW 0
89#define BOOTMAGIC_LITE_COLUMN 0
diff --git a/keyboards/hineybush/h60/h60.c b/keyboards/hineybush/h60/h60.c
new file mode 100644
index 000000000..c3f138247
--- /dev/null
+++ b/keyboards/hineybush/h60/h60.c
@@ -0,0 +1,31 @@
1/* Copyright 2020 hineybush
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "h60.h"
18
19void matrix_init_kb(void) {
20 // put your keyboard start-up code here
21 // runs once when the firmware starts up
22 setPinOutput(C6);
23}
24
25bool led_update_kb(led_t led_state) {
26 if(led_update_user(led_state)) {
27 writePin(C6, !led_state.caps_lock);
28 }
29 return true;
30}
31
diff --git a/keyboards/hineybush/h60/h60.h b/keyboards/hineybush/h60/h60.h
new file mode 100644
index 000000000..0a19ffbf3
--- /dev/null
+++ b/keyboards/hineybush/h60/h60.h
@@ -0,0 +1,111 @@
1/* Copyright 2020 hineybush
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#pragma once
18
19#include "quantum.h"
20
21/* This is a shortcut to help you visually see your layout.
22 *
23 * The first section contains all of the arguments representing the physical
24 * layout of the board and position of the keys.
25 *
26 * The second converts the arguments into a two-dimensional array which
27 * represents the switch matrix.
28 */
29#define LAYOUT_all(\
30 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k113, \
31 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k213, \
32 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, \
33 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, \
34 k400, k401, k402, k403, k406, k408, k409, k410, k411, k412 \
35) { \
36 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013 }, \
37 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113 }, \
38 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213 }, \
39 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, KC_NO}, \
40 { k400, k401, k402, k403, KC_NO,KC_NO,k406, KC_NO,k408, k409, k410, k411, k412, KC_NO} \
41}
42
43#define LAYOUT_60_ansi(\
44 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k113, \
45 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k213, \
46 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, \
47 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, \
48 k400, k401, k402, k406, k409, k410, k411, k412 \
49) { \
50 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO}, \
51 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113 }, \
52 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213 }, \
53 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, KC_NO,KC_NO}, \
54 { k400, k401, k402, KC_NO,KC_NO,KC_NO,k406, KC_NO,KC_NO,k409, k410, k411, k412, KC_NO} \
55}
56
57#define LAYOUT_60_ansi_split_bs_rshift(\
58 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k113, \
59 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k213, \
60 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, \
61 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, \
62 k400, k401, k402, k406, k409, k410, k411, k412 \
63) { \
64 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013 }, \
65 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113 }, \
66 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213 }, \
67 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, KC_NO}, \
68 { k400, k401, k402, KC_NO,KC_NO,KC_NO,k406, KC_NO,KC_NO,k409, k410, k411, k412, KC_NO} \
69}
70
71#define LAYOUT_60_hhkb(\
72 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k113, \
73 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k213, \
74 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, \
75 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, \
76 k401, k402, k406, k410, k411 \
77) { \
78 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013 }, \
79 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113 }, \
80 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213 }, \
81 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, KC_NO}, \
82 { KC_NO,k401, k402, KC_NO,KC_NO,KC_NO,k406, KC_NO,KC_NO,KC_NO,k410, k411, KC_NO,KC_NO} \
83}
84
85#define LAYOUT_60_tsangan_hhkb(\
86 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013, k113, \
87 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k213, \
88 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, \
89 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, \
90 k400, k401, k402, k406, k410, k411, k412 \
91) { \
92 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k013 }, \
93 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113 }, \
94 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213 }, \
95 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, KC_NO}, \
96 { k400, k401, k402, KC_NO,KC_NO,KC_NO,k406, KC_NO,KC_NO,KC_NO,k410, k411, k412, KC_NO} \
97}
98
99#define LAYOUT_60_tsangan_split_rshift(\
100 k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, k113, \
101 k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k213, \
102 k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, \
103 k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, \
104 k400, k401, k402, k406, k410, k411, k412 \
105) { \
106 { k000, k001, k002, k003, k004, k005, k006, k007, k008, k009, k010, k011, k012, KC_NO}, \
107 { k100, k101, k102, k103, k104, k105, k106, k107, k108, k109, k110, k111, k112, k113 }, \
108 { k200, k201, k202, k203, k204, k205, k206, k207, k208, k209, k210, k211, k212, k213 }, \
109 { k300, k301, k302, k303, k304, k305, k306, k307, k308, k309, k310, k311, k312, KC_NO}, \
110 { k400, k401, k402, KC_NO,KC_NO,KC_NO,k406, KC_NO,KC_NO,KC_NO,k410, k411, k412, KC_NO} \
111}
diff --git a/keyboards/hineybush/h60/keymaps/default/keymap.c b/keyboards/hineybush/h60/keymaps/default/keymap.c
new file mode 100644
index 000000000..9195da4b8
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/default/keymap.c
@@ -0,0 +1,28 @@
1/* Copyright 2020 hineybush
2
3 */
4#include QMK_KEYBOARD_H
5
6// Defines names for use in layer keycodes and the keymap
7enum layer_names {
8 _BASE,
9 _FN
10};
11
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
13
14
15 [_BASE] = LAYOUT_60_ansi(
16 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,
17 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
18 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_ENT,
19 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
20 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(1), KC_RGUI, KC_RCTL),
21
22 [_FN] = LAYOUT_60_ansi(
23 KC_TRNS, BL_TOGG, BL_DEC, BL_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
24 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
25 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
26 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
27 KC_TRNS, KC_TRNS, KC_TRNS, KC_MPLY, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
28};
diff --git a/keyboards/hineybush/h60/keymaps/default/readme.md b/keyboards/hineybush/h60/keymaps/default/readme.md
new file mode 100644
index 000000000..08aa4a5c8
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/default/readme.md
@@ -0,0 +1 @@
# The default keymap for h60
diff --git a/keyboards/hineybush/h60/keymaps/kei/keymap.c b/keyboards/hineybush/h60/keymaps/kei/keymap.c
new file mode 100644
index 000000000..528e1ac97
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/kei/keymap.c
@@ -0,0 +1,26 @@
1/* Copyright 2020 hineybush
2
3 */
4#include QMK_KEYBOARD_H
5
6// Defines names for use in layer keycodes and the keymap
7enum layer_names {
8 _BASE,
9 _FN
10};
11
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
13
14 [_BASE] = LAYOUT_60_hhkb(
15 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSLS, KC_GRV,
16 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_DEL,
17 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_ENT,
18 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
19 KC_LALT, KC_LGUI, KC_SPC, KC_RGUI, KC_RALT),
20 [_FN] = LAYOUT_60_hhkb(
21 KC_TRNS, BL_TOGG, BL_DEC, BL_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
22 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
23 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
24 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
25 KC_TRNS, KC_TRNS, KC_MPLY, KC_TRNS, KC_TRNS),
26};
diff --git a/keyboards/hineybush/h60/keymaps/kei/readme.md b/keyboards/hineybush/h60/keymaps/kei/readme.md
new file mode 100644
index 000000000..c7b8dd630
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/kei/readme.md
@@ -0,0 +1 @@
# The default keymap for the Kei keyboard
diff --git a/keyboards/hineybush/h60/keymaps/via/keymap.c b/keyboards/hineybush/h60/keymaps/via/keymap.c
new file mode 100644
index 000000000..75c9ac2dd
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/via/keymap.c
@@ -0,0 +1,40 @@
1/* Copyright 2020 hineybush
2
3 */
4#include QMK_KEYBOARD_H
5
6// Defines names for use in layer keycodes and the keymap
7enum layer_names {
8 _BASE,
9 _FN1,
10 _FN2,
11 _FN3
12};
13
14const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
15
16 [_BASE] = LAYOUT_all(
17 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC, KC_TRNS,
18 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSLS,
19 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_ENT,
20 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_TRNS,
21 KC_LCTL, KC_LGUI, KC_LALT, KC_TRNS, KC_SPC, KC_TRNS, KC_RALT, MO(1), KC_RGUI, KC_RCTL),
22 [_FN1] = LAYOUT_all(
23 KC_TRNS, BL_TOGG, BL_DEC, BL_INC, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
24 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, RESET, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
25 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
26 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
27 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_MPLY, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
28 [_FN2] = LAYOUT_all(
29 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
30 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
31 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
32 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
33 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
34 [_FN3] = LAYOUT_all(
35 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
36 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
37 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
38 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS,
39 KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS, KC_TRNS),
40};
diff --git a/keyboards/hineybush/h60/keymaps/via/readme.md b/keyboards/hineybush/h60/keymaps/via/readme.md
new file mode 100644
index 000000000..a8d6e39e1
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/via/readme.md
@@ -0,0 +1 @@
# The via keymap for h60
diff --git a/keyboards/hineybush/h60/keymaps/via/rules.mk b/keyboards/hineybush/h60/keymaps/via/rules.mk
new file mode 100644
index 000000000..1e5b99807
--- /dev/null
+++ b/keyboards/hineybush/h60/keymaps/via/rules.mk
@@ -0,0 +1 @@
VIA_ENABLE = yes
diff --git a/keyboards/hineybush/h60/readme.md b/keyboards/hineybush/h60/readme.md
new file mode 100644
index 000000000..3bc38cc0a
--- /dev/null
+++ b/keyboards/hineybush/h60/readme.md
@@ -0,0 +1,15 @@
1# h60
2
3![h60](https://live.staticflickr.com/65535/49952697531_2efeaa0bd6_k.jpg)
4
5A GH60 form factor PCB for 60% keyboards. Uses a USB Type C connector.
6
7* Keyboard Maintainer: [hineybush](https://github.com/hineybush)
8* Hardware Supported: h60
9* Hardware Availability: [hiney.cc](https://hiney.cc)
10
11Make example for this keyboard (after setting up your build environment):
12
13 make hineybush/h60:default
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).
diff --git a/keyboards/hineybush/h60/rules.mk b/keyboards/hineybush/h60/rules.mk
new file mode 100644
index 000000000..92da9c653
--- /dev/null
+++ b/keyboards/hineybush/h60/rules.mk
@@ -0,0 +1,25 @@
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 = no # Mouse keys
12EXTRAKEY_ENABLE = yes # Audio control and System control
13CONSOLE_ENABLE = yes # Console for debug
14COMMAND_ENABLE = yes # Commands for debug and configuration
15# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
16SLEEP_LED_ENABLE = yes # 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 = no # USB Nkey Rollover
19BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
20RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
21MIDI_ENABLE = no # MIDI support
22BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
23AUDIO_ENABLE = no # Audio output
24FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
25LAYOUTS = 60_ansi 60_ansi_split_bs_rshift 60_hhkb 60_tsangan_hhkb