mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			239 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			239 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef NINEKEY_H
 | |
| #define NINEKEY_H
 | |
| 
 | |
| #include "quantum.h"
 | |
| 
 | |
| #define LAYOUT( \
 | |
|       k00, k01, k02, \
 | |
|       k10, k11, k12, \
 | |
|       k20, k21, k22  \
 | |
| ) \
 | |
| { \
 | |
|     { k00, k01, k02 }, \
 | |
|     { k10, k11, k12 }, \
 | |
|     { k20, k21, k22 } \
 | |
| } 
 | |
| 
 | |
| #endif
 | 
