* Added support for BM16S keyboard. * Update keyboards/bm16s/bm16s.h Co-Authored-By: bontakun <ben@bontakun.net> * Update keyboards/bm16s/bm16s.h Co-Authored-By: bontakun <ben@bontakun.net> * Cleaned up a bunch of unneeded stuff. * Made layout name match. * Changed rules file to have correct bootloader and indention. Updated readme to reflect availability on krepublic. Updated keymap to have more obvious RGB controls. * Removed unnecessary file. * Fixed grammar in readme. Co-Authored-By: bontakun <ben@bontakun.net> * Migrated to autogenerated layout config, without issue. * Renamed LAYOUT to match community standards.
		
			
				
	
	
		
			16 lines
		
	
	
		
			468 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			468 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#include QMK_KEYBOARD_H
 | 
						|
 | 
						|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | 
						|
	[0] = LAYOUT_ortho_4x4(
 | 
						|
		KC_KP_7, KC_KP_8, KC_KP_9, MO(1),   \
 | 
						|
		KC_KP_4, KC_KP_5, KC_KP_6, KC_PMNS, \
 | 
						|
		KC_KP_1, KC_KP_2, KC_KP_3, KC_PPLS, \
 | 
						|
		KC_KP_0, KC_PDOT, KC_PCMM, KC_PENT  \
 | 
						|
	),
 | 
						|
	[1] = LAYOUT_ortho_4x4(
 | 
						|
		RESET,   BL_STEP, _______, KC_VOLU, \
 | 
						|
		BL_TOGG, BL_DEC,  BL_INC,  KC_VOLD, \
 | 
						|
		RGB_TOG, RGB_MOD, RGB_HUI, KC_MUTE, \
 | 
						|
		RGB_SAI, RGB_SAD, RGB_HUD, _______  \
 | 
						|
	),
 | 
						|
}; |