1
0
Fork 0

Make brightness easier to change

Don't make the #defines unconditional, make them
optional so users can override them with per-keymap
settings more easily.
This commit is contained in:
Seebs 2017-11-23 15:34:50 -06:00
parent 2f5bb2506a
commit 534cd9d45e
3 changed files with 10 additions and 1 deletions

View file

@ -61,8 +61,13 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* number of backlight levels */
#define BACKLIGHT_LEVELS 3
#ifndef LED_BRIGHTNESS_LO
#define LED_BRIGHTNESS_LO 15
#endif
#ifndef LED_BRIGHTNESS_HI
#define LED_BRIGHTNESS_HI 255
#endif
#define LED_BRIGHTNESS_DEFAULT (LED_BRIGHTNESS_HI)
/* ws2812 RGB LED */
#define RGB_DI_PIN D7