mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-30 21:02:32 +01:00 
			
		
		
		
	[Keyboard] Add str.merro60 pcb (#17097)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Alexander Lee <aclee3@CGHan-Macbook-2015.local> Co-authored-by: chalex <chlxbsmt@gmail.com>
This commit is contained in:
		
							parent
							
								
									15a86d5c53
								
							
						
					
					
						commit
						3826fca637
					
				
							
								
								
									
										81
									
								
								keyboards/chlx/str_merro60/config.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										81
									
								
								keyboards/chlx/str_merro60/config.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,81 @@ | |||||||
|  | /*
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>.
 | ||||||
|  | */ | ||||||
|  | 
 | ||||||
|  | #pragma once | ||||||
|  | 
 | ||||||
|  | #include "config_common.h" | ||||||
|  | 
 | ||||||
|  | /* USB Device descriptor parameter */ | ||||||
|  | #define VENDOR_ID       0x4358 // "CX" - chlx
 | ||||||
|  | #define PRODUCT_ID      0x0602 | ||||||
|  | #define DEVICE_VER      0x0100 | ||||||
|  | #define MANUFACTURER    chlx bsmt | ||||||
|  | #define PRODUCT         chlx str.merro60 | ||||||
|  | 
 | ||||||
|  | /* key matrix size */ | ||||||
|  | #define MATRIX_ROWS 10 | ||||||
|  | #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 { C6, C7, F7, F6, F5, F4, F1, F0, B3, B7 } | ||||||
|  | #define MATRIX_COL_PINS { D0, D1, D2, E6, B0, B1, B2 } | ||||||
|  | #define UNUSED_PINS | ||||||
|  | // #define UNUSED_PINS { B4, B5, B6, D4, D5, D6, D7 }
 | ||||||
|  | 
 | ||||||
|  | /* COL2ROW, ROW2COL*/ | ||||||
|  | #define DIODE_DIRECTION ROW2COL | ||||||
|  | 
 | ||||||
|  | #define RGB_DI_PIN D3 | ||||||
|  | #ifdef RGB_DI_PIN | ||||||
|  | #   define RGBLIGHT_EFFECT_BREATHING | ||||||
|  | #   define RGBLIGHT_EFFECT_RAINBOW_MOOD | ||||||
|  | #   define RGBLIGHT_EFFECT_RAINBOW_SWIRL | ||||||
|  | #   define RGBLIGHT_EFFECT_SNAKE | ||||||
|  | #   define RGBLIGHT_EFFECT_KNIGHT | ||||||
|  | #   define RGBLIGHT_EFFECT_CHRISTMAS | ||||||
|  | #   define RGBLIGHT_EFFECT_STATIC_GRADIENT | ||||||
|  | #   define RGBLIGHT_EFFECT_RGB_TEST | ||||||
|  | #   define RGBLIGHT_EFFECT_ALTERNATING | ||||||
|  | #   define RGBLIGHT_EFFECT_TWINKLE | ||||||
|  | #   define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_SWIRL + 5 | ||||||
|  | #   define RGBLED_NUM 12 | ||||||
|  | #   define RGBLIGHT_LED_MAP { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 } | ||||||
|  | #   define RGBLIGHT_HUE_STEP 8 | ||||||
|  | #   define RGBLIGHT_SAT_STEP 8 | ||||||
|  | #   define RGBLIGHT_VAL_STEP 8 | ||||||
|  | #   define RGBLIGHT_SLEEP | ||||||
|  | #endif | ||||||
|  | 
 | ||||||
|  | /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ | ||||||
|  | #define DEBOUNCE 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 | ||||||
|  | 
 | ||||||
|  | /* VIA related config */ | ||||||
|  | #define VIA_EEPROM_LAYOUT_OPTIONS_SIZE 2 | ||||||
							
								
								
									
										365
									
								
								keyboards/chlx/str_merro60/info.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										365
									
								
								keyboards/chlx/str_merro60/info.json
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,365 @@ | |||||||
|  | { | ||||||
|  |     "keyboard_name": "str.merro60", | ||||||
|  |     "url": "www.github.com/gaclee3b", | ||||||
|  |     "maintainer": "gaclee3b", | ||||||
|  |     "layout_aliases": { | ||||||
|  |         "LAYOUT_default": "LAYOUT_all", | ||||||
|  |         "LAYOUT_hhkb": "LAYOUT_60_hhkb", | ||||||
|  |         "LAYOUT_iso": "LAYOUT_60_iso_split_bs_rshift", | ||||||
|  |         "LAYOUT_tsangan": "LAYOUT_60_tsangan_hhkb" | ||||||
|  |     }, | ||||||
|  |     "layouts": { | ||||||
|  |         "LAYOUT_all": { | ||||||
|  |             "layout": [ | ||||||
|  |                 {"x": 0,      "y": 0}, | ||||||
|  |                 {"x": 1,      "y": 0}, | ||||||
|  |                 {"x": 2,      "y": 0}, | ||||||
|  |                 {"x": 3,      "y": 0}, | ||||||
|  |                 {"x": 4,      "y": 0}, | ||||||
|  |                 {"x": 5,      "y": 0}, | ||||||
|  |                 {"x": 6,      "y": 0}, | ||||||
|  |                 {"x": 7,      "y": 0}, | ||||||
|  |                 {"x": 8,      "y": 0}, | ||||||
|  |                 {"x": 9,      "y": 0}, | ||||||
|  |                 {"x": 10,     "y": 0}, | ||||||
|  |                 {"x": 11,     "y": 0}, | ||||||
|  |                 {"x": 12,     "y": 0}, | ||||||
|  |                 {"x": 13,     "y": 0}, | ||||||
|  |                 {"x": 14,     "y": 0}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 1, "w": 1.5}, | ||||||
|  |                 {"x": 1.5,    "y": 1}, | ||||||
|  |                 {"x": 2.5,    "y": 1}, | ||||||
|  |                 {"x": 3.5,    "y": 1}, | ||||||
|  |                 {"x": 4.5,    "y": 1}, | ||||||
|  |                 {"x": 5.5,    "y": 1}, | ||||||
|  |                 {"x": 6.5,    "y": 1}, | ||||||
|  |                 {"x": 7.5,    "y": 1}, | ||||||
|  |                 {"x": 8.5,    "y": 1}, | ||||||
|  |                 {"x": 9.5,    "y": 1}, | ||||||
|  |                 {"x": 10.5,   "y": 1}, | ||||||
|  |                 {"x": 11.5,   "y": 1}, | ||||||
|  |                 {"x": 12.5,   "y": 1}, | ||||||
|  |                 {"x": 13.5,   "y": 1, "w": 1.5}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 2, "w": 1.75}, | ||||||
|  |                 {"x": 1.75,   "y": 2}, | ||||||
|  |                 {"x": 2.75,   "y": 2}, | ||||||
|  |                 {"x": 3.75,   "y": 2}, | ||||||
|  |                 {"x": 4.75,   "y": 2}, | ||||||
|  |                 {"x": 5.75,   "y": 2}, | ||||||
|  |                 {"x": 6.75,   "y": 2}, | ||||||
|  |                 {"x": 7.75,   "y": 2}, | ||||||
|  |                 {"x": 8.75,   "y": 2}, | ||||||
|  |                 {"x": 9.75,   "y": 2}, | ||||||
|  |                 {"x": 10.75,  "y": 2}, | ||||||
|  |                 {"x": 11.75,  "y": 2}, | ||||||
|  |                 {"x": 12.75,  "y": 2}, | ||||||
|  |                 {"x": 13.75,  "y": 2, "w": 1.25}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 3, "w": 1.25}, | ||||||
|  |                 {"x": 1.25,   "y": 3}, | ||||||
|  |                 {"x": 2.25,   "y": 3}, | ||||||
|  |                 {"x": 3.25,   "y": 3}, | ||||||
|  |                 {"x": 4.25,   "y": 3}, | ||||||
|  |                 {"x": 5.25,   "y": 3}, | ||||||
|  |                 {"x": 6.25,   "y": 3}, | ||||||
|  |                 {"x": 7.25,   "y": 3}, | ||||||
|  |                 {"x": 8.25,   "y": 3}, | ||||||
|  |                 {"x": 9.25,   "y": 3}, | ||||||
|  |                 {"x": 10.25,  "y": 3}, | ||||||
|  |                 {"x": 11.25,  "y": 3}, | ||||||
|  |                 {"x": 12.25,  "y": 3, "w": 1.75}, | ||||||
|  |                 {"x": 14,     "y": 3}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 1.25,   "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 2.5,    "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 3.75,   "y": 4, "w": 6.25}, | ||||||
|  |                 {"x": 10,     "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 11.25,  "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 12.5,   "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 13.75,  "y": 4, "w": 1.25} | ||||||
|  |             ] | ||||||
|  |         }, | ||||||
|  |         "LAYOUT_60_ansi": { | ||||||
|  |             "layout": [ | ||||||
|  |                 {"x": 0,      "y": 0}, | ||||||
|  |                 {"x": 1,      "y": 0}, | ||||||
|  |                 {"x": 2,      "y": 0}, | ||||||
|  |                 {"x": 3,      "y": 0}, | ||||||
|  |                 {"x": 4,      "y": 0}, | ||||||
|  |                 {"x": 5,      "y": 0}, | ||||||
|  |                 {"x": 6,      "y": 0}, | ||||||
|  |                 {"x": 7,      "y": 0}, | ||||||
|  |                 {"x": 8,      "y": 0}, | ||||||
|  |                 {"x": 9,      "y": 0}, | ||||||
|  |                 {"x": 10,     "y": 0}, | ||||||
|  |                 {"x": 11,     "y": 0}, | ||||||
|  |                 {"x": 12,     "y": 0}, | ||||||
|  |                 {"x": 13,     "y": 0, "w": 2}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 1, "w": 1.5}, | ||||||
|  |                 {"x": 1.5,    "y": 1}, | ||||||
|  |                 {"x": 2.5,    "y": 1}, | ||||||
|  |                 {"x": 3.5,    "y": 1}, | ||||||
|  |                 {"x": 4.5,    "y": 1}, | ||||||
|  |                 {"x": 5.5,    "y": 1}, | ||||||
|  |                 {"x": 6.5,    "y": 1}, | ||||||
|  |                 {"x": 7.5,    "y": 1}, | ||||||
|  |                 {"x": 8.5,    "y": 1}, | ||||||
|  |                 {"x": 9.5,    "y": 1}, | ||||||
|  |                 {"x": 10.5,   "y": 1}, | ||||||
|  |                 {"x": 11.5,   "y": 1}, | ||||||
|  |                 {"x": 12.5,   "y": 1}, | ||||||
|  |                 {"x": 13.5,   "y": 1, "w": 1.5}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 2, "w": 1.75}, | ||||||
|  |                 {"x": 1.75,   "y": 2}, | ||||||
|  |                 {"x": 2.75,   "y": 2}, | ||||||
|  |                 {"x": 3.75,   "y": 2}, | ||||||
|  |                 {"x": 4.75,   "y": 2}, | ||||||
|  |                 {"x": 5.75,   "y": 2}, | ||||||
|  |                 {"x": 6.75,   "y": 2}, | ||||||
|  |                 {"x": 7.75,   "y": 2}, | ||||||
|  |                 {"x": 8.75,   "y": 2}, | ||||||
|  |                 {"x": 9.75,   "y": 2}, | ||||||
|  |                 {"x": 10.75,  "y": 2}, | ||||||
|  |                 {"x": 11.75,  "y": 2}, | ||||||
|  |                 {"x": 12.75,  "y": 2, "w": 2.25}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 3, "w": 2.25}, | ||||||
|  |                 {"x": 2.25,   "y": 3}, | ||||||
|  |                 {"x": 3.25,   "y": 3}, | ||||||
|  |                 {"x": 4.25,   "y": 3}, | ||||||
|  |                 {"x": 5.25,   "y": 3}, | ||||||
|  |                 {"x": 6.25,   "y": 3}, | ||||||
|  |                 {"x": 7.25,   "y": 3}, | ||||||
|  |                 {"x": 8.25,   "y": 3}, | ||||||
|  |                 {"x": 9.25,   "y": 3}, | ||||||
|  |                 {"x": 10.25,  "y": 3}, | ||||||
|  |                 {"x": 11.25,  "y": 3}, | ||||||
|  |                 {"x": 12.25,  "y": 3, "w": 2.75}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 1.25,   "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 2.5,    "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 3.75,   "y": 4, "w": 6.25}, | ||||||
|  |                 {"x": 10,     "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 11.25,  "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 12.5,   "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 13.75,  "y": 4, "w": 1.25} | ||||||
|  |             ] | ||||||
|  |         }, | ||||||
|  |         "LAYOUT_60_hhkb": { | ||||||
|  |             "layout": [ | ||||||
|  |                 {"x": 0,      "y": 0}, | ||||||
|  |                 {"x": 1,      "y": 0}, | ||||||
|  |                 {"x": 2,      "y": 0}, | ||||||
|  |                 {"x": 3,      "y": 0}, | ||||||
|  |                 {"x": 4,      "y": 0}, | ||||||
|  |                 {"x": 5,      "y": 0}, | ||||||
|  |                 {"x": 6,      "y": 0}, | ||||||
|  |                 {"x": 7,      "y": 0}, | ||||||
|  |                 {"x": 8,      "y": 0}, | ||||||
|  |                 {"x": 9,      "y": 0}, | ||||||
|  |                 {"x": 10,     "y": 0}, | ||||||
|  |                 {"x": 11,     "y": 0}, | ||||||
|  |                 {"x": 12,     "y": 0}, | ||||||
|  |                 {"x": 13,     "y": 0}, | ||||||
|  |                 {"x": 14,     "y": 0}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 1, "w": 1.5}, | ||||||
|  |                 {"x": 1.5,    "y": 1}, | ||||||
|  |                 {"x": 2.5,    "y": 1}, | ||||||
|  |                 {"x": 3.5,    "y": 1}, | ||||||
|  |                 {"x": 4.5,    "y": 1}, | ||||||
|  |                 {"x": 5.5,    "y": 1}, | ||||||
|  |                 {"x": 6.5,    "y": 1}, | ||||||
|  |                 {"x": 7.5,    "y": 1}, | ||||||
|  |                 {"x": 8.5,    "y": 1}, | ||||||
|  |                 {"x": 9.5,    "y": 1}, | ||||||
|  |                 {"x": 10.5,   "y": 1}, | ||||||
|  |                 {"x": 11.5,   "y": 1}, | ||||||
|  |                 {"x": 12.5,   "y": 1}, | ||||||
|  |                 {"x": 13.5,   "y": 1, "w": 1.5}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 2, "w": 1.75}, | ||||||
|  |                 {"x": 1.75,   "y": 2}, | ||||||
|  |                 {"x": 2.75,   "y": 2}, | ||||||
|  |                 {"x": 3.75,   "y": 2}, | ||||||
|  |                 {"x": 4.75,   "y": 2}, | ||||||
|  |                 {"x": 5.75,   "y": 2}, | ||||||
|  |                 {"x": 6.75,   "y": 2}, | ||||||
|  |                 {"x": 7.75,   "y": 2}, | ||||||
|  |                 {"x": 8.75,   "y": 2}, | ||||||
|  |                 {"x": 9.75,   "y": 2}, | ||||||
|  |                 {"x": 10.75,  "y": 2}, | ||||||
|  |                 {"x": 11.75,  "y": 2}, | ||||||
|  |                 {"x": 12.75,  "y": 2, "w": 2.25}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 3, "w": 2.25}, | ||||||
|  |                 {"x": 2.25,   "y": 3}, | ||||||
|  |                 {"x": 3.25,   "y": 3}, | ||||||
|  |                 {"x": 4.25,   "y": 3}, | ||||||
|  |                 {"x": 5.25,   "y": 3}, | ||||||
|  |                 {"x": 6.25,   "y": 3}, | ||||||
|  |                 {"x": 7.25,   "y": 3}, | ||||||
|  |                 {"x": 8.25,   "y": 3}, | ||||||
|  |                 {"x": 9.25,   "y": 3}, | ||||||
|  |                 {"x": 10.25,  "y": 3}, | ||||||
|  |                 {"x": 11.25,  "y": 3}, | ||||||
|  |                 {"x": 12.25,  "y": 3, "w": 1.75}, | ||||||
|  |                 {"x": 14,     "y": 3}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 1.5,    "y": 4}, | ||||||
|  |                 {"x": 2.5,    "y": 4, "w": 1.5}, | ||||||
|  |                 {"x": 4,      "y": 4, "w": 7}, | ||||||
|  |                 {"x": 11,     "y": 4, "w": 1.5}, | ||||||
|  |                 {"x": 12.5,   "y": 4} | ||||||
|  |             ] | ||||||
|  |         }, | ||||||
|  |         "LAYOUT_60_iso_split_bs_rshift": { | ||||||
|  |             "layout": [ | ||||||
|  |                 {"x": 0,      "y": 0}, | ||||||
|  |                 {"x": 1,      "y": 0}, | ||||||
|  |                 {"x": 2,      "y": 0}, | ||||||
|  |                 {"x": 3,      "y": 0}, | ||||||
|  |                 {"x": 4,      "y": 0}, | ||||||
|  |                 {"x": 5,      "y": 0}, | ||||||
|  |                 {"x": 6,      "y": 0}, | ||||||
|  |                 {"x": 7,      "y": 0}, | ||||||
|  |                 {"x": 8,      "y": 0}, | ||||||
|  |                 {"x": 9,      "y": 0}, | ||||||
|  |                 {"x": 10,     "y": 0}, | ||||||
|  |                 {"x": 11,     "y": 0}, | ||||||
|  |                 {"x": 12,     "y": 0}, | ||||||
|  |                 {"x": 13,     "y": 0}, | ||||||
|  |                 {"x": 14,     "y": 0}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 1, "w": 1.5}, | ||||||
|  |                 {"x": 1.5,    "y": 1}, | ||||||
|  |                 {"x": 2.5,    "y": 1}, | ||||||
|  |                 {"x": 3.5,    "y": 1}, | ||||||
|  |                 {"x": 4.5,    "y": 1}, | ||||||
|  |                 {"x": 5.5,    "y": 1}, | ||||||
|  |                 {"x": 6.5,    "y": 1}, | ||||||
|  |                 {"x": 7.5,    "y": 1}, | ||||||
|  |                 {"x": 8.5,    "y": 1}, | ||||||
|  |                 {"x": 9.5,    "y": 1}, | ||||||
|  |                 {"x": 10.5,   "y": 1}, | ||||||
|  |                 {"x": 11.5,   "y": 1}, | ||||||
|  |                 {"x": 12.5,   "y": 1}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 2, "w": 1.75}, | ||||||
|  |                 {"x": 1.75,   "y": 2}, | ||||||
|  |                 {"x": 2.75,   "y": 2}, | ||||||
|  |                 {"x": 3.75,   "y": 2}, | ||||||
|  |                 {"x": 4.75,   "y": 2}, | ||||||
|  |                 {"x": 5.75,   "y": 2}, | ||||||
|  |                 {"x": 6.75,   "y": 2}, | ||||||
|  |                 {"x": 7.75,   "y": 2}, | ||||||
|  |                 {"x": 8.75,   "y": 2}, | ||||||
|  |                 {"x": 9.75,   "y": 2}, | ||||||
|  |                 {"x": 10.75,  "y": 2}, | ||||||
|  |                 {"x": 11.75,  "y": 2}, | ||||||
|  |                 {"x": 12.75,  "y": 2}, | ||||||
|  |                 {"x": 13.75,  "y": 1, "w": 1.25, "h": 2}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 3, "w": 1.25}, | ||||||
|  |                 {"x": 1.25,   "y": 3}, | ||||||
|  |                 {"x": 2.25,   "y": 3}, | ||||||
|  |                 {"x": 3.25,   "y": 3}, | ||||||
|  |                 {"x": 4.25,   "y": 3}, | ||||||
|  |                 {"x": 5.25,   "y": 3}, | ||||||
|  |                 {"x": 6.25,   "y": 3}, | ||||||
|  |                 {"x": 7.25,   "y": 3}, | ||||||
|  |                 {"x": 8.25,   "y": 3}, | ||||||
|  |                 {"x": 9.25,   "y": 3}, | ||||||
|  |                 {"x": 10.25,  "y": 3}, | ||||||
|  |                 {"x": 11.25,  "y": 3}, | ||||||
|  |                 {"x": 12.25,  "y": 3, "w": 1.75}, | ||||||
|  |                 {"x": 14,     "y": 3}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 1.25,   "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 2.5,    "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 3.75,   "y": 4, "w": 6.25}, | ||||||
|  |                 {"x": 10,     "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 11.25,  "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 12.5,   "y": 4, "w": 1.25}, | ||||||
|  |                 {"x": 13.75,  "y": 4, "w": 1.25} | ||||||
|  |             ] | ||||||
|  |         }, | ||||||
|  |         "LAYOUT_60_tsangan_hhkb": { | ||||||
|  |             "layout": [ | ||||||
|  |                 {"x": 0,      "y": 0}, | ||||||
|  |                 {"x": 1,      "y": 0}, | ||||||
|  |                 {"x": 2,      "y": 0}, | ||||||
|  |                 {"x": 3,      "y": 0}, | ||||||
|  |                 {"x": 4,      "y": 0}, | ||||||
|  |                 {"x": 5,      "y": 0}, | ||||||
|  |                 {"x": 6,      "y": 0}, | ||||||
|  |                 {"x": 7,      "y": 0}, | ||||||
|  |                 {"x": 8,      "y": 0}, | ||||||
|  |                 {"x": 9,      "y": 0}, | ||||||
|  |                 {"x": 10,     "y": 0}, | ||||||
|  |                 {"x": 11,     "y": 0}, | ||||||
|  |                 {"x": 12,     "y": 0}, | ||||||
|  |                 {"x": 13,     "y": 0}, | ||||||
|  |                 {"x": 14,     "y": 0}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 1, "w": 1.5}, | ||||||
|  |                 {"x": 1.5,    "y": 1}, | ||||||
|  |                 {"x": 2.5,    "y": 1}, | ||||||
|  |                 {"x": 3.5,    "y": 1}, | ||||||
|  |                 {"x": 4.5,    "y": 1}, | ||||||
|  |                 {"x": 5.5,    "y": 1}, | ||||||
|  |                 {"x": 6.5,    "y": 1}, | ||||||
|  |                 {"x": 7.5,    "y": 1}, | ||||||
|  |                 {"x": 8.5,    "y": 1}, | ||||||
|  |                 {"x": 9.5,    "y": 1}, | ||||||
|  |                 {"x": 10.5,   "y": 1}, | ||||||
|  |                 {"x": 11.5,   "y": 1}, | ||||||
|  |                 {"x": 12.5,   "y": 1}, | ||||||
|  |                 {"x": 13.5,   "y": 1, "w": 1.5}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 2, "w": 1.75}, | ||||||
|  |                 {"x": 1.75,   "y": 2}, | ||||||
|  |                 {"x": 2.75,   "y": 2}, | ||||||
|  |                 {"x": 3.75,   "y": 2}, | ||||||
|  |                 {"x": 4.75,   "y": 2}, | ||||||
|  |                 {"x": 5.75,   "y": 2}, | ||||||
|  |                 {"x": 6.75,   "y": 2}, | ||||||
|  |                 {"x": 7.75,   "y": 2}, | ||||||
|  |                 {"x": 8.75,   "y": 2}, | ||||||
|  |                 {"x": 9.75,   "y": 2}, | ||||||
|  |                 {"x": 10.75,  "y": 2}, | ||||||
|  |                 {"x": 11.75,  "y": 2}, | ||||||
|  |                 {"x": 12.75,  "y": 2, "w": 2.25}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 3, "w": 2.25}, | ||||||
|  |                 {"x": 2.25,   "y": 3}, | ||||||
|  |                 {"x": 3.25,   "y": 3}, | ||||||
|  |                 {"x": 4.25,   "y": 3}, | ||||||
|  |                 {"x": 5.25,   "y": 3}, | ||||||
|  |                 {"x": 6.25,   "y": 3}, | ||||||
|  |                 {"x": 7.25,   "y": 3}, | ||||||
|  |                 {"x": 8.25,   "y": 3}, | ||||||
|  |                 {"x": 9.25,   "y": 3}, | ||||||
|  |                 {"x": 10.25,  "y": 3}, | ||||||
|  |                 {"x": 11.25,  "y": 3}, | ||||||
|  |                 {"x": 12.25,  "y": 3, "w": 1.75}, | ||||||
|  |                 {"x": 14,     "y": 3}, | ||||||
|  | 
 | ||||||
|  |                 {"x": 0,      "y": 4, "w": 1.5}, | ||||||
|  |                 {"x": 1.5,    "y": 4}, | ||||||
|  |                 {"x": 2.5,    "y": 4, "w": 1.5}, | ||||||
|  |                 {"x": 4,      "y": 4, "w": 7}, | ||||||
|  |                 {"x": 11,     "y": 4, "w": 1.5}, | ||||||
|  |                 {"x": 12.5,   "y": 4}, | ||||||
|  |                 {"x": 13.5,   "y": 4, "w": 1.5} | ||||||
|  |             ] | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  | } | ||||||
							
								
								
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/ansi/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/ansi/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,35 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  | 
 | ||||||
|  | [0] = LAYOUT_60_ansi( | ||||||
|  |   KC_GESC, 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_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, | ||||||
|  |   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, | ||||||
|  |   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_LCTL, KC_LGUI,                   KC_LALT, KC_SPC,                             KC_RALT, KC_RGUI, MO(1),   KC_RCTL), | ||||||
|  | 
 | ||||||
|  | [1] = LAYOUT_60_ansi( | ||||||
|  |   KC_GRV,  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_DEL, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP,   _______, RESET, | ||||||
|  |   _______, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, _______, _______, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT,          _______, | ||||||
|  |   _______,          _______, _______, _______, _______, _______, _______, _______, KC_END,  KC_PGDN, KC_DOWN, _______, | ||||||
|  |   _______, _______,                   _______, _______,                            _______, _______, _______, _______), | ||||||
|  | }; | ||||||
							
								
								
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/default/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/default/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,35 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  | 
 | ||||||
|  | [0] = LAYOUT_all( | ||||||
|  |   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, | ||||||
|  |   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_BSPC, | ||||||
|  |   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_UP,   KC_ENT, | ||||||
|  |   KC_LSFT, KC_LEFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, KC_RGHT, | ||||||
|  |   KC_LCTL, KC_LGUI,                   KC_LALT, KC_SPC,                             KC_RALT, KC_RGUI, KC_DOWN, KC_RCTL), | ||||||
|  | 
 | ||||||
|  | [1] = LAYOUT_all( | ||||||
|  |   KC_GRV,  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_DEL, | ||||||
|  |   _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, RESET, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, BL_DEC,  BL_TOGG, BL_INC,  BL_STEP, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______,                   _______, _______,                            _______, _______, _______, _______), | ||||||
|  | }; | ||||||
							
								
								
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/hhkb/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/hhkb/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,35 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  | 
 | ||||||
|  | [0] = LAYOUT_60_hhkb( | ||||||
|  |   KC_GESC, 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, | ||||||
|  |   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_BSPC, | ||||||
|  |   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, | ||||||
|  |   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), | ||||||
|  |            KC_LGUI,                   KC_LALT, KC_SPC,                                      KC_RALT, KC_RGUI), | ||||||
|  | 
 | ||||||
|  | [1] = LAYOUT_60_hhkb( | ||||||
|  |   KC_GRV,  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, | ||||||
|  |   KC_CAPS, _______, _______, _______, _______, _______, _______, _______, KC_PSCR, KC_SLCK, KC_PAUS, KC_UP,   _______, RESET, | ||||||
|  |   _______, KC_VOLD, KC_VOLU, KC_MUTE, _______, _______, _______, _______, KC_HOME, KC_PGUP, KC_LEFT, KC_RGHT,          _______, | ||||||
|  |            _______, _______, _______, _______, _______, _______, _______, _______, KC_END,  KC_PGDN, KC_DOWN, _______, _______, | ||||||
|  |            _______,                   _______, _______,                                     _______, _______), | ||||||
|  | }; | ||||||
							
								
								
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/iso/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/iso/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,35 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  | 
 | ||||||
|  | [0] = LAYOUT_60_iso( | ||||||
|  |   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_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_CAPS, KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    KC_SCLN, KC_QUOT, KC_NUHS, KC_ENT, | ||||||
|  |   KC_LSFT, KC_NUBS, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, | ||||||
|  |   KC_LCTL, KC_LGUI,                   KC_LALT, KC_SPC,                             KC_RALT, KC_RGUI, KC_APP,  KC_RCTL), | ||||||
|  | 
 | ||||||
|  | [1] = LAYOUT_60_iso( | ||||||
|  |   KC_GRV,  KC_F1,   KC_F2,   KC_F3,   KC_F4,   KC_F5,   KC_F6,   KC_F7,   KC_F8,   KC_F9,   KC_F10,  KC_F11,  KC_F12,  _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______,                   _______, _______,                            _______, _______, _______, _______), | ||||||
|  | }; | ||||||
							
								
								
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/tsangan/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								keyboards/chlx/str_merro60/keymaps/tsangan/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,35 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  | 
 | ||||||
|  | [0] = LAYOUT_60_tsangan_hhkb( | ||||||
|  |   KC_GESC, 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_BSPC, | ||||||
|  |   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, | ||||||
|  |   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, | ||||||
|  |   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), | ||||||
|  |   KC_LCTL, KC_LGUI,                   KC_LALT, KC_SPC,                                      KC_RALT, KC_RGUI, KC_RCTL), | ||||||
|  | 
 | ||||||
|  | [1] = LAYOUT_60_tsangan_hhkb( | ||||||
|  |   KC_GRV,  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_DEL,  _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,          _______, | ||||||
|  |   _______,          _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______,                   _______, _______,                                     _______, _______, _______), | ||||||
|  | }; | ||||||
							
								
								
									
										51
									
								
								keyboards/chlx/str_merro60/keymaps/via/keymap.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								keyboards/chlx/str_merro60/keymaps/via/keymap.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,51 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include QMK_KEYBOARD_H | ||||||
|  | 
 | ||||||
|  | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||||
|  | 
 | ||||||
|  | [0] = LAYOUT_all( | ||||||
|  |   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, | ||||||
|  |   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_BSPC, | ||||||
|  |   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_UP,   KC_ENT, | ||||||
|  |   KC_LSFT, KC_LEFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_SLSH, KC_RSFT, KC_RGHT, | ||||||
|  |   KC_LCTL, KC_LGUI,                   KC_LALT, KC_SPC,                             KC_RALT, KC_RGUI, KC_DOWN, KC_RCTL), | ||||||
|  | 
 | ||||||
|  | [1] = LAYOUT_all( | ||||||
|  |   KC_GRV,  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_DEL, | ||||||
|  |   _______, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, _______, _______, _______, _______, RESET, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, BL_DEC,  BL_TOGG, BL_INC,  BL_STEP, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______,                   _______, _______,                            _______, _______, _______, _______), | ||||||
|  | 
 | ||||||
|  | [2] = LAYOUT_all( | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______,                   _______, _______,                            _______, _______, _______, _______), | ||||||
|  | 
 | ||||||
|  | [3] = LAYOUT_all( | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | ||||||
|  |   _______, _______,                   _______, _______,                            _______, _______, _______, _______), | ||||||
|  | 
 | ||||||
|  | }; | ||||||
|  | 
 | ||||||
							
								
								
									
										3
									
								
								keyboards/chlx/str_merro60/keymaps/via/rules.mk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								keyboards/chlx/str_merro60/keymaps/via/rules.mk
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,3 @@ | |||||||
|  | VIA_ENABLE = yes | ||||||
|  | LTO_ENABLE = yes | ||||||
|  | 
 | ||||||
							
								
								
									
										21
									
								
								keyboards/chlx/str_merro60/readme.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								keyboards/chlx/str_merro60/readme.md
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,21 @@ | |||||||
|  | # str.merro60 | ||||||
|  | 
 | ||||||
|  | str.merro60 PCB | ||||||
|  | 
 | ||||||
|  | A standard 60% format keyboard pcb with USB-C and unified daughterboard compatibility. | ||||||
|  | Has modified cutouts to allow usage of certain tray mount cases into gummy gasket o-ring mount. | ||||||
|  | Has RGB underglow. | ||||||
|  | 
 | ||||||
|  | * Keyboard Maintainer: [Alexander Lee](https://github.com/gaclee3b) | ||||||
|  | * Hardware Supported: chlx PCB str.merro60.1.1 | ||||||
|  | 
 | ||||||
|  | Enter bootloader mode by any of the following options - | ||||||
|  | - When unplugged, holding the top-left key (typically ESC) while plugging in the keyboard | ||||||
|  | - When plugged in, pressing and releasing the reset button on the pcb bottom behind the CAPSLOCK / A-key region | ||||||
|  | - When plugged in, shorting out the two reset metal contacts near the spacebar switch location (NOT the spacebar switch pin holes) | ||||||
|  | 
 | ||||||
|  | Make example for this keyboard (after setting up your build environment): | ||||||
|  | 
 | ||||||
|  |     make chlx/str_merro60:default | ||||||
|  | 
 | ||||||
|  | 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). | ||||||
							
								
								
									
										20
									
								
								keyboards/chlx/str_merro60/rules.mk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								keyboards/chlx/str_merro60/rules.mk
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,20 @@ | |||||||
|  | # MCU name
 | ||||||
|  | MCU = atmega32u4 | ||||||
|  | 
 | ||||||
|  | # Bootloader selection
 | ||||||
|  | BOOTLOADER = atmel-dfu | ||||||
|  | 
 | ||||||
|  | # Build Options
 | ||||||
|  | #   change yes to no to disable
 | ||||||
|  | #
 | ||||||
|  | BOOTMAGIC_ENABLE = yes      # Enable Bootmagic Lite | ||||||
|  | MOUSEKEY_ENABLE = yes       # Mouse keys | ||||||
|  | EXTRAKEY_ENABLE = yes       # Audio control and System control | ||||||
|  | CONSOLE_ENABLE = no         # Console for debug | ||||||
|  | COMMAND_ENABLE = no         # Commands for debug and configuration | ||||||
|  | NKRO_ENABLE = yes           # Enable N-Key Rollover | ||||||
|  | BACKLIGHT_ENABLE = no       # Enable keyboard backlight functionality | ||||||
|  | RGBLIGHT_ENABLE = yes       # Enable keyboard RGB underglow | ||||||
|  | AUDIO_ENABLE = no           # Audio output | ||||||
|  | 
 | ||||||
|  | Layouts = 60_ansi 60_ansi_split_bs_rshift 60_hhkb 60_iso 60_tsangan_hhkb | ||||||
							
								
								
									
										18
									
								
								keyboards/chlx/str_merro60/str_merro60.c
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								keyboards/chlx/str_merro60/str_merro60.c
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,18 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2021 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #include "str_merro60.h" | ||||||
							
								
								
									
										249
									
								
								keyboards/chlx/str_merro60/str_merro60.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										249
									
								
								keyboards/chlx/str_merro60/str_merro60.h
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,249 @@ | |||||||
|  | /* 
 | ||||||
|  | Copyright 2022 Alexander Lee <chlx.bsmt@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/>. 
 | ||||||
|  | */  | ||||||
|  | 
 | ||||||
|  | #pragma once | ||||||
|  | 
 | ||||||
|  | #include "quantum.h" | ||||||
|  | 
 | ||||||
|  | // Corresponding changes to the layout names and/or definitions must also be made to info.json
 | ||||||
|  | 
 | ||||||
|  | #define XXX KC_NO | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_all ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │   │   │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬────┤ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ | ||||||
|  |  * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┤ | ||||||
|  |  * │    │   │   │   │   │   │   │   │   │   │   │   │      │   │ | ||||||
|  |  * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬┴───┤ | ||||||
|  |  * │    │    │    │    (6.25u)             │    │    │    │    │ | ||||||
|  |  * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ | ||||||
|  | */ | ||||||
|  | 
 | ||||||
|  | #define LAYOUT_all( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16, k96, \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k36,      \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55, k46, k56,      \ | ||||||
|  |     k60, k70, k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76,      \ | ||||||
|  |     k80, k90,           k82, k92,                k94, k85, k95, k86            \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, k36 }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, k46 }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { k70, k71, k72, k73, k74, k75, k76 }, \ | ||||||
|  |     { k80, XXX, k82, XXX, XXX, k85, k86 }, \ | ||||||
|  |     { k90, XXX, k92, XXX, k94, k95, k96 }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_60_ansi ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │        │ | ||||||
|  |  * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────────┤ | ||||||
|  |  * │        │   │   │   │   │   │   │   │   │   │   │          │ | ||||||
|  |  * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ | ||||||
|  |  * │    │    │    │    (6.25u)             │    │    │    │    │ | ||||||
|  |  * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ | ||||||
|  | */ | ||||||
|  | #define LAYOUT_60_ansi( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16,      \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k36,      \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55,      k56,      \ | ||||||
|  |     k60,      k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66,           \ | ||||||
|  |     k80, k90,           k82, k92,                k94, k85, k95, k86            \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, k36 }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, XXX }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { XXX, k71, k72, k73, k74, k75, XXX }, \ | ||||||
|  |     { k80, XXX, k82, XXX, XXX, k85, k86 }, \ | ||||||
|  |     { k90, XXX, k92, XXX, k94, k95, XXX }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_60_ansi_split_bs_rshift ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │   │   │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │        │ | ||||||
|  |  * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤ | ||||||
|  |  * │        │   │   │   │   │   │   │   │   │   │   │      │   │ | ||||||
|  |  * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬┴───┤ | ||||||
|  |  * │    │    │    │    (6.25u)             │    │    │    │    │ | ||||||
|  |  * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ | ||||||
|  | */ | ||||||
|  | #define LAYOUT_60_ansi_split_bs_rshift( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16, k96, \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k36,      \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55,      k56,      \ | ||||||
|  |     k60,      k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76,      \ | ||||||
|  |     k80, k90,           k82, k92,                k94, k85, k95, k86            \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, k36 }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, XXX }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { XXX, k71, k72, k73, k74, k75, k76 }, \ | ||||||
|  |     { k80, XXX, k82, XXX, XXX, k85, k86 }, \ | ||||||
|  |     { k90, XXX, k92, XXX, k94, k95, k96 }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_60_hhkb ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │   │   │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │        │ | ||||||
|  |  * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤ | ||||||
|  |  * │        │   │   │   │   │   │   │   │   │   │   │      │   │ | ||||||
|  |  * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴───┴┬───┬─┴───┤ | ||||||
|  |  * │▓▓▓▓▓│   │     │   (7u)                    │     │   │▓▓▓▓▓│ | ||||||
|  |  * └─────┴───┴─────┴───────────────────────────┴─────┴───┴─────┘ | ||||||
|  | */ | ||||||
|  | #define LAYOUT_60_hhkb( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16, k96, \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k36,      \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55,      k56,      \ | ||||||
|  |     k60,      k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76,      \ | ||||||
|  |          k90,           k82, k92,                     k85, k95                 \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, k36 }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, XXX }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { XXX, k71, k72, k73, k74, k75, k76 }, \ | ||||||
|  |     { XXX, XXX, k82, XXX, XXX, k85, XXX }, \ | ||||||
|  |     { k90, XXX, k92, XXX, XXX, k95, k96 }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_60_iso ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │       │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ | ||||||
|  |  * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴────┤ | ||||||
|  |  * │    │   │   │   │   │   │   │   │   │   │   │   │          │ | ||||||
|  |  * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬────┤ | ||||||
|  |  * │    │    │    │    (6.25u)             │    │    │    │    │ | ||||||
|  |  * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ | ||||||
|  | */ | ||||||
|  | #define LAYOUT_60_iso( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16,      \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26,           \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55, k46, k56,      \ | ||||||
|  |     k60, k70, k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66,           \ | ||||||
|  |     k80, k90,           k82, k92,                k94, k85, k95, k86            \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, XXX }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, k46 }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { k70, k71, k72, k73, k74, k75, XXX }, \ | ||||||
|  |     { k80, XXX, k82, XXX, XXX, k85, k86 }, \ | ||||||
|  |     { k90, XXX, k92, XXX, k94, k95, XXX }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_60_iso_split_bs_rshift ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │   │   │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┐    │ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │   │    │ | ||||||
|  |  * ├────┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┴┬───┤ | ||||||
|  |  * │    │   │   │   │   │   │   │   │   │   │   │   │      │   │ | ||||||
|  |  * ├────┼───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬────┬┴───┤ | ||||||
|  |  * │    │    │    │    (6.25u)             │    │    │    │    │ | ||||||
|  |  * └────┴────┴────┴────────────────────────┴────┴────┴────┴────┘ | ||||||
|  | */ | ||||||
|  | #define LAYOUT_60_iso_split_bs_rshift( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16, k96, \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26,           \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55, k46, k56,      \ | ||||||
|  |     k60, k70, k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76,      \ | ||||||
|  |     k80, k90,           k82, k92,                k94, k85, k95, k86            \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, XXX }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, k46 }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { k70, k71, k72, k73, k74, k75, k76 }, \ | ||||||
|  |     { k80, XXX, k82, XXX, XXX, k85, k86 }, \ | ||||||
|  |     { k90, XXX, k92, XXX, k94, k95, k96 }  \ | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | /* //////////////////// LAYOUT_60_tsangan_hhkb ////////////////////
 | ||||||
|  |  * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┐ | ||||||
|  |  * │   │   │   │   │   │   │   │   │   │   │   │   │   │   │   │ | ||||||
|  |  * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴───┤ | ||||||
|  |  * │     │   │   │   │   │   │   │   │   │   │   │   │   │     │ | ||||||
|  |  * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┤ | ||||||
|  |  * │      │   │   │   │   │   │   │   │   │   │   │   │        │ | ||||||
|  |  * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┤ | ||||||
|  |  * │        │   │   │   │   │   │   │   │   │   │   │      │   │ | ||||||
|  |  * ├─────┬──┴┬──┴──┬┴───┴───┴───┴───┴───┴───┴──┬┴───┴┬───┬─┴───┤ | ||||||
|  |  * │     │   │     │   (7u)                    │     │   │     │ | ||||||
|  |  * └─────┴───┴─────┴───────────────────────────┴─────┴───┴─────┘ | ||||||
|  | */ | ||||||
|  | #define LAYOUT_60_tsangan_hhkb( \ | ||||||
|  |     k00, k10, k01, k11, k02, k12, k03, k13, k04, k14, k05, k15, k06, k16, k96, \ | ||||||
|  |     k20, k30, k21, k31, k22, k32, k23, k33, k24, k34, k25, k35, k26, k36,      \ | ||||||
|  |     k40, k50, k41, k51, k42, k52, k43, k53, k44, k54, k45, k55,      k56,      \ | ||||||
|  |     k60,      k61, k71, k62, k72, k63, k73, k64, k74, k65, k75, k66, k76,      \ | ||||||
|  |     k80, k90,           k82, k92,                     k85, k95, k86            \ | ||||||
|  | ) { \ | ||||||
|  |     { k00, k01, k02, k03, k04, k05, k06 }, \ | ||||||
|  |     { k10, k11, k12, k13, k14, k15, k16 }, \ | ||||||
|  |     { k20, k21, k22, k23, k24, k25, k26 }, \ | ||||||
|  |     { k30, k31, k32, k33, k34, k35, k36 }, \ | ||||||
|  |     { k40, k41, k42, k43, k44, k45, XXX }, \ | ||||||
|  |     { k50, k51, k52, k53, k54, k55, k56 }, \ | ||||||
|  |     { k60, k61, k62, k63, k64, k65, k66 }, \ | ||||||
|  |     { XXX, k71, k72, k73, k74, k75, k76 }, \ | ||||||
|  |     { k80, XXX, k82, XXX, XXX, k85, k86 }, \ | ||||||
|  |     { k90, XXX, k92, XXX, XXX, k95, k96 }  \ | ||||||
|  | } | ||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 chalex
						chalex