template.h 327 B

1234567891011121314151617181920
  1. #ifndef USERSPACE
  2. #define USERSPACE
  3. #include "quantum.h"
  4. #include "version.h"
  5. #include "eeprom.h"
  6. // Define layer names
  7. #define BASE 0
  8. enum custom_keycodes {
  9. PLACEHOLDER = SAFE_RANGE, // can always be here
  10. EPRM,
  11. VRSN,
  12. KC_MAKE,
  13. KC_RESET,
  14. NEWPLACEHOLDER //use "NEWPLACEHOLDER for keymap specific codes
  15. };
  16. #endif