[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:
Marco Pelegrini 2024-12-04 08:51:40 -08:00 committed by GitHub
parent c2bc6e2b3c
commit 88d4462e52
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 176 additions and 0 deletions

View 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
)
};