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.

52 lines
1.4 KiB

  1. /* Copyright 2021 frooastside
  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 3 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. #include "config_common.h"
  18. /* USB Device descriptor parameter */
  19. #define MANUFACTURER frooastside
  20. #define PRODUCT Frooastboard
  21. /* key matrix size */
  22. #define MATRIX_ROWS 2
  23. #define MATRIX_COLS 2
  24. #define BOOTMAGIC_LITE_ROW 1
  25. #define BOOTMAGIC_LITE_COLUMN 1
  26. #define RGB_DI_PIN B4
  27. #define RGBLED_NUM 8
  28. #define RGBLIGHT_SLEEP
  29. #define RGBLIGHT_HUE_STEP 8
  30. #define RGBLIGHT_SAT_STEP 8
  31. #define RGBLIGHT_VAL_STEP 8
  32. #define RGBLIGHT_DEFAULT_HUE 234
  33. #define RGBLIGHT_LIMIT_VAL 255
  34. #define RGBLIGHT_DEFAULT_VAL 190
  35. #define RGBLIGHT_EFFECT_RAINBOW_MOOD
  36. #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
  37. #define RGBLIGHT_EFFECT_TWINKLE
  38. #define RGBLIGHT_EFFECT_BREATHING
  39. #define RGBLIGHT_EFFECT_SNAKE
  40. #define RGBLIGHT_DEFAULT_MODE RGBLIGHT_MODE_RAINBOW_MOOD + 2