74ad68eb7f
* Cherry pick X-Bows VIA commit Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Shulin <mumu@x-bows.com> * Port X-Bows nature to Vial * Port X-Bows knight to Vial * Port X-Bows knight plus to Vial * Port X-Bows numpad to Vial Co-authored-by: X-Bows Tech <41098278+XBowsTech@users.noreply.github.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Shulin <mumu@x-bows.com>
25 lines
892 B
C
25 lines
892 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
// x-bows knight vial uid
|
|
#define VIAL_KEYBOARD_UID {0xA0, 0x52, 0x04, 0xCE, 0x23, 0x45, 0x71, 0x6D}
|
|
|
|
// esc and enter
|
|
#define VIAL_UNLOCK_COMBO_ROWS {0, 3}
|
|
#define VIAL_UNLOCK_COMBO_COLS {0, 13}
|
|
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
/*
|
|
* 17 RGB effects are pre-defined in /keyboards/xbows/nature/config.h
|
|
* add a #undef line below to disable unused RGB effect to release space, e.g.,
|
|
// #undef ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL // Single hue spinning spiral fades brightness
|
|
|
|
* See https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects for all QMK RGB effects
|
|
* add a #define line below to enable other RGB effect, e.g.,
|
|
#define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL // Single hue spinning spiral fades brightness
|
|
*/
|
|
// #undef ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL // Single hue spinning spiral fades brightness
|
|
#endif
|