[Keyboard] Add bongopad (#15212)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
ll3macorn
2021-11-30 00:27:45 +08:00
committed by GitHub
parent 569eee20b4
commit 284e653eeb
7 changed files with 261 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
// Copyright 2021 Ll3macorn (@ll3macorn)
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
enum layers {
Layer1,
Layer2,
Layer3,
Layer4
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[Layer1] = LAYOUT_default(
KC__MUTE,
KC_7, KC_8, KC_9,
KC_4, KC_5, KC_6,
KC_1, KC_2, KC_3),
[Layer2] = LAYOUT_default(
KC_SPC,
KC_SPC, KC_SPC, KC_SPC,
KC_SPC, KC_SPC, KC_SPC,
KC_SPC, KC_SPC, KC_SPC),
[Layer3] = LAYOUT_default(
KC_SPC,
KC_SPC, KC_SPC, KC_SPC,
KC_SPC, KC_SPC, KC_SPC,
KC_SPC, KC_SPC, KC_SPC),
[Layer4] = LAYOUT_default(
KC_SPC,
KC_SPC, KC_SPC, KC_SPC,
KC_SPC, KC_SPC, KC_SPC,
KC_SPC, KC_SPC, KC_SPC)
};
// clang-format on

View File

@@ -0,0 +1,3 @@
LTO_ENABLE = yes
COMBO_ENABLE = no