diff options
author | Ryan <fauxpark@gmail.com> | 2022-11-04 15:13:26 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 04:13:26 +0000 |
commit | 8213eb7fbb979ee20c5394f1281713b76bde86e5 (patch) | |
tree | d78d4689bd97963a833cbd32b834337608926a69 /keyboards/rgbkb/sol | |
parent | fb96b88842f4481df8942768f43813b489ca5c3a (diff) |
Fix DD warnings for RGBKB boards (#18944)
Diffstat (limited to 'keyboards/rgbkb/sol')
-rw-r--r-- | keyboards/rgbkb/sol/config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/rgbkb/sol/config.h b/keyboards/rgbkb/sol/config.h index f8c07b974e..1a477acad9 100644 --- a/keyboards/rgbkb/sol/config.h +++ b/keyboards/rgbkb/sol/config.h @@ -42,12 +42,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef IOS_DEVICE_ENABLE #define RGBLIGHT_LIMIT_VAL 40 + #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 40 #elif RGBLIGHT_FULL_POWER #define RGBLIGHT_LIMIT_VAL 255 + #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 255 #else #define RGBLIGHT_LIMIT_VAL 120 + #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 120 #endif -#define RGB_MATRIX_MAXIMUM_BRIGHTNESS RGBLIGHT_LIMIT_VAL // RGB Matrix Animation modes. Explicitly enabled // For full list of effects, see: // https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects |