vial-qmk/keyboards/rarepotato8de/3x3macropad/keymaps/default/keymap.c
Simon 42ff4d4745
Add 3x3macropad keyboard + keymap (#727)
* Firmware for 3x3macropad

QMK/VIAL Firmware for 3x3macropad

* Update info.json

Removed old device version

* Added readme and small code changes

Added readme and fixed code to match the requirements of QMK

* Added Copyright

* Fixed code convention

* Changes from qmk pull request

outdated file removed
oled in keyboard level
info.json removed old stuff

* Better firmware improvements

Fixed some stuff that was recommended with the QMK Push

* Formatted .c file

Using the format-c command

* Fixed bootmagic lite key

Changed key, so it's accessible even with OLED installed

* Update VIAL Layout

Added Encoder and OLED Option
+ Moved the Encoders to the right instead of at the top

* Updated UID

Generated new UID
2024-05-20 18:54:36 -06:00

25 lines
901 B
C

/* Copyright 2024 RarePotato8DE
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#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, KC_9
)
};