[Keyboard] Add Snatchpad keyboard (#16330)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: xia0 <xiao@morgan.net.au>
This commit is contained in:
xiao 2022-02-21 19:40:11 +11:00 committed by GitHub
parent 2d1f2810a4
commit 18490537a5
Failed to generate hash of commit
8 changed files with 334 additions and 0 deletions

View file

@ -0,0 +1,23 @@
// Copyright 2022 xia0 (@xia0)
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(
KC_ESC , KC_SPC , MO(2) ,
KC_MPRV, KC_MNXT, KC_ENT ,
KC_MUTE, KC_MPLY
),
[1] = LAYOUT(
KC_LOCK, KC_UP , _______,
KC_LEFT, KC_DOWN, KC_RGHT,
KC_BTN1, KC_BTN2
),
[2] = LAYOUT(
_______, _______, _______,
_______, _______, _______,
TO(0) , TO(1)
)
};