9dafac3fbd
* support 1u and 2u options for reviung34 * support rgb lighting for reviung rgb The reviung34sb (formerly called reviung34) do not have rgb lighting But the unibody one (see keymaps/reviung34_rgb) has support. This makes the firmware quite big and all animations will not fit on the board. Animations were not working for me, but I included in case it is working for others.
22 lines
586 B
C
Executable File
22 lines
586 B
C
Executable File
#pragma once
|
|
|
|
#define VIAL_KEYBOARD_UID {0xB8, 0x68, 0xB9, 0x6C, 0x13, 0x2E, 0xA7, 0xDD}
|
|
#define VIAL_UNLOCK_COMBO_ROWS {0, 3}
|
|
#define VIAL_UNLOCK_COMBO_COLS {0, 5}
|
|
|
|
// the non split version
|
|
#define RGB_DI_PIN D3
|
|
#ifdef RGB_DI_PIN
|
|
#define RGBLED_NUM 9
|
|
#define RGBLIGHT_HUE_STEP 16
|
|
#define RGBLIGHT_SAT_STEP 16
|
|
#define RGBLIGHT_VAL_STEP 16
|
|
#define RGBLIGHT_LIMIT_VAL 255
|
|
#define RGBLIGHT_SLEEP
|
|
// /*== all animations enable ==*/
|
|
// #define RGBLIGHT_ANIMATIONS
|
|
#define RGBLIGHT_MODE_BREATHING
|
|
//#define RGBLIGHT_MODE_RAINBOW_MOOD
|
|
//#define RGBLIGHT_MODE_RAINBOW_SWIRL
|
|
#endif
|