mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	 e0f91f37c4
			
		
	
	
		e0f91f37c4
		
	
	
	
	
		
			
			* Added 4by3 keyboard * Added DEVICE_VER and DESCRIPTION * Removed F_CPU, F_USB, ARCH, and OPT_DEFS * Add 3 new LAYOUT macros for orientations and fixes * Apply suggestions from code review Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Added comments to 4by3 and changed info.json * Update keyboards/4by3/4by3.h Co-Authored-By: fauxpark <fauxpark@gmail.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			593 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			593 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "config_common.h"
 | |
| 
 | |
| /* USB Device descriptor parameter */
 | |
| #define VENDOR_ID       0xEEEE
 | |
| #define PRODUCT_ID      0x2019
 | |
| #define DEVICE_VER		0x0001
 | |
| #define MANUFACTURER    Elias Sjögreen
 | |
| #define PRODUCT         4by3
 | |
| #define DESCRIPTION     A small 12 key keypad
 | |
| 
 | |
| /* key matrix size */
 | |
| #define MATRIX_ROWS 3
 | |
| #define MATRIX_COLS 4
 | |
| 
 | |
| /* key matrix pins */
 | |
| #define MATRIX_ROW_PINS { D1, D0, D4 }
 | |
| #define MATRIX_COL_PINS { C6, D7, E6, B4 }
 | |
| #define UNUSED_PINS
 | |
| 
 | |
| /* COL2ROW or ROW2COL */
 | |
| #define DIODE_DIRECTION COL2ROW
 | |
| 
 | |
| /* Set 0 if debouncing isn't needed */
 | |
| #define DEBOUNCE 5
 |