config.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. /* key matrix pins */
  18. #define MATRIX_ROW_PINS { C2, D0, D1, D2, D6, B0, B3, B2, C6, B1 }
  19. #define MATRIX_COL_PINS { C4, C5, D3, C7, B7, B6, B5, B4 }
  20. /* COL2ROW or ROW2COL */
  21. #define DIODE_DIRECTION COL2ROW
  22. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  23. #define LOCKING_SUPPORT_ENABLE
  24. /* Locking resynchronize hack */
  25. #define LOCKING_RESYNC_ENABLE
  26. // ws2812 options
  27. #define RGB_DI_PIN D4 // pin the DI on the ws2812 is hooked-up to
  28. #define RGBLIGHT_EFFECT_BREATHING
  29. #define RGBLIGHT_EFFECT_RAINBOW_MOOD
  30. #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
  31. #define RGBLIGHT_EFFECT_SNAKE
  32. #define RGBLIGHT_EFFECT_KNIGHT
  33. #define RGBLIGHT_EFFECT_CHRISTMAS
  34. #define RGBLIGHT_EFFECT_STATIC_GRADIENT
  35. #define RGBLIGHT_EFFECT_RGB_TEST
  36. #define RGBLIGHT_EFFECT_ALTERNATING
  37. #define RGBLIGHT_EFFECT_TWINKLE
  38. #define RGBLED_NUM 18 // number of LEDs
  39. #define RGBLIGHT_HUE_STEP 12 // units to step when in/decreasing hue
  40. #define RGBLIGHT_SAT_STEP 12 // units to step when in/decresing saturation
  41. #define RGBLIGHT_VAL_STEP 12 // units to step when in/decreasing value (brightness)