rev1.h 820 B

123456789101112131415161718192021222324252627282930313233343536
  1. #pragma once
  2. #include "../uzu42.h"
  3. #include "quantum.h"
  4. #ifdef RGBLIGHT_ENABLE
  5. //rgb led driver
  6. #include "ws2812.h"
  7. #endif
  8. #ifdef USE_I2C
  9. #include <stddef.h>
  10. #ifdef __AVR__
  11. #include <avr/io.h>
  12. #include <avr/interrupt.h>
  13. #endif
  14. #endif
  15. #define LAYOUT( \
  16. L00, L01, L02, L03, L04, R00, R01, R02, R03, R04, \
  17. L10, L11, L12, L13, L14, R10, R11, R12, R13, R14, \
  18. L20, L21, L22, L23, L24, R20, R21, R22, R23, R24, \
  19. L30, L31, L32, L33, L34, L35, R30, R31, R32, R33, R34, R35 \
  20. ) \
  21. { \
  22. { L00, L01, L02, L03, L04 }, \
  23. { L10, L11, L12, L13, L14 }, \
  24. { L20, L21, L22, L23, L24 }, \
  25. { L30, L31, L32, L33, L34, L35 }, \
  26. { R04, R03, R02, R01, R00 }, \
  27. { R14, R13, R12, R11, R10 }, \
  28. { R24, R23, R22, R21, R20 }, \
  29. { R35, R34, R33, R32, R31, R30 } \
  30. }