[Keyboard] Revert "Fix id67 RGB Matrix (#16916)" - on IDOBAO ID67 kb (#16917)

Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
Vino Rodrigues
2022-05-12 10:09:10 +10:00
committed by GitHub
parent 37417d531d
commit 7fd05afb10
15 changed files with 139 additions and 273 deletions

View File

@@ -0,0 +1,14 @@
# 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