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.

31 lines
852 B

  1. #include QMK_KEYBOARD_H
  2. #define _BASE 0
  3. #define _FN 1
  4. #define _______ KC_TRNS
  5. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  6. [_BASE] = LAYOUT( /* Base */
  7. KC_A, KC_B, KC_C, KC_D, \
  8. KC_E, KC_F, KC_G, KC_H, \
  9. MO(_FN), KC_I, KC_J, KC_K, KC_L, \
  10. KC_1, KC_M, KC_N, KC_O, KC_P, \
  11. KC_Q, KC_R, KC_S, KC_T \
  12. ),
  13. [_FN] = LAYOUT(
  14. RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUI, \
  15. _______, _______, _______, _______, \
  16. _______, _______, _______, _______, _______, \
  17. KC_2, _______, _______, _______, _______, \
  18. _______, _______, _______, _______ \
  19. ),
  20. };
  21. const uint16_t PROGMEM fn_actions[] = {
  22. };
  23. const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) // MACRODOWN only works in this function
  24. {
  25. return MACRO_NONE;
  26. };