mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 14:52:38 +01:00 
			
		
		
		
	* redoes matrix pins, abstracts backlight code for B5,6,7 * slimming down keyboard stuff, backlight breathing implemented * don't call backlight init when no pin * cleans up user/kb/quantum calls, keyboard files * fix pvc atomic * replaces CHANNEL with correct var in breathing * removes .hexs, updates readmes, updates template * cleans-up clueboards, readmes to lowercase * updates readme
		
			
				
	
	
		
			44 lines
		
	
	
		
			757 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			757 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "%KEYBOARD%.h"
 | 
						|
 | 
						|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
						|
[0] = KEYMAP( /* Base */
 | 
						|
  KC_A,  KC_1,  KC_H, \
 | 
						|
    KC_TAB,  KC_SPC   \
 | 
						|
),
 | 
						|
};
 | 
						|
 | 
						|
const uint16_t PROGMEM fn_actions[] = {
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
 | 
						|
{
 | 
						|
  // MACRODOWN only works in this function
 | 
						|
      switch(id) {
 | 
						|
        case 0:
 | 
						|
          if (record->event.pressed) {
 | 
						|
            register_code(KC_RSFT);
 | 
						|
          } else {
 | 
						|
            unregister_code(KC_RSFT);
 | 
						|
          }
 | 
						|
        break;
 | 
						|
      }
 | 
						|
    return MACRO_NONE;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
void matrix_init_user(void) {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
void matrix_scan_user(void) {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
 | 
						|
  return true;
 | 
						|
}
 | 
						|
 | 
						|
void led_set_user(uint8_t usb_led) {
 | 
						|
 | 
						|
} |