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.

56 lines
2.0 KiB

  1. /* Copyright 2022 ItsFiremanSam
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 2 of the License, or
  5. (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. #pragma once
  14. #define RGBLED_NUM 4 // Number of LEDs connected
  15. #define RGBLIGHT_HUE_STEP 10 // The number of steps to cycle through the hue by
  16. #define RGBLIGHT_SAT_STEP 17 // The number of steps to increment the saturation by
  17. #define RGBLIGHT_VAL_STEP 17 // The number of steps to increment the brightness by
  18. #define RGBLIGHT_LIMIT_VAL 255 // Max brightness level
  19. #define RGBLIGHT_SLEEP // RGB will switch off when host goes to sleep
  20. #define RGBLIGHT_EFFECT_BREATHING // Enable all additional RGB animation modes
  21. #define RGBLIGHT_EFFECT_RAINBOW_MOOD
  22. #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
  23. #define RGBLIGHT_EFFECT_SNAKE
  24. #define RGBLIGHT_EFFECT_KNIGHT
  25. #define RGBLIGHT_EFFECT_CHRISTMAS
  26. #define RGBLIGHT_EFFECT_STATIC_GRADIENT
  27. #define RGBLIGHT_EFFECT_RGB_TEST
  28. #define RGBLIGHT_EFFECT_ALTERNATING
  29. #define RGBLIGHT_EFFECT_TWINKLE
  30. #define OLED_TIMEOUT 20000 // Turns off OLED after said amount of milliseconds
  31. #define OLED_BRIGHTNESS 128
  32. #define OLED_DISPLAY_128X64
  33. /*
  34. * Feature disable options
  35. * These options are also useful to firmware size reduction.
  36. */
  37. /* disable debug print */
  38. //#define NO_DEBUG
  39. /* disable print */
  40. //#define NO_PRINT
  41. /* disable action features */
  42. //#define NO_ACTION_LAYER
  43. //#define NO_ACTION_TAPPING
  44. //#define NO_ACTION_ONESHOT