 054021e875
			
		
	
	
		054021e875
		
			
		
	
	
	
	
		
			
			* new keyboard for squiggle. * added pic and other layout. * updated readme. * following drashna's suggestions. * removed an empty line and right hand as master. * following fauxpark's suggestions. * following manna-harbour's suggestions. * trying to satisfy PR Lint keyboards * manna-harbour forgot to add it. * following fauxparx's suggestions. * following fauxpark's suggestions. * following fauxpark's suggestions.' ' * following fauxpark's suggestions. * following fauxpark''s suggestions. * upated info.json to represent the actual layouts. * following noroadsleft's suggestions.
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			630 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			630 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #define DEVICE_VER      0x0001
 | |
| 
 | |
| /* key matrix size */
 | |
| #define MATRIX_ROWS 8
 | |
| #define MATRIX_COLS 5
 | |
| 
 | |
| /*
 | |
|  * 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 MATRIX_ROW_PINS { B1, B3, B2, B6 }
 | |
| #define MATRIX_COL_PINS { C6, D7, E6, B4, B5 }
 | |
| 
 | |
| /* COL2ROW, ROW2COL*/
 | |
| #define DIODE_DIRECTION COL2ROW
 | |
| 
 | |
| #define MASTER_LEFT
 |