forked from mirrors/qmk_firmware
[Keyboard] tunks/ergo33: define RGBLight config at kb level (#11855)
This commit is contained in:
parent
bf1c40d682
commit
6e74abc643
2 changed files with 14 additions and 2 deletions
|
@ -43,6 +43,15 @@
|
||||||
|
|
||||||
/* Underglow + top RGB configuration */
|
/* Underglow + top RGB configuration */
|
||||||
#define RGB_DI_PIN D4
|
#define RGB_DI_PIN D4
|
||||||
|
#define RGBLIGHT_ANIMATIONS
|
||||||
|
|
||||||
|
#if !defined(RGBLED_NUM)
|
||||||
|
/* RGB LED count
|
||||||
|
* No external LED PCB: 10
|
||||||
|
* External LED PCB: 14
|
||||||
|
*/
|
||||||
|
# define RGBLED_NUM 14
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
|
||||||
//#define LOCKING_SUPPORT_ENABLE
|
//#define LOCKING_SUPPORT_ENABLE
|
||||||
|
|
|
@ -20,5 +20,8 @@
|
||||||
* No external LED PCB: 10
|
* No external LED PCB: 10
|
||||||
* External LED PCB: 14
|
* External LED PCB: 14
|
||||||
*/
|
*/
|
||||||
#define RGBLED_NUM 10
|
#if defined(RGBLED_NUM)
|
||||||
#define RGBLIGHT_ANIMATIONS
|
# undef RGBLED_NUM
|
||||||
|
# define RGBLED_NUM 10
|
||||||
|
#endif
|
||||||
|
#define RGBLIGHT_ANIMATIONS
|
||||||
|
|
Loading…
Reference in a new issue