* Added tr60w configurations. I based these files on the fox-lab/qmk_firmware repository. After checking both licenses, which are identical, I added those files into this feature branch. For transparency reasons I'll add the url to the fox-lab repository. https://github.com/fox-lab/qmk_firmware * Using #pragma once in config.h. * Removed '#define CCONFIG_H' from config.h. * Changed PRODUCT_ID to '0x4140'. * Renamed setting to 'DEBOUNCE'. * Removed key combination, due to already default implementation. * Removed 'PREVENT_STUCK_MODIFIERS', defaulted by QMK. * Removed not uneccessary '#endif' statement. * Renamed include to 'QMK_KEYBOARD_H'. * Changed keymap structure according to pull request suggestion. * Removed 'void matrix_init_user(void)'. * Removed 'void matrix_scan_user(void)'. * Removed 'bool process_record_user(...)'. * Removed non-standard configuration in favor for 'led_update_kb'. * Using default setup based on 'MCU' setting. * Replaced Build Option configuration with suggested information. * Fixed include statements as requested. * Changed 'KEYMAP' to suggestion. * Removed obsolete '#endif' statement. * Added readme.md file. * Updated readme.md with further information. * Reverted include statement, to check if this caused ci error. * Revert "Reverted include statement." This reverts commit ebd992dc01133169be38ae7201bb00b4d01cc737. * Fixed wrong mapped key * Fixed include as per suggestion. * Replaced 'KC_TRNS' with '_______'for readability. * Added personal keymap.c file. * Updated the readme.md file according to template/avr/readme.md. * Fixed Link to Image. * Updated readme.md as per request. * Updated rules.mk, as per suggestion. Set 'BOOTMAGIC_ENABLE = lite'.
		
			
				
	
	
		
			22 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include QMK_KEYBOARD_H
 | |
| 
 | |
| const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | |
| 
 | |
| 	LAYOUT_60_tsangan_hhkb(
 | |
|         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_Z,    	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_ENT,
 | |
|         KC_LSFT,          KC_Y,    		KC_X,    		KC_C,    		KC_V,    		KC_B,    	KC_N,    	KC_M,    	KC_COMM, 	KC_DOT,  KC_MINS, KC_LSFT, TG(1),
 | |
| 				KC_LCTL, KC_LGUI, KC_LALT,                                				KC_SPC,                          								 KC_RALT, KC_F12, KC_RCTL
 | |
| 			),
 | |
| 
 | |
|     LAYOUT_60_tsangan_hhkb(
 | |
|         RESET,   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_NUHS, KC_NUBS,
 | |
|         _______, KC_BSPC, KC_UP, 			KC_ENT, 		_______, 		_______, 		_______, 	KC_WH_U, 	KC_BTN1 , KC_MS_U , KC_BTN2, KC_WH_L, _______, KC_DEL,
 | |
|         _______, KC_LEFT, KC_DOWN,		KC_RIGHT, 	_______, 		_______, 		_______, 	KC_WH_D, 	KC_MS_L , KC_MS_D , KC_MS_R, KC_WH_R,          _______,
 | |
|         _______,          RCTL(KC_Y), RCTL(KC_X),	RCTL(KC_C),	RCTL(KC_V),	_______,  _______, 	_______, 	_______, 	_______, _______, _______, _______,
 | |
|         _______, _______, _______,                                				_______,                         								 _______, _______, _______
 | |
|     )
 | |
| 
 | |
| };
 |