1
0
Fork 0

Refactor: move keyboards into laneware folder (#22710)

This commit is contained in:
フィルターペーパー 2023-12-24 07:45:53 +08:00 committed by GitHub
parent 84ba999f2a
commit 300af1e5bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
45 changed files with 35 additions and 85 deletions

View file

@ -0,0 +1,40 @@
// Copyright 2023 Laneware Peripherals
// SPDX-License-Identifier: GPL-2.0-or-later
#include QMK_KEYBOARD_H
/*
*
* K00 K02K03
*
*
* K10K11K12K13
*
* K20K21K22K23
*
* K30K31K32
*
* K40K41K42K43
*
* K50 K52
*
*/
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT_numpad(
KC_MUTE, KC_MPLY, KC_BSPC,
KC_CALC, KC_KP_SLASH, KC_KP_ASTERISK, KC_KP_MINUS,
KC_KP_7, KC_KP_8, KC_KP_9, KC_KP_PLUS,
KC_KP_4, KC_KP_5, KC_KP_6,
KC_KP_1, KC_KP_2, KC_KP_3, KC_KP_ENTER,
KC_KP_0, KC_KP_DOT)
};
#if defined(ENCODER_MAP_ENABLE)
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = {ENCODER_CCW_CW(KC_VOLD, KC_VOLU)}
};
#endif