config.h 516 B

12345678910111213141516
  1. #pragma once
  2. //5x5 powered by Adafruit Feather 32u4 Bluefruit LE
  3. #if defined(KEYBOARD_5x5) && defined(BLUEFRUIT)
  4. //need to undefine standard 5x5 array before defining alternate Bluefruit array
  5. #undef MATRIX_ROW_PINS
  6. #undef MATRIX_COL_PINS
  7. #define MATRIX_ROW_PINS { F7, F6, F5, D1, D0 }
  8. //last 5 elements not tested
  9. #define MATRIX_COL_PINS { C6, D7, B5, B6, B7, D6, C7, F0, F1, F4, B1, B2, B3, D2, D3 }
  10. //get rid of description - too long to show properly in Windows
  11. #undef DESCRIPTION
  12. #define DESCRIPTION
  13. #endif