config.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. Copyright 2012 Jun Wako <wakojun@gmail.com>
  3. Copyright 2015 Jack Humbert
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 2 of the License, or
  7. (at your option) any later version.
  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. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #pragma once
  16. // wiring of each half
  17. #define MATRIX_ROW_PINS { B1, B5, E6, B4 }
  18. #define MATRIX_COL_PINS { F4, F7, D7, B3, B2, B6}
  19. // #define MATRIX_COL_PINS { B6, B2, B3, D7, F7, F4} //uncomment this line and comment line above if you need to reverse left-to-right key order
  20. #define DIODE_DIRECTION COL2ROW
  21. /* ws2812 RGB LED */
  22. #define RGB_DI_PIN D4
  23. #define RGBLED_NUM 12 // Number of LEDs
  24. /* Audio settings */
  25. #ifdef AUDIO_ENABLE
  26. #define AUDIO_PIN C6 // Define this to enable the buzzer
  27. #endif
  28. /*
  29. * Feature disable options
  30. * These options are also useful to firmware size reduction.
  31. */
  32. /* disable debug print */
  33. // #define NO_DEBUG
  34. /* disable print */
  35. // #define NO_PRINT
  36. /* disable action features */
  37. //#define NO_ACTION_LAYER
  38. //#define NO_ACTION_TAPPING
  39. //#define NO_ACTION_ONESHOT