config.h 556 B

1234567891011121314151617181920212223
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. /* USB Device descriptor parameter */
  5. #define VENDOR_ID 0xFEED
  6. #define PRODUCT_ID 0x6060
  7. #define MANUFACTURER binaryplease
  8. #define PRODUCT Teensy_Planck
  9. #define DESCRIPTION A compact ortholinear keyboard using a teensy 2.0
  10. #define MATRIX_ROW_PINS { D3, D2, D1, D0 }
  11. #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, B6, B5, B4, D7, D6, D4 }
  12. #define UNUSED_PINS
  13. #define BACKLIGHT_PIN B7
  14. /* number of backlight levels */
  15. #define BACKLIGHT_LEVELS 0
  16. #endif