mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-11-03 23:02:34 +01:00 
			
		
		
		
	* ADD DecadePad * Fix Key display bug * fix * firmware1 THIS IS A Backup commit * firmware2 * rename all fill with lower case * fix bug * Final Version Fix all bugs * Requested change apply * suggested apply * change apply * via test * Apply change and fix via support problem
		
			
				
	
	
		
			20 lines
		
	
	
		
			440 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			440 B
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "quantum.h"
 | 
						|
#define LAYOUT_numpad_6x4( \
 | 
						|
   k01, k02, k03, k04, \
 | 
						|
   k11, k12, k13, k14, \
 | 
						|
   k21, k22, k23,      \
 | 
						|
   k31, k32, k33, k34, \
 | 
						|
   k41, k42, k43,      \
 | 
						|
   k51,      k53, k54  \
 | 
						|
) \
 | 
						|
{ \
 | 
						|
    { k01, k02,   k03, k04     }, \
 | 
						|
    { k11, k12,   k13, k14     }, \
 | 
						|
    { k21, k22,   k23, KC_NO   }, \
 | 
						|
    { k31, k32,   k33, k34     }, \
 | 
						|
    { k41, k42,   k43, KC_NO   }, \
 | 
						|
    { k51, KC_NO, k53, k54     }, \
 | 
						|
}
 |