qmk_firmware/keyboards/idobao/id67/post_rules.mk
Vino Rodrigues 7fd05afb10
[Keyboard] Revert "Fix id67 RGB Matrix (#16916)" - on IDOBAO ID67 kb (#16917)
Co-authored-by: Drashna Jaelre <drashna@live.com>
2022-05-11 17:09:10 -07:00

14 lines
503 B
Makefile

# Some ID67 variants (v1 base build & "Bestype") have a solid back plate,
# this enables switching off thoes LEDs
# Usage: `make idobao/id67:default UNDERGLOW=off`
ifeq ($(findstring off,$(UNDERGLOW)), off)
$(info ** UNDERGLOW OFF)
OPT_DEFS += -DID67_DISABLE_UNDERGLOW
else ifeq ($(findstring no,$(UNDERGLOW)), no)
$(info ** NO UNDERGLOW)
OPT_DEFS += -DID67_DISABLE_UNDERGLOW
else ifeq ($(findstring 0,$(UNDERGLOW)), 0)
$(info ** Nil UNDERGLOW)
OPT_DEFS += -DID67_DISABLE_UNDERGLOW
endif