diff options
author | Ryan <fauxpark@gmail.com> | 2023-03-26 18:22:12 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-26 18:22:12 +1100 |
commit | 36ce81df592ca8e9f9fed498e513437aa1cae54f (patch) | |
tree | 5d1eb5bec831a7037d97b43babfee78c6fbf47cb /keyboards/rgbkb/mun | |
parent | 7e54defa20bd6a4f199fb1da0f25e83f0d55bf25 (diff) |
Move `WS2812_DRIVER` to data driven (#20248)
Diffstat (limited to 'keyboards/rgbkb/mun')
-rw-r--r-- | keyboards/rgbkb/mun/rev1/info.json | 3 | ||||
-rw-r--r-- | keyboards/rgbkb/mun/rules.mk | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/rgbkb/mun/rev1/info.json b/keyboards/rgbkb/mun/rev1/info.json index c0bfa319b2..fbaf90756f 100644 --- a/keyboards/rgbkb/mun/rev1/info.json +++ b/keyboards/rgbkb/mun/rev1/info.json @@ -8,6 +8,9 @@ "pid": "0x3505", "device_version": "0.0.1" }, + "ws2812": { + "driver": "pwm" + }, "matrix_pins": { "cols": ["A0", "B11", "B0", "B10", "B12", "B2", "A8"], "rows": ["A1", "A3", "B3", "A13", "B15", null, null] diff --git a/keyboards/rgbkb/mun/rules.mk b/keyboards/rgbkb/mun/rules.mk index 0958dd2130..88f8890ce6 100644 --- a/keyboards/rgbkb/mun/rules.mk +++ b/keyboards/rgbkb/mun/rules.mk @@ -15,7 +15,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration NKRO_ENABLE = yes # Enable N-Key Rollover AUDIO_ENABLE = no # Audio output -WS2812_DRIVER = pwm RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. RGB_MATRIX_ENABLE = yes RGB_MATRIX_DRIVER = WS2812 |