config.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 { 8, 8 }
  24. #endif
  25. #undef PRODUCT
  26. #ifdef KEYBOARD_keebio_iris_rev2
  27. # define PRODUCT Drashna Hacked Iris Rev.2 (16 LED)
  28. #endif
  29. #undef SHFT_LED1
  30. #define SHFT_LED1 5
  31. #undef SHFT_LED2
  32. #define SHFT_LED2 10
  33. #undef CTRL_LED1
  34. #define CTRL_LED1 6
  35. #undef CTRL_LED2
  36. #define CTRL_LED2 9
  37. #undef ALT_LED1
  38. #define ALT_LED1 7
  39. #undef GUI_LED1
  40. #define GUI_LED1 8