 88d4462e52
			
		
	
	
		88d4462e52
		
			
		
	
	
	
	
		
			
			* Marcopad debut * Applying core review suggestions * Optional layout with backlit * Line feeds and replacing dev board configs * Function to toggle backlight * Move to RGB Matrix * Fixing capitalization * Review comments --------- Co-authored-by: Marco Pelegrini <mpelegrini@microsoft.com>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			618 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			618 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright (c) 2022 Marco Pelegrini <marco@pelegrini.ca>
 | |
| // SPDX-License-Identifier: GPL-2.0-or-later
 | |
| 
 | |
| #include QMK_KEYBOARD_H
 | |
| 
 | |
| const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
 | |
|     /*
 | |
|      * ┌───┬───┬───┐
 | |
|      * │ 7 │ 8 │ 9 │
 | |
|      * ├───┼───┼───┤
 | |
|      * │ 4 │ 5 │ 6 │
 | |
|      * ├───┼───┼───┤
 | |
|      * │ 1 │ 2 │ 3 │
 | |
|      * └───┴───┴───┘
 | |
|      */
 | |
|     [0] = LAYOUT_ortho_3x3(
 | |
|         KC_P7,   KC_P8,   KC_P9,
 | |
|         KC_P4,   KC_P5,   KC_P6,
 | |
|         KC_P1,   KC_P2,   KC_P3
 | |
|     )
 | |
| };
 |