mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	 6809f154c9
			
		
	
	
		6809f154c9
		
			
		
	
	
	
	
		
			
			Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Joel Challis <git@zvecr.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			792 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			792 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 2022 CAO THAI DUONG (@KD-MM2)
 | |
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "config_common.h"
 | |
| 
 | |
| 
 | |
| /* key matrix size */
 | |
| #define MATRIX_ROWS 6
 | |
| #define MATRIX_COLS 18
 | |
| 
 | |
| /*
 | |
|  * Keyboard Matrix Assignments
 | |
|  *
 | |
|  * Change this to how you wired your keyboard
 | |
|  * COLS: AVR pins used for columns, left to right
 | |
|  * ROWS: AVR pins used for rows, top to bottom
 | |
|  * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
 | |
|  *                  ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
 | |
|  *
 | |
|  */
 | |
| #define DIODE_DIRECTION ROW2COL
 | |
|  
 | |
| #define MATRIX_ROW_PINS { B0, B1, B2, B3, B4, B5 }
 | |
| #define MATRIX_COL_PINS { D3, D2, D1, D0, D4, C6, D7, E6, B7, F0, F1, D6, C7, B6, F7, F6, F5, F4 }
 | |
| 
 | |
| #define LED_CAPS_LOCK_PIN D5
 | |
| #define LED_PIN_ON_STATE 0
 |