mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-28 22:20:13 +00:00
ea56863e32
* dude09 macropad files added to keyboards/handwired/starrykeebs/dude09 * Update readme.md fixed imgur link * Update readme.md * Update readme.md * Update info.json formatting using qmk * Update config.h header * Update keymap.c header * Update keymap.c header * Update readme.md * Delete keyboards/handwired/starrykeebs/dude09/via.json not needed for QMK * Delete keyboards/handwired/starrykeebs/dude09/config.h empty file * Update info.json windows to unix le * Update keymap.c windows to unix le * Update keymap.c windows to unix le * Update readme.md windows to unix le * fixed new line windows to unix * Update info.json Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Update readme.md Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Update readme.md Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Update info.json Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Update keyboards/handwired/starrykeebs/dude09/keymaps/via/rules.mk Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Update keyboards/handwired/starrykeebs/dude09/rules.mk Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> * Update readme.md Co-authored-by: jack <0x6a73@protonmail.com> --------- Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> Co-authored-by: jack <0x6a73@protonmail.com>
18 lines
438 B
C
18 lines
438 B
C
// Copyright 2023 Starry Knight (@astarryknight)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include QMK_KEYBOARD_H
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
[0] = LAYOUT_ortho_3x3(
|
|
KC_1, KC_2, KC_3,
|
|
KC_4, KC_5, KC_6,
|
|
KC_7, KC_8, MO(1)
|
|
),
|
|
[1] = LAYOUT_ortho_3x3(
|
|
QK_BOOT, KC_TRNS, KC_TRNS,
|
|
KC_TRNS, KC_TRNS, KC_TRNS,
|
|
KC_TRNS, KC_TRNS, KC_TRNS
|
|
)
|
|
};
|