diff options
author | takashiski <takashiskibb@gmail.com> | 2019-02-17 14:44:08 +0900 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-02-16 21:44:08 -0800 |
commit | feabafd1f42138a4b31596dfa3b6eebe5a5f7605 (patch) | |
tree | 4b339346af69c820c35dd5bbc2ecee8ba637489e | |
parent | 39b5958ae8dbcf374ab68366838acb5cbd380d94 (diff) | |
download | qmk_firmware-feabafd1f42138a4b31596dfa3b6eebe5a5f7605.tar.gz qmk_firmware-feabafd1f42138a4b31596dfa3b6eebe5a5f7605.zip |
define new keyboard "Hecomi" (#5147)
* update pinout for matrix
* first commit
* include split_common.h
* change split_common.h to split_util.h
* update config.h
* update keymap & config
* update
* remove K70, add K77
* fixed test keymap
* add Layer
* define to HHKB pro 2 based keymap
* change authoer name
* define LAYOUT and LAYOUT_KC
* replace from LAYOUT_KC to LAYOUT
* change name hecomi_alpha to hecomi/alpha
* fixed hecomi_alpha to hecomi/alpha
* remove unnecessary files
* update readme
* add DEFAULT_FOLDER
* remove hecomi_alpha because change name to hecomi
* remove bad LAYOUT macro
* remove IS_COMMAND macro
* remove unnecessary RGB options
* Update keyboards/hecomi/hecomi.h
Co-Authored-By: takashiski <takashiskibb@gmail.com>
* Update keyboards/hecomi/hecomi.h
Co-Authored-By: takashiski <takashiskibb@gmail.com>
* Update keyboards/hecomi/alpha/rules.mk
Co-Authored-By: takashiski <takashiskibb@gmail.com>
* Update keyboards/hecomi/alpha/rules.mk
Co-Authored-By: takashiski <takashiskibb@gmail.com>
* Update keyboards/hecomi/hecomi.h
Co-Authored-By: takashiski <takashiskibb@gmail.com>
* remove endif
* update rule.mk with suggestions
-rw-r--r-- | keyboards/hecomi/alpha/config.h | 246 | ||||
-rw-r--r-- | keyboards/hecomi/alpha/readme.md | 17 | ||||
-rw-r--r-- | keyboards/hecomi/alpha/rules.mk | 82 | ||||
-rw-r--r-- | keyboards/hecomi/config.h | 246 | ||||
-rw-r--r-- | keyboards/hecomi/hecomi.c | 44 | ||||
-rw-r--r-- | keyboards/hecomi/hecomi.h | 89 | ||||
-rw-r--r-- | keyboards/hecomi/info.json | 0 | ||||
-rw-r--r-- | keyboards/hecomi/keymaps/default/config.h | 19 | ||||
-rw-r--r-- | keyboards/hecomi/keymaps/default/keymap.c | 89 | ||||
-rw-r--r-- | keyboards/hecomi/keymaps/default/readme.md | 1 | ||||
-rw-r--r-- | keyboards/hecomi/readme.md | 17 | ||||
-rw-r--r-- | keyboards/hecomi/rules.mk | 85 |
12 files changed, 935 insertions, 0 deletions
diff --git a/keyboards/hecomi/alpha/config.h b/keyboards/hecomi/alpha/config.h new file mode 100644 index 000000000..40bb8c2f0 --- /dev/null +++ b/keyboards/hecomi/alpha/config.h | |||
@@ -0,0 +1,246 @@ | |||
1 | /* | ||
2 | Copyright 2018 takashiski | ||
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 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0xFEED | ||
24 | #define PRODUCT_ID 0x0000 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER takashiski | ||
27 | #define PRODUCT hecomi_alpha | ||
28 | #define DESCRIPTION asymmetric split keyboard | ||
29 | |||
30 | /* key matrix size */ | ||
31 | //#define MATRIX_ROWS 5 | ||
32 | #define MATRIX_ROWS 10 | ||
33 | #define MATRIX_COLS 8 | ||
34 | |||
35 | /* | ||
36 | * Keyboard Matrix Assignments | ||
37 | * | ||
38 | * Change this to how you wired your keyboard | ||
39 | * COLS: AVR pins used for columns, left to right | ||
40 | * ROWS: AVR pins used for rows, top to bottom | ||
41 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
42 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
43 | * | ||
44 | */ | ||
45 | #define MATRIX_ROW_PINS { C6,D7,E6,B4,B5 } | ||
46 | #define MATRIX_COL_PINS { F4,F5,F6,F7,B1,B3,B2,B6 } | ||
47 | #define UNUSED_PINS | ||
48 | #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
49 | //#define USE_I2C | ||
50 | |||
51 | /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */ | ||
52 | #define DIODE_DIRECTION COL2ROW | ||
53 | |||
54 | /* | ||
55 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, an3 define SOFT_SERIAL_PIN. | ||
56 | */ | ||
57 | //#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
58 | |||
59 | // #define BACKLIGHT_PIN B7 | ||
60 | // #define BACKLIGHT_BREATHING | ||
61 | // #define BACKLIGHT_LEVELS 3 | ||
62 | |||
63 | #define RGB_DI_PIN D4 | ||
64 | #ifdef RGB_DI_PIN | ||
65 | #define RGBLED_NUM 8 | ||
66 | #define RGBLIGHT_HUE_STEP 8 | ||
67 | #define RGBLIGHT_SAT_STEP 8 | ||
68 | #define RGBLIGHT_VAL_STEP 8 | ||
69 | /*== or choose animations ==*/ | ||
70 | #define RGBLIGHT_EFFECT_BREATHING | ||
71 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
72 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
73 | #define RGBLIGHT_EFFECT_SNAKE | ||
74 | #define RGBLIGHT_EFFECT_KNIGHT | ||
75 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
76 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
77 | #define RGBLIGHT_EFFECT_RGB_TEST | ||
78 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
79 | #endif | ||
80 | |||
81 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
82 | #define DEBOUNCING_DELAY 5 | ||
83 | |||
84 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
85 | //#define MATRIX_HAS_GHOST | ||
86 | |||
87 | /* number of backlight levels */ | ||
88 | |||
89 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
90 | #define LOCKING_SUPPORT_ENABLE | ||
91 | /* Locking resynchronize hack */ | ||
92 | #define LOCKING_RESYNC_ENABLE | ||
93 | |||
94 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
95 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
96 | */ | ||
97 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
98 | |||
99 | /* | ||
100 | * Force NKRO | ||
101 | * | ||
102 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
103 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
104 | * makefile for this to work.) | ||
105 | * | ||
106 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
107 | * until the next keyboard reset. | ||
108 | * | ||
109 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
110 | * fully operational during normal computer usage. | ||
111 | * | ||
112 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
113 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
114 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
115 | * power-up. | ||
116 | * | ||
117 | */ | ||
118 | //#define FORCE_NKRO | ||
119 | |||
120 | /* | ||
121 | * Magic Key Options | ||
122 | * | ||
123 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
124 | * the keyboard. They are best used in combination with the HID Listen program, | ||
125 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
126 | * | ||
127 | * The options below allow the magic key functionality to be changed. This is | ||
128 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
129 | * | ||
130 | */ | ||
131 | |||
132 | |||
133 | /* control how magic key switches layers */ | ||
134 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
135 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
136 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
137 | |||
138 | /* override magic key keymap */ | ||
139 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
140 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
141 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
142 | //#define MAGIC_KEY_HELP1 H | ||
143 | //#define MAGIC_KEY_HELP2 SLASH | ||
144 | //#define MAGIC_KEY_DEBUG D | ||
145 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
146 | //#define MAGIC_KEY_DEBUG_KBD K | ||
147 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
148 | //#define MAGIC_KEY_VERSION V | ||
149 | //#define MAGIC_KEY_STATUS S | ||
150 | //#define MAGIC_KEY_CONSOLE C | ||
151 | //#define MAGIC_KEY_LAYER0_ALT1 ESC | ||
152 | //#define MAGIC_KEY_LAYER0_ALT2 GRAVE | ||
153 | //#define MAGIC_KEY_LAYER0 0 | ||
154 | //#define MAGIC_KEY_LAYER1 1 | ||
155 | //#define MAGIC_KEY_LAYER2 2 | ||
156 | //#define MAGIC_KEY_LAYER3 3 | ||
157 | //#define MAGIC_KEY_LAYER4 4 | ||
158 | //#define MAGIC_KEY_LAYER5 5 | ||
159 | //#define MAGIC_KEY_LAYER6 6 | ||
160 | //#define MAGIC_KEY_LAYER7 7 | ||
161 | //#define MAGIC_KEY_LAYER8 8 | ||
162 | //#define MAGIC_KEY_LAYER9 9 | ||
163 | //#define MAGIC_KEY_BOOTLOADER PAUSE | ||
164 | //#define MAGIC_KEY_LOCK CAPS | ||
165 | //#define MAGIC_KEY_EEPROM E | ||
166 | //#define MAGIC_KEY_NKRO N | ||
167 | //#define MAGIC_KEY_SLEEP_LED Z | ||
168 | |||
169 | /* | ||
170 | * Feature disable options | ||
171 | * These options are also useful to firmware size reduction. | ||
172 | */ | ||
173 | |||
174 | /* disable debug print */ | ||
175 | //#define NO_DEBUG | ||
176 | |||
177 | /* disable print */ | ||
178 | //#define NO_PRINT | ||
179 | |||
180 | /* disable action features */ | ||
181 | //#define NO_ACTION_LAYER | ||
182 | //#define NO_ACTION_TAPPING | ||
183 | //#define NO_ACTION_ONESHOT | ||
184 | //#define NO_ACTION_MACRO | ||
185 | //#define NO_ACTION_FUNCTION | ||
186 | |||
187 | /* | ||
188 | * MIDI options | ||
189 | */ | ||
190 | |||
191 | /* Prevent use of disabled MIDI features in the keymap */ | ||
192 | //#define MIDI_ENABLE_STRICT 1 | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* | ||
211 | * HD44780 LCD Display Configuration | ||
212 | */ | ||
213 | /* | ||
214 | #define LCD_LINES 2 //< number of visible lines of the display | ||
215 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
216 | |||
217 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
218 | |||
219 | #if LCD_IO_MODE | ||
220 | #define LCD_PORT PORTB //< port for the LCD lines | ||
221 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
222 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
223 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
224 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
225 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
226 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
227 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
228 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
229 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
230 | #define LCD_RS_PIN 3 //< pin for RS line | ||
231 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
232 | #define LCD_RW_PIN 2 //< pin for RW line | ||
233 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
234 | #define LCD_E_PIN 1 //< pin for Enable line | ||
235 | #endif | ||
236 | */ | ||
237 | |||
238 | /* Bootmagic Lite key configuration */ | ||
239 | // #define BOOTMAGIC_LITE_ROW 0 | ||
240 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
241 | // | ||
242 | /* | ||
243 | #define USE_I2C | ||
244 | #define MASTER_LEFT | ||
245 | #define EEHANDS | ||
246 | */ | ||
diff --git a/keyboards/hecomi/alpha/readme.md b/keyboards/hecomi/alpha/readme.md new file mode 100644 index 000000000..7ac7569f8 --- /dev/null +++ b/keyboards/hecomi/alpha/readme.md | |||
@@ -0,0 +1,17 @@ | |||
1 | # hecomi_alpha | ||
2 | |||
3 |  | ||
4 | |||
5 | This keyboard based on HHKB pro 2 and physical layout designed by @hecomi and @takashiski. | ||
6 | |||
7 | This keyboard use 2 pro micro's, but you can use USB type-c. There are a bit tricky implementation. | ||
8 | |||
9 | Keyboard Maintainer: [takashiski](https://github.com/takashiski) | ||
10 | Hardware Supported: hecomi_alpha, promicro | ||
11 | Hardware Availability: booth(@skyhigh_works) | ||
12 | |||
13 | Make example for this keyboard (after setting up your build environment): | ||
14 | |||
15 | make hecomi_alpha:default | ||
16 | |||
17 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/hecomi/alpha/rules.mk b/keyboards/hecomi/alpha/rules.mk new file mode 100644 index 000000000..ae9192be3 --- /dev/null +++ b/keyboards/hecomi/alpha/rules.mk | |||
@@ -0,0 +1,82 @@ | |||
1 | # MCU name | ||
2 | #MCU = at90usb1286 | ||
3 | MCU = atmega32u4 | ||
4 | |||
5 | # Processor frequency. | ||
6 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
7 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
8 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
9 | # automatically to create a 32-bit value in your source code. | ||
10 | # | ||
11 | # This will be an integer division of F_USB below, as it is sourced by | ||
12 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
13 | # does not *change* the processor frequency - it should merely be updated to | ||
14 | # reflect the processor speed set externally so that the code can use accurate | ||
15 | # software delays. | ||
16 | F_CPU = 16000000 | ||
17 | |||
18 | |||
19 | # | ||
20 | # LUFA specific | ||
21 | # | ||
22 | # Target architecture (see library "Board Types" documentation). | ||
23 | ARCH = AVR8 | ||
24 | |||
25 | # Input clock frequency. | ||
26 | # This will define a symbol, F_USB, in all source code files equal to the | ||
27 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
28 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
29 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
30 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
31 | # at the end, this will be done automatically to create a 32-bit value in your | ||
32 | # source code. | ||
33 | # | ||
34 | # If no clock division is performed on the input clock inside the AVR (via the | ||
35 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
36 | F_USB = $(F_CPU) | ||
37 | |||
38 | # Interrupt driven control endpoint task(+60) | ||
39 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
40 | |||
41 | |||
42 | # Bootloader selection | ||
43 | # Teensy halfkay | ||
44 | # Pro Micro caterina | ||
45 | # Atmel DFU atmel-dfu | ||
46 | # LUFA DFU lufa-dfu | ||
47 | # QMK DFU qmk-dfu | ||
48 | # atmega32a bootloadHID | ||
49 | BOOTLOADER = caterina | ||
50 | |||
51 | |||
52 | # If you don't know the bootloader type, then you can specify the | ||
53 | # Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line | ||
54 | # Teensy halfKay 512 | ||
55 | # Teensy++ halfKay 1024 | ||
56 | # Atmel DFU loader 4096 | ||
57 | # LUFA bootloader 4096 | ||
58 | # USBaspLoader 2048 | ||
59 | # OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
60 | |||
61 | |||
62 | # Build Options | ||
63 | # change yes to no to disable | ||
64 | # | ||
65 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | ||
66 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
67 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
68 | CONSOLE_ENABLE = yes # Console for debug(+400) | ||
69 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
70 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
71 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
72 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
73 | NKRO_ENABLE = no # USB Nkey Rollover | ||
74 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | ||
75 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
76 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
77 | UNICODE_ENABLE = no # Unicode | ||
78 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
79 | AUDIO_ENABLE = no # Audio output on port C6 | ||
80 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
81 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) | ||
82 | SPLIT_KEYBOARD = yes | ||
diff --git a/keyboards/hecomi/config.h b/keyboards/hecomi/config.h new file mode 100644 index 000000000..40bb8c2f0 --- /dev/null +++ b/keyboards/hecomi/config.h | |||
@@ -0,0 +1,246 @@ | |||
1 | /* | ||
2 | Copyright 2018 takashiski | ||
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 | |||
20 | #include "config_common.h" | ||
21 | |||
22 | /* USB Device descriptor parameter */ | ||
23 | #define VENDOR_ID 0xFEED | ||
24 | #define PRODUCT_ID 0x0000 | ||
25 | #define DEVICE_VER 0x0001 | ||
26 | #define MANUFACTURER takashiski | ||
27 | #define PRODUCT hecomi_alpha | ||
28 | #define DESCRIPTION asymmetric split keyboard | ||
29 | |||
30 | /* key matrix size */ | ||
31 | //#define MATRIX_ROWS 5 | ||
32 | #define MATRIX_ROWS 10 | ||
33 | #define MATRIX_COLS 8 | ||
34 | |||
35 | /* | ||
36 | * Keyboard Matrix Assignments | ||
37 | * | ||
38 | * Change this to how you wired your keyboard | ||
39 | * COLS: AVR pins used for columns, left to right | ||
40 | * ROWS: AVR pins used for rows, top to bottom | ||
41 | * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode) | ||
42 | * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode) | ||
43 | * | ||
44 | */ | ||
45 | #define MATRIX_ROW_PINS { C6,D7,E6,B4,B5 } | ||
46 | #define MATRIX_COL_PINS { F4,F5,F6,F7,B1,B3,B2,B6 } | ||
47 | #define UNUSED_PINS | ||
48 | #define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
49 | //#define USE_I2C | ||
50 | |||
51 | /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */ | ||
52 | #define DIODE_DIRECTION COL2ROW | ||
53 | |||
54 | /* | ||
55 | * Split Keyboard specific options, make sure you have 'SPLIT_KEYBOARD = yes' in your rules.mk, an3 define SOFT_SERIAL_PIN. | ||
56 | */ | ||
57 | //#define SOFT_SERIAL_PIN D0 // or D1, D2, D3, E6 | ||
58 | |||
59 | // #define BACKLIGHT_PIN B7 | ||
60 | // #define BACKLIGHT_BREATHING | ||
61 | // #define BACKLIGHT_LEVELS 3 | ||
62 | |||
63 | #define RGB_DI_PIN D4 | ||
64 | #ifdef RGB_DI_PIN | ||
65 | #define RGBLED_NUM 8 | ||
66 | #define RGBLIGHT_HUE_STEP 8 | ||
67 | #define RGBLIGHT_SAT_STEP 8 | ||
68 | #define RGBLIGHT_VAL_STEP 8 | ||
69 | /*== or choose animations ==*/ | ||
70 | #define RGBLIGHT_EFFECT_BREATHING | ||
71 | #define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||
72 | #define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||
73 | #define RGBLIGHT_EFFECT_SNAKE | ||
74 | #define RGBLIGHT_EFFECT_KNIGHT | ||
75 | #define RGBLIGHT_EFFECT_CHRISTMAS | ||
76 | #define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||
77 | #define RGBLIGHT_EFFECT_RGB_TEST | ||
78 | #define RGBLIGHT_EFFECT_ALTERNATING | ||
79 | #endif | ||
80 | |||
81 | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||
82 | #define DEBOUNCING_DELAY 5 | ||
83 | |||
84 | /* define if matrix has ghost (lacks anti-ghosting diodes) */ | ||
85 | //#define MATRIX_HAS_GHOST | ||
86 | |||
87 | /* number of backlight levels */ | ||
88 | |||
89 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
90 | #define LOCKING_SUPPORT_ENABLE | ||
91 | /* Locking resynchronize hack */ | ||
92 | #define LOCKING_RESYNC_ENABLE | ||
93 | |||
94 | /* If defined, GRAVE_ESC will always act as ESC when CTRL is held. | ||
95 | * This is userful for the Windows task manager shortcut (ctrl+shift+esc). | ||
96 | */ | ||
97 | // #define GRAVE_ESC_CTRL_OVERRIDE | ||
98 | |||
99 | /* | ||
100 | * Force NKRO | ||
101 | * | ||
102 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | ||
103 | * state in the bootmagic EEPROM settings. (Note that NKRO must be enabled in the | ||
104 | * makefile for this to work.) | ||
105 | * | ||
106 | * If forced on, NKRO can be disabled via magic key (default = LShift+RShift+N) | ||
107 | * until the next keyboard reset. | ||
108 | * | ||
109 | * NKRO may prevent your keystrokes from being detected in the BIOS, but it is | ||
110 | * fully operational during normal computer usage. | ||
111 | * | ||
112 | * For a less heavy-handed approach, enable NKRO via magic key (LShift+RShift+N) | ||
113 | * or via bootmagic (hold SPACE+N while plugging in the keyboard). Once set by | ||
114 | * bootmagic, NKRO mode will always be enabled until it is toggled again during a | ||
115 | * power-up. | ||
116 | * | ||
117 | */ | ||
118 | //#define FORCE_NKRO | ||
119 | |||
120 | /* | ||
121 | * Magic Key Options | ||
122 | * | ||
123 | * Magic keys are hotkey commands that allow control over firmware functions of | ||
124 | * the keyboard. They are best used in combination with the HID Listen program, | ||
125 | * found here: https://www.pjrc.com/teensy/hid_listen.html | ||
126 | * | ||
127 | * The options below allow the magic key functionality to be changed. This is | ||
128 | * useful if your keyboard/keypad is missing keys and you want magic key support. | ||
129 | * | ||
130 | */ | ||
131 | |||
132 | |||
133 | /* control how magic key switches layers */ | ||
134 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true | ||
135 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true | ||
136 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false | ||
137 | |||
138 | /* override magic key keymap */ | ||
139 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS | ||
140 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS | ||
141 | //#define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM | ||
142 | //#define MAGIC_KEY_HELP1 H | ||
143 | //#define MAGIC_KEY_HELP2 SLASH | ||
144 | //#define MAGIC_KEY_DEBUG D | ||
145 | //#define MAGIC_KEY_DEBUG_MATRIX X | ||
146 | //#define MAGIC_KEY_DEBUG_KBD K | ||
147 | //#define MAGIC_KEY_DEBUG_MOUSE M | ||
148 | //#define MAGIC_KEY_VERSION V | ||
149 | //#define MAGIC_KEY_STATUS S | ||
150 | //#define MAGIC_KEY_CONSOLE C | ||
151 | //#define MAGIC_KEY_LAYER0_ALT1 ESC | ||
152 | //#define MAGIC_KEY_LAYER0_ALT2 GRAVE | ||
153 | //#define MAGIC_KEY_LAYER0 0 | ||
154 | //#define MAGIC_KEY_LAYER1 1 | ||
155 | //#define MAGIC_KEY_LAYER2 2 | ||
156 | //#define MAGIC_KEY_LAYER3 3 | ||
157 | //#define MAGIC_KEY_LAYER4 4 | ||
158 | //#define MAGIC_KEY_LAYER5 5 | ||
159 | //#define MAGIC_KEY_LAYER6 6 | ||
160 | //#define MAGIC_KEY_LAYER7 7 | ||
161 | //#define MAGIC_KEY_LAYER8 8 | ||
162 | //#define MAGIC_KEY_LAYER9 9 | ||
163 | //#define MAGIC_KEY_BOOTLOADER PAUSE | ||
164 | //#define MAGIC_KEY_LOCK CAPS | ||
165 | //#define MAGIC_KEY_EEPROM E | ||
166 | //#define MAGIC_KEY_NKRO N | ||
167 | //#define MAGIC_KEY_SLEEP_LED Z | ||
168 | |||
169 | /* | ||
170 | * Feature disable options | ||
171 | * These options are also useful to firmware size reduction. | ||
172 | */ | ||
173 | |||
174 | /* disable debug print */ | ||
175 | //#define NO_DEBUG | ||
176 | |||
177 | /* disable print */ | ||
178 | //#define NO_PRINT | ||
179 | |||
180 | /* disable action features */ | ||
181 | //#define NO_ACTION_LAYER | ||
182 | //#define NO_ACTION_TAPPING | ||
183 | //#define NO_ACTION_ONESHOT | ||
184 | //#define NO_ACTION_MACRO | ||
185 | //#define NO_ACTION_FUNCTION | ||
186 | |||
187 | /* | ||
188 | * MIDI options | ||
189 | */ | ||
190 | |||
191 | /* Prevent use of disabled MIDI features in the keymap */ | ||
192 | //#define MIDI_ENABLE_STRICT 1 | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* | ||
211 | * HD44780 LCD Display Configuration | ||
212 | */ | ||
213 | /* | ||
214 | #define LCD_LINES 2 //< number of visible lines of the display | ||
215 | #define LCD_DISP_LENGTH 16 //< visibles characters per line of the display | ||
216 | |||
217 | #define LCD_IO_MODE 1 //< 0: memory mapped mode, 1: IO port mode | ||
218 | |||
219 | #if LCD_IO_MODE | ||
220 | #define LCD_PORT PORTB //< port for the LCD lines | ||
221 | #define LCD_DATA0_PORT LCD_PORT //< port for 4bit data bit 0 | ||
222 | #define LCD_DATA1_PORT LCD_PORT //< port for 4bit data bit 1 | ||
223 | #define LCD_DATA2_PORT LCD_PORT //< port for 4bit data bit 2 | ||
224 | #define LCD_DATA3_PORT LCD_PORT //< port for 4bit data bit 3 | ||
225 | #define LCD_DATA0_PIN 4 //< pin for 4bit data bit 0 | ||
226 | #define LCD_DATA1_PIN 5 //< pin for 4bit data bit 1 | ||
227 | #define LCD_DATA2_PIN 6 //< pin for 4bit data bit 2 | ||
228 | #define LCD_DATA3_PIN 7 //< pin for 4bit data bit 3 | ||
229 | #define LCD_RS_PORT LCD_PORT //< port for RS line | ||
230 | #define LCD_RS_PIN 3 //< pin for RS line | ||
231 | #define LCD_RW_PORT LCD_PORT //< port for RW line | ||
232 | #define LCD_RW_PIN 2 //< pin for RW line | ||
233 | #define LCD_E_PORT LCD_PORT //< port for Enable line | ||
234 | #define LCD_E_PIN 1 //< pin for Enable line | ||
235 | #endif | ||
236 | */ | ||
237 | |||
238 | /* Bootmagic Lite key configuration */ | ||
239 | // #define BOOTMAGIC_LITE_ROW 0 | ||
240 | // #define BOOTMAGIC_LITE_COLUMN 0 | ||
241 | // | ||
242 | /* | ||
243 | #define USE_I2C | ||
244 | #define MASTER_LEFT | ||
245 | #define EEHANDS | ||
246 | */ | ||
diff --git a/keyboards/hecomi/hecomi.c b/keyboards/hecomi/hecomi.c new file mode 100644 index 000000000..9d0d93fa1 --- /dev/null +++ b/keyboards/hecomi/hecomi.c | |||
@@ -0,0 +1,44 @@ | |||
1 | /* Copyright 2018 takashiski | ||
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 | #include "hecomi.h" | ||
17 | #include "split_util.h" | ||
18 | |||
19 | void matrix_init_kb(void) { | ||
20 | // put your keyboard start-up code here | ||
21 | // runs once when the firmware starts up | ||
22 | |||
23 | matrix_init_user(); | ||
24 | } | ||
25 | |||
26 | void matrix_scan_kb(void) { | ||
27 | // put your looping keyboard code here | ||
28 | // runs every cycle (a lot) | ||
29 | |||
30 | matrix_scan_user(); | ||
31 | } | ||
32 | |||
33 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
34 | // put your per-action keyboard code here | ||
35 | // runs for every action, just before processing by the firmware | ||
36 | |||
37 | return process_record_user(keycode, record); | ||
38 | } | ||
39 | |||
40 | void led_set_kb(uint8_t usb_led) { | ||
41 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
42 | |||
43 | led_set_user(usb_led); | ||
44 | } | ||
diff --git a/keyboards/hecomi/hecomi.h b/keyboards/hecomi/hecomi.h new file mode 100644 index 000000000..ef90a8ead --- /dev/null +++ b/keyboards/hecomi/hecomi.h | |||
@@ -0,0 +1,89 @@ | |||
1 | /* Copyright 2018 takashiski | ||
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 | #pragma once | ||
17 | |||
18 | #include "quantum.h" | ||
19 | |||
20 | /* This a shortcut to help you visually see your layout. | ||
21 | * | ||
22 | * The first section contains all of the arguments representing the physical | ||
23 | * layout of the board and position of the keys. | ||
24 | * | ||
25 | * The second converts the arguments into a two-dimensional array which | ||
26 | * represents the switch matrix. | ||
27 | */ | ||
28 | |||
29 | |||
30 | |||
31 | /* | ||
32 | Left hand : | ||
33 | 7 | ||
34 | 7 | ||
35 | 6 | ||
36 | 6 | ||
37 | 6 | ||
38 | |||
39 | 32 | ||
40 | |||
41 | Right hand: | ||
42 | |||
43 | 8 | ||
44 | 8 | ||
45 | 7 | ||
46 | 8 | ||
47 | 6 | ||
48 | |||
49 | 37 | ||
50 | */ | ||
51 | |||
52 | #define LAYOUT(\ | ||
53 | K00, K01, K02, K03, K04, K05, K06, K50, K51, K52, K53, K54, K55, K56, K57, \ | ||
54 | K10, K11, K12, K13, K14, K15, K16, K60, K61, K62, K63, K64, K65, K66, K67, \ | ||
55 | K20, K21, K22, K23, K24, K25, K71, K72, K73, K74, K75, K76, K77,\ | ||
56 | K30, K31, K32, K33, K34, K35, K80, K81, K82, K83, K84, K85, K86, K87, \ | ||
57 | K40, K41, K42, K43, K44, K45, K92, K93, K94, K95, K96, K97\ | ||
58 | ) {\ | ||
59 | {K00, K01, K02, K03, K04, K05, K06, KC_NO},\ | ||
60 | {K10, K11, K12, K13, K14, K15, K16, KC_NO},\ | ||
61 | {K20, K21, K22, K23, K24, K25, KC_NO, KC_NO},\ | ||
62 | {K30, K31, K32, K33, K34, K35, KC_NO, KC_NO},\ | ||
63 | {K40, K41, K42, K43, K44, K45, KC_NO, KC_NO},\ | ||
64 | {K50, K51, K52, K53, K54, K55, K56, K57},\ | ||
65 | {K60, K61, K62, K63, K64, K65, K66, K67},\ | ||
66 | {KC_NO, K71, K72, K73, K74, K75, K76, K77},\ | ||
67 | {K80, K81, K82, K83, K84, K85, K86, K87},\ | ||
68 | {KC_NO, KC_NO, K92, K93, K94, K95, K96, K97}\ | ||
69 | } | ||
70 | |||
71 | #define LAYOUT_kc(\ | ||
72 | K00, K01, K02, K03, K04, K05, K06, K50, K51, K52, K53, K54, K55, K56, K57, \ | ||
73 | K10, K11, K12, K13, K14, K15, K16, K60, K61, K62, K63, K64, K65, K66, K67, \ | ||
74 | K20, K21, K22, K23, K24, K25, K71, K72, K73, K74, K75, K76, K77,\ | ||
75 | K30, K31, K32, K33, K34, K35, K80, K81, K82, K83, K84, K85, K86, K87, \ | ||
76 | K40, K41, K42, K43, K44, K45, K92, K93, K94, K95, K96, K97\ | ||
77 | ) {\ | ||
78 | {KC_##K00, KC_##K01, KC_##K02, KC_##K03, KC_##K04, KC_##K05, KC_##K06, KC_NO},\ | ||
79 | {KC_##K10, KC_##K11, KC_##K12, KC_##K13, KC_##K14, KC_##K15, KC_##K16, KC_NO},\ | ||
80 | {KC_##K20, KC_##K21, KC_##K22, KC_##K23, KC_##K24, KC_##K25, KC_NO, KC_NO},\ | ||
81 | {KC_##K30, KC_##K31, KC_##K32, KC_##K33, KC_##K34, KC_##K35, KC_NO, KC_NO},\ | ||
82 | {KC_##K40, KC_##K41, KC_##K42, KC_##K43, KC_##K44, KC_##K45, KC_NO, KC_NO},\ | ||
83 | {KC_##K50, KC_##K51, KC_##K52, KC_##K53, KC_##K54, KC_##K55, KC_##K56, KC_##K57},\ | ||
84 | {KC_##K60, KC_##K61, KC_##K62, KC_##K63, KC_##K64, KC_##K65, KC_##K66, KC_##K67},\ | ||
85 | {KC_NO, KC_##K71, KC_##K72, KC_##K73, KC_##K74, KC_##K75, KC_##K76, KC_##K77},\ | ||
86 | {KC_##K80, KC_##K81, KC_##K82, KC_##K83, KC_##K84, KC_##K85, KC_##K86, KC_##K87},\ | ||
87 | {KC_NO, KC_NO, KC_##K92, KC_##K93, KC_##K94, KC_##K95, KC_##K96, KC_##K97}\ | ||
88 | } | ||
89 | |||
diff --git a/keyboards/hecomi/info.json b/keyboards/hecomi/info.json new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/keyboards/hecomi/info.json | |||
diff --git a/keyboards/hecomi/keymaps/default/config.h b/keyboards/hecomi/keymaps/default/config.h new file mode 100644 index 000000000..4496c5910 --- /dev/null +++ b/keyboards/hecomi/keymaps/default/config.h | |||
@@ -0,0 +1,19 @@ | |||
1 | /* Copyright 2018 REPLACE_WITH_YOUR_NAME | ||
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 | // place overrides here | ||
diff --git a/keyboards/hecomi/keymaps/default/keymap.c b/keyboards/hecomi/keymaps/default/keymap.c new file mode 100644 index 000000000..299d9037a --- /dev/null +++ b/keyboards/hecomi/keymaps/default/keymap.c | |||
@@ -0,0 +1,89 @@ | |||
1 | /* Copyright 2018 takashiski | ||
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 | #include QMK_KEYBOARD_H | ||
17 | #include "hecomi.h" | ||
18 | |||
19 | // Defines the keycodes used by our macros in process_record_user | ||
20 | enum custom_keycodes { | ||
21 | QMKBEST = SAFE_RANGE, | ||
22 | QMKURL | ||
23 | }; | ||
24 | |||
25 | //R1:7 + 8 = 15 | ||
26 | //R2:7 + 8 = 15 | ||
27 | //R3:6 + 7 = 13 | ||
28 | //R4:6 + 8 = 14 | ||
29 | //R5:6 + 6 = 12 | ||
30 | //total : 69 keys | ||
31 | // | ||
32 | enum layers{ | ||
33 | DF, | ||
34 | FN | ||
35 | }; | ||
36 | |||
37 | #define KC_FN MO(FN) | ||
38 | #define KC_SFT(XXX) LSFT(XXX) | ||
39 | |||
40 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
41 | [DF]=LAYOUT(\ | ||
42 | 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_NUHS,KC_GRV,\ | ||
43 | KC_TAB ,KC_Q,KC_W,KC_E,KC_R,KC_T,KC_Y, KC_Y,KC_U,KC_I,KC_O,KC_P,KC_LBRC,KC_RBRC,KC_DEL,\ | ||
44 | KC_LCTRL ,KC_A,KC_S,KC_D,KC_F,KC_G, KC_H,KC_J,KC_K,KC_L,KC_SCLN,KC_QUOT,KC_ENT,\ | ||
45 | KC_LSFT ,KC_Z,KC_X,KC_C,KC_V,KC_B, KC_B,KC_N,KC_M,KC_COMM,KC_DOT,KC_SLSH,KC_RSFT,KC_FN,\ | ||
46 | KC_LCTRL,KC_LGUI,KC_LALT,KC_MHEN,KC_BSPC,KC_SPC, KC_ENT,KC_ESC,KC_HENK,KC_RALT,KC_RGUI,KC_RCTRL\ | ||
47 | ), | ||
48 | [FN]=LAYOUT(\ | ||
49 | 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_INS,KC_DEL,\ | ||
50 | KC_TAB ,KC_Q,KC_W,KC_E,KC_R,KC_T,KC_Y, KC_Y,KC_U,KC_PSCR,KC_SLCK,KC_PAUSE,KC_UP,KC_RBRC,KC_BSPC,\ | ||
51 | KC_CAPS ,KC_A,KC_S,KC_D,KC_F,KC_G, KC_SFT(KC_8),KC_SLSH,KC_HOME,KC_PGUP,KC_LEFT,KC_RIGHT,KC_ENT,\ | ||
52 | KC_LSFT ,KC_Z,KC_X,KC_C,KC_V,KC_B, KC_B,KC_SFT(KC_EQL),KC_MINS,KC_END,KC_PGDN,KC_DOWN,KC_RSFT,KC_TRNS,\ | ||
53 | KC_LCTRL,KC_LGUI,KC_LALT,KC_MHEN,KC_BSPC,KC_SPC, KC_ENT,KC_ESC,KC_HENK,KC_RALT,KC_RGUI,KC_RCTRL\ | ||
54 | ), | ||
55 | }; | ||
56 | |||
57 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
58 | switch (keycode) { | ||
59 | case QMKBEST: | ||
60 | if (record->event.pressed) { | ||
61 | // when keycode QMKBEST is pressed | ||
62 | SEND_STRING("QMK is the best thing ever!"); | ||
63 | } else { | ||
64 | // when keycode QMKBEST is released | ||
65 | } | ||
66 | break; | ||
67 | case QMKURL: | ||
68 | if (record->event.pressed) { | ||
69 | // when keycode QMKURL is pressed | ||
70 | SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER)); | ||
71 | } else { | ||
72 | // when keycode QMKURL is released | ||
73 | } | ||
74 | break; | ||
75 | } | ||
76 | return true; | ||
77 | } | ||
78 | |||
79 | void matrix_init_user(void) { | ||
80 | |||
81 | } | ||
82 | |||
83 | void matrix_scan_user(void) { | ||
84 | |||
85 | } | ||
86 | |||
87 | void led_set_user(uint8_t usb_led) { | ||
88 | |||
89 | } | ||
diff --git a/keyboards/hecomi/keymaps/default/readme.md b/keyboards/hecomi/keymaps/default/readme.md new file mode 100644 index 000000000..e44f3d6f6 --- /dev/null +++ b/keyboards/hecomi/keymaps/default/readme.md | |||
@@ -0,0 +1 @@ | |||
# The default keymap for hecomi_alpha \ No newline at end of file | |||
diff --git a/keyboards/hecomi/readme.md b/keyboards/hecomi/readme.md new file mode 100644 index 000000000..79a80f35e --- /dev/null +++ b/keyboards/hecomi/readme.md | |||
@@ -0,0 +1,17 @@ | |||
1 | # hecomi | ||
2 | |||
3 |  | ||
4 | |||
5 | This keyboard based on HHKB pro 2 and physical layout designed by @hecomi and @takashiski. | ||
6 | |||
7 | This keyboard use 2 pro micro's, but you can use USB type-c. There are hand wiring . | ||
8 | |||
9 | Keyboard Maintainer: [takashiski](https://github.com/takashiski) | ||
10 | Hardware Supported: hecomi_alpha, promicro | ||
11 | Hardware Availability: booth(@skyhigh_works) | ||
12 | |||
13 | Make example for this keyboard (after setting up your build environment): | ||
14 | |||
15 | make hecomi/alpha:default | ||
16 | |||
17 | See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). | ||
diff --git a/keyboards/hecomi/rules.mk b/keyboards/hecomi/rules.mk new file mode 100644 index 000000000..19b763d43 --- /dev/null +++ b/keyboards/hecomi/rules.mk | |||
@@ -0,0 +1,85 @@ | |||
1 | DEFAULT_FOLDER=hecomi/alpha | ||
2 | # | ||
3 | # | ||
4 | # MCU name | ||
5 | #MCU = at90usb1286 | ||
6 | MCU = atmega32u4 | ||
7 | |||
8 | # Processor frequency. | ||
9 | # This will define a symbol, F_CPU, in all source code files equal to the | ||
10 | # processor frequency in Hz. You can then use this symbol in your source code to | ||
11 | # calculate timings. Do NOT tack on a 'UL' at the end, this will be done | ||
12 | # automatically to create a 32-bit value in your source code. | ||
13 | # | ||
14 | # This will be an integer division of F_USB below, as it is sourced by | ||
15 | # F_USB after it has run through any CPU prescalers. Note that this value | ||
16 | # does not *change* the processor frequency - it should merely be updated to | ||
17 | # reflect the processor speed set externally so that the code can use accurate | ||
18 | # software delays. | ||
19 | F_CPU = 16000000 | ||
20 | |||
21 | |||
22 | # | ||
23 | # LUFA specific | ||
24 | # | ||
25 | # Target architecture (see library "Board Types" documentation). | ||
26 | ARCH = AVR8 | ||
27 | |||
28 | # Input clock frequency. | ||
29 | # This will define a symbol, F_USB, in all source code files equal to the | ||
30 | # input clock frequency (before any prescaling is performed) in Hz. This value may | ||
31 | # differ from F_CPU if prescaling is used on the latter, and is required as the | ||
32 | # raw input clock is fed directly to the PLL sections of the AVR for high speed | ||
33 | # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' | ||
34 | # at the end, this will be done automatically to create a 32-bit value in your | ||
35 | # source code. | ||
36 | # | ||
37 | # If no clock division is performed on the input clock inside the AVR (via the | ||
38 | # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. | ||
39 | F_USB = $(F_CPU) | ||
40 | |||
41 | # Interrupt driven control endpoint task(+60) | ||
42 | OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | ||
43 | |||
44 | |||
45 | # Bootloader selection | ||
46 | # Teensy halfkay | ||
47 | # Pro Micro caterina | ||
48 | # Atmel DFU atmel-dfu | ||
49 | # LUFA DFU lufa-dfu | ||
50 | # QMK DFU qmk-dfu | ||
51 | # atmega32a bootloadHID | ||
52 | BOOTLOADER = caterina | ||
53 | |||
54 | |||
55 | # If you don't know the bootloader type, then you can specify the | ||
56 | # Boot Section Size in *bytes* by uncommenting out the OPT_DEFS line | ||
57 | # Teensy halfKay 512 | ||
58 | # Teensy++ halfKay 1024 | ||
59 | # Atmel DFU loader 4096 | ||
60 | # LUFA bootloader 4096 | ||
61 | # USBaspLoader 2048 | ||
62 | # OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
63 | |||
64 | |||
65 | # Build Options | ||
66 | # change yes to no to disable | ||
67 | # | ||
68 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | ||
69 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
70 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | ||
71 | CONSOLE_ENABLE = yes # Console for debug(+400) | ||
72 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
73 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
74 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
75 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
76 | NKRO_ENABLE = no # USB Nkey Rollover | ||
77 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | ||
78 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
79 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
80 | UNICODE_ENABLE = no # Unicode | ||
81 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | ||
82 | AUDIO_ENABLE = no # Audio output on port C6 | ||
83 | FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches | ||
84 | HD44780_ENABLE = no # Enable support for HD44780 based LCDs (+400) | ||
85 | SPLIT_KEYBOARD = yes | ||