* Branch point for 2020 May 30 Breaking Change * Migrate `ACTION_LAYER_TOGGLE` to `TG()` (#8954) * Migrate `ACTION_MODS_ONESHOT` to `OSM()` (#8957) * Migrate `ACTION_DEFAULT_LAYER_SET` to `DF()` (#8958) * Migrate `ACTION_LAYER_MODS` to `LM()` (#8959) * Migrate `ACTION_MODS_TAP_KEY` to `MT()` (#8968) * Convert V-USB usbdrv to a submodule (#8321) * Unify Tap Hold functions and documentation (#8348) * Changing board names to prevent confusion (#8412) * Move the Keyboardio Model01 to a keyboardio/ subdir (#8499) * Move spaceman keyboards (#8830) * Migrate miscellaneous `fn_actions` entries (#8977) * Migrate `ACTION_MODS_KEY` to chained mod keycodes (#8979) * Organizing my keyboards (plaid, tartan, ergoinu) (#8537) * Refactor Lily58 to use split_common (#6260) * Refactor zinc to use split_common (#7114) * Add a message if bin/qmk doesn't work (#9000) * Fix conflicting types for 'tfp_printf' (#8269) * Fixed RGB_DISABLE_AFTER_TIMEOUT to be seconds based & small internals cleanup (#6480) * Refactor and updates to TKC1800 code (#8472) * Switch to qmk forks for everything (#9019) * audio refactor: replace deprecated PLAY_NOTE_ARRAY (#8484) * Audio enable corrections (2/3) (#8903) * Split HHKB to ANSI and JP layouts and Add VIA support for each (#8582) * Audio enable corrections (Part 4) (#8974) * Fix typo from PR7114 (#9171) * Augment future branch Changelogs (#8978) * Revert "Branch point for 2020 May 30 Breaking Change"
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "quantum.h"
 | |
| 
 | |
| #define LAYOUT(                                                                \
 | |
|     K31, K30, K00, K10, K11, K20, K21, K40, K41, K60, K61, K70, K71, K50, K51, \
 | |
|     K32, K01, K02, K13, K12, K23, K22, K42, K43, K62, K63, K73, K72, K52,      \
 | |
|     K33, K04, K03, K14, K15, K24, K25, K45, K44, K65, K64, K74, K53,           \
 | |
|     K34, K05, K06, K07, K16, K17, K26, K46, K66, K76, K75, K55, K54,           \
 | |
|          K35, K36,           K37,                K57, K56)                     \
 | |
|                                                                                \
 | |
| {                                                                              \
 | |
|     { K00, K01, K02, K03, K04, K05, K06, K07   },                              \
 | |
|     { K10, K11, K12, K13, K14, K15, K16, K17   },                              \
 | |
|     { K20, K21, K22, K23, K24, K25, K26, KC_NO },                              \
 | |
|     { K30, K31, K32, K33, K34, K35, K36, K37   },                              \
 | |
|     { K40, K41, K42, K43, K44, K45, K46, KC_NO },                              \
 | |
|     { K50, K51, K52, K53, K54, K55, K56, K57   },                              \
 | |
|     { K60, K61, K62, K63, K64, K65, K66, KC_NO },                              \
 | |
|     { K70, K71, K72, K73, K74, K75, K76, KC_NO }                               \
 | |
| }
 | |
| 
 | |
| #define LAYOUT_60_hhkb LAYOUT
 |