mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-28 12:10:08 +01:00 
			
		
		
		
	 13bb6b4b7f
			
		
	
	
		13bb6b4b7f
		
	
	
	
	
		
			
			* 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
		
			
				
	
	
		
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			450 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef %KEYBOARD_UPPERCASE%_H
 | |
| #define %KEYBOARD_UPPERCASE%_H
 | |
| 
 | |
| #include "quantum.h"
 | |
| 
 | |
| // This a shortcut to help you visually see your layout.
 | |
| // The following is an example using the Planck MIT layout
 | |
| // The first section contains all of the arguements
 | |
| // The second converts the arguments into a two-dimensional array
 | |
| #define KEYMAP( \
 | |
|     k00, k01, k02, \
 | |
|       k10,  k11   \
 | |
| ) \
 | |
| { \
 | |
|     { k00, k01,   k02 }, \
 | |
|     { k10, KC_NO, k11 }, \
 | |
| }
 | |
| 
 | |
| #endif
 |