config.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com>
  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. /* Use I2C or Serial, not both */
  18. #include "../drashna/config.h"
  19. #ifdef RGBLIGHT_ENABLE
  20. # undef RGBLED_NUM
  21. # define RGBLED_NUM 16 // Number of LEDs
  22. # undef RGBLED_SPLIT
  23. # define RGBLED_SPLIT \
  24. { 8, 8 }
  25. #endif
  26. #undef PRODUCT
  27. #ifdef KEYBOARD_keebio_iris_rev2
  28. # define PRODUCT Drashna Hacked Iris LP Rev .2(Backlit)
  29. #endif
  30. #undef SHFT_LED1
  31. #define SHFT_LED1 5
  32. #undef SHFT_LED2
  33. #define SHFT_LED2 10
  34. #undef CTRL_LED1
  35. #define CTRL_LED1 6
  36. #undef CTRL_LED2
  37. #define CTRL_LED2 9
  38. #undef ALT_LED1
  39. #define ALT_LED1 7
  40. #undef GUI_LED1
  41. #define GUI_LED1 8
  42. #define DRASHNA_LP