74db44226f
* Initial commit * feat: LED sync between halves, layout tweaks * feat: Vial keymap for mirrored configuration * post-breaking changes refactor * refactor: more symmetrical layout definitions Co-authored-by: Kyle McCreery <mccreery.kyle@gmail.com>
29 lines
822 B
C
29 lines
822 B
C
// Copyright 2022 Kyle McCreery (@kylemccreery)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#define VIAL_KEYBOARD_UID {0xF8, 0x72, 0x90, 0x0C, 0x29, 0xFB, 0x15, 0x45}
|
|
|
|
#define VIAL_UNLOCK_COMBO_ROWS { 0, 4 }
|
|
#define VIAL_UNLOCK_COMBO_COLS { 0, 0 }
|
|
|
|
#if defined(__AVR_ATmega32U4__)
|
|
#undef SPLIT_MODS_ENABLE
|
|
|
|
#define NO_ACTION_ONESHOT
|
|
#undef LOCKING_SUPPORT_ENABLE
|
|
#undef LOCKING_RESYNC_ENABLE
|
|
#else
|
|
#define RGBLIGHT_EFFECT_ALTERNATING
|
|
#define RGBLIGHT_EFFECT_BREATHING
|
|
#define RGBLIGHT_EFFECT_CHRISTMAS
|
|
#define RGBLIGHT_EFFECT_KNIGHT
|
|
#define RGBLIGHT_EFFECT_RAINBOW_MOOD
|
|
#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
|
|
#define RGBLIGHT_EFFECT_RGB_TEST
|
|
#define RGBLIGHT_EFFECT_SNAKE
|
|
#define RGBLIGHT_EFFECT_STATIC_GRADIENT
|
|
#define RGBLIGHT_EFFECT_TWINKLE
|
|
#endif
|