forked from mirrors/qmk_firmware
c6f1b594a2
* `KC_SYSREQ` -> `KC_SYRQ` And one `KC_ALT_ERASE` -> `KC_ERAS` * `KC_NONUS_BSLASH` -> `KC_NUBS` * `KC_NUMLOCK` -> `KC_NUM` * `KC_CLCK` -> `KC_CAPS` * `KC_SCROLLLOCK` -> `KC_SCRL` * `KC_LBRACKET` -> `KC_LBRC` * `KC_RBRACKET` -> `KC_RBRC` * `KC_CAPSLOCK` -> `KC_CAPS`
22 lines
No EOL
529 B
C
22 lines
No EOL
529 B
C
// Copyright 2022 Kyle McCreery (@kylemccreery)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "bbs.h"
|
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
|
bool dip_switch_update_kb(uint8_t index, bool active) {
|
|
if (!dip_switch_update_user(index, active)) { return false; }
|
|
switch (index) {
|
|
case 0:
|
|
if(active) { tap_code(KC_CAPS_LOCK); }
|
|
break;
|
|
break;
|
|
}
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
void eeconfig_init_kb() {
|
|
steno_set_mode(STENO_MODE_GEMINI); // or STENO_MODE_BOLT
|
|
eeconfig_init_user();
|
|
} |