You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

  1. #include QMK_KEYBOARD_H
  2. #define _MAIN 0
  3. #define _FN 1
  4. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  5. /* Keymap __MAIN: Default Layer
  6. * ,--------------------------------.
  7. * | .------. |-----|-----|-----| |
  8. * | | | |Play |VolUp| Fn | |
  9. * | | Pro | |-----|-----|-----| |
  10. * | | Micro| --------------------|
  11. * | | | |-----|-----|-----| |
  12. * | '------' |Prev |VolD |Next | |
  13. * | |||||| |-----|-----|-----| |
  14. * '--------------------------------'
  15. */
  16. [_MAIN] = LAYOUT(
  17. KC_MPLY, KC_VOLU, MO(1),
  18. KC_MPRV, KC_VOLD, KC_MNXT
  19. ),
  20. /* Keymap __FN: Second Layer
  21. * ,--------------------------------.
  22. * | .------. |-----|-----|-----| |
  23. * | | | |Calc |PgUp |TRANS| |
  24. * | | Pro | |-----|-----|-----| |
  25. * | | Micro| --------------------|
  26. * | | | |-----|-----|-----| |
  27. * | '------' |MyPC | PgD |RESET| |
  28. * | |||||| |-----|-----|-----| |
  29. * '--------------------------------'
  30. */
  31. [_FN] = LAYOUT(
  32. KC_CALC, KC_PGUP, _______,
  33. KC_MYCM, KC_PGDN, RESET
  34. )
  35. };