mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-09-22 09:58:56 +02:00
* Initial commit orbiter Left side support. Need to look into split support next. * Start adding split configurations * Not really working but it compiles * WORKING CONFIG * Add via support remove via json file later * added oled driver and i2c configuration * update to correct driver block macros * fix faulty configuration for i2c * remove via support * enable console by default * rework layout slightly * fix default keymap * cleanup * fix comment * update readme * add copyright headers to pass lint check * apply clang-formatter * refactor folder structure slightly * quickfix name * bump readme * rework for data driven conf * apply formatter json and update naming * forgot one * slight adjustment * use smaller copyright * minor change to name * Apply suggestions from code review Co-authored-by: Joel Challis <git@zvecr.com> * remove .mk file and rename oled.c * apply formatter * git-format text * Use DMA offloading * add dma config * remove lto * Update keyboards/supercrisp/orbiter/readme.md Co-authored-by: Joel Challis <git@zvecr.com> --------- Co-authored-by: rasmus <rasmus_lindy@hotmail.com> Co-authored-by: Joel Challis <git@zvecr.com>
28 lines
1.4 KiB
C
28 lines
1.4 KiB
C
// Copyright 2026 Karl Stralman (@kjeller)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include QMK_KEYBOARD_H
|
|
|
|
enum layer_names {
|
|
_ONE,
|
|
_TWO,
|
|
};
|
|
|
|
// clang-format off
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
[_ONE] = LAYOUT(
|
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_NO,
|
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
|
|
KC_LSFT, KC_A, KC_S, KC_D, KC_F, KC_G, MO(_TWO), MO(_TWO), KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
|
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_SPC, KC_ENT, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT
|
|
),
|
|
|
|
[_TWO] = LAYOUT(
|
|
_______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
|
|
_______, _______, KC_UP, _______, _______, _______, _______, _______, _______, _______, _______, _______,
|
|
_______, KC_LEFT, KC_DOWN, KC_RGHT, _______, _______, LALT(KC_LSFT), _______, _______, _______, _______, _______, _______, _______,
|
|
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
|
|
),
|
|
};
|
|
// clang-format on
|