You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.1 KiB

  1. /*
  2. Copyright 2020 Hadi Iskandarani
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #pragma once
  15. /* RGB matrix lighting */
  16. #define RGB_MATRIX_LED_COUNT 62
  17. #define RGB_MATRIX_KEYPRESSES
  18. #define RGB_MATRIX_FRAMEBUFFER_EFFECTS
  19. #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 160 // limit brightness to not overamp the USB
  20. #define RGB_MATRIX_LED_FLUSH_LIMIT 16 // 16 is equivalent to limiting to 60fps
  21. #define RGB_MATRIX_SLEEP // turn off effects when suspended
  22. #define RGB_MATRIX_DEFAULT_MODE RGB_MATRIX_CYCLE_ALL
  23. // RGB Matrix Animation modes. Explicitly enabled
  24. // For full list of effects, see:
  25. // https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects
  26. # define ENABLE_RGB_MATRIX_ALPHAS_MODS
  27. # define ENABLE_RGB_MATRIX_GRADIENT_UP_DOWN
  28. # define ENABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
  29. # define ENABLE_RGB_MATRIX_BREATHING
  30. # define ENABLE_RGB_MATRIX_BAND_VAL
  31. # define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
  32. # define ENABLE_RGB_MATRIX_CYCLE_ALL
  33. # define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
  34. # define ENABLE_RGB_MATRIX_CYCLE_UP_DOWN
  35. # define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
  36. # define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
  37. # define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS
  38. # define ENABLE_RGB_MATRIX_RAINDROPS
  39. // enabled only if RGB_MATRIX_FRAMEBUFFER_EFFECTS is defined
  40. # define ENABLE_RGB_MATRIX_TYPING_HEATMAP
  41. // enabled only of RGB_MATRIX_KEYPRESSES or RGB_MATRIX_KEYRELEASES is defined
  42. # define ENABLE_RGB_MATRIX_SOLID_REACTIVE
  43. # define ENABLE_RGB_MATRIX_SOLID_REACTIVE_MULTIWIDE
  44. # define ENABLE_RGB_MATRIX_MULTISPLASH
  45. # define ENABLE_RGB_MATRIX_SOLID_MULTISPLASH