blob: 6cbed2f770c8dc4a7688c38efd6fefdb28b36ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Enable RGB underglow
# https://beta.docs.qmk.fm/features/feature_rgblight
RGBLIGHT_ENABLE = yes # +5500 bytes
ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
# Include my fancy rgb functions source here
SRC += rgb.c
endif
# Disable backlight, since I use RGB underglow.
# https://beta.docs.qmk.fm/features/feature_backlight
BACKLIGHT_ENABLE = no
# Control piezo speaker on C6
AUDIO_ENABLE = yes # +4000 bytes
|