forked from qmk/qmk_userspace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifdef BACKLIGHT_ENABLE | ||
#ifdef BACKLIGHT_LEVELS | ||
#undef BACKLIGHT_LEVELS | ||
#endif // BACKLIGHT_LEVELS | ||
#define BACKLIGHT_LEVELS 7 | ||
|
||
#ifdef BACKLIGHT_BREATHING | ||
#undef BACKLIGHT_LEVELS | ||
#endif // BACKLIGHT_BREATHING | ||
#define BACKLIGHT_BREATHING true | ||
|
||
#ifdef BREATHING_PERIOD3 | ||
#undef BREATHING_PERIOD | ||
#endif // BREATHING_PERIOD | ||
#define BREATHING_PERIOD 5 | ||
|
||
#ifdef BACKLIGHT_DEFAULT_ON | ||
#undef BACKLIGHT_DEFAULT_ON | ||
#endif // BACKLIGHT_DEFAULT_ON | ||
#define BACKLIGHT_DEFAULT_ON true | ||
|
||
#ifdef BACKLIGHT_DEFAULT_BREATHING | ||
#undef BACKLIGHT_DEFAULT_BREATHING | ||
#endif // BACKLIGHT_DEFAULT_BREATHING | ||
#define BACKLIGHT_DEFAULT_BREATHING false | ||
|
||
#ifdef BACKLIGHT_DEFAULT_LEVEL | ||
#undef BACKLIGHT_DEFAULT_LEVEL | ||
#endif // BACKLIGHT_DEFAULT_LEVEL | ||
#define BACKLIGHT_DEFAULT_LEVEL 2 | ||
|
||
#endif // BACKLIGHT_ENABLE |