config.h 777 B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef RBG_CONFIG_H
  2. #define RBG_CONFIG_H
  3. #include "config_common.h"
  4. #define PRODUCT S60-X-RGB
  5. #define DESCRIPTION q.m.k. keyboard firmware for S60-X RGB
  6. /* key matrix pins */
  7. #define MATRIX_ROW_PINS { B5, B4, D7, D6, D4 }
  8. #define MATRIX_COL_PINS { D0, D1, D2, D3, D5, B6, C6, C7, F1, F0, E6, B3, B2, B1, B0 }
  9. #define UNUSED_PINS
  10. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  11. #define LOCKING_SUPPORT_ENABLE
  12. /* Locking resynchronize hack */
  13. #define LOCKING_RESYNC_ENABLE
  14. /* prevent stuck modifiers */
  15. #define PREVENT_STUCK_MODIFIERS
  16. #define RGB_DI_PIN F6
  17. #ifdef RGB_DI_PIN
  18. #define RGBLIGHT_ANIMATIONS
  19. #define RGBLED_NUM 10
  20. #define RGBLIGHT_HUE_STEP 8
  21. #define RGBLIGHT_SAT_STEP 8
  22. #define RGBLIGHT_VAL_STEP 8
  23. #endif
  24. #endif