template.h 287 B

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