[Keyboard] Add Marcopad (#24636)
* 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>
This commit is contained in:
parent
c2bc6e2b3c
commit
88d4462e52
5 changed files with 176 additions and 0 deletions
21
keyboards/marcopad/keymaps/default/keymap.c
Normal file
21
keyboards/marcopad/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
// 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
|
||||
)
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue