template.h 304 B

123456789101112131415161718
  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. VRSN = SAFE_RANGE, // can always be here
  10. KC_MAKE,
  11. KC_RESET,
  12. NEWPLACEHOLDER //use "NEWPLACEHOLDER for keymap specific codes
  13. };
  14. #endif