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.

55 lines
2.1 KiB

  1. /* Copyright 2021 Nathan Spears
  2. *
  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. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #pragma once
  17. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  18. #define LOCKING_SUPPORT_ENABLE
  19. /* Locking resynchronize hack */
  20. #define LOCKING_RESYNC_ENABLE
  21. #ifdef RGB_MATRIX_ENABLE
  22. #define RGB_MATRIX_LED_COUNT 51
  23. #define RGB_MATRIX_KEYPRESSES // reacts to keypresses
  24. #define RGB_DISABLE_WHEN_USB_SUSPENDED // turn off effects when suspended
  25. #define RGB_MATRIX_MAXIMUM_BRIGHTNESS 125 // limits maximum brightness of LEDs to 125 out of 255. Higher may cause the controller to crash.
  26. #define RGB_MATRIX_HUE_STEP 8
  27. #define RGB_MATRIX_SAT_STEP 8
  28. #define RGB_MATRIX_VAL_STEP 8
  29. #define RGB_MATRIX_SPD_STEP 10
  30. // RGB Matrix Animation modes. Explicitly enabled
  31. // For full list of effects, see:
  32. // https://docs.qmk.fm/#/feature_rgb_matrix?id=rgb-matrix-effects
  33. #define ENABLE_RGB_MATRIX_ALPHAS_MODS
  34. #define ENABLE_RGB_MATRIX_BREATHING
  35. #define ENABLE_RGB_MATRIX_BAND_SAT
  36. #define ENABLE_RGB_MATRIX_BAND_VAL
  37. #define ENABLE_RGB_MATRIX_BAND_PINWHEEL_SAT
  38. #define ENABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
  39. #define ENABLE_RGB_MATRIX_BAND_SPIRAL_SAT
  40. #define ENABLE_RGB_MATRIX_BAND_SPIRAL_VAL
  41. #define ENABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
  42. #define ENABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
  43. #define ENABLE_RGB_MATRIX_CYCLE_OUT_IN
  44. #define ENABLE_RGB_MATRIX_CYCLE_PINWHEEL
  45. #define ENABLE_RGB_MATRIX_CYCLE_SPIRAL
  46. #define ENABLE_RGB_MATRIX_DUAL_BEACON
  47. #define ENABLE_RGB_MATRIX_JELLYBEAN_RAINDROPS
  48. #define ENABLE_RGB_MATRIX_HUE_WAVE
  49. #define ENABLE_RGB_MATRIX_PIXEL_FLOW
  50. #endif