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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

keymap_plain.c 1.3KB

12345678910111213141516171819202122232425262728
  1. #include "keymap_common.h"
  2. const uint8_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  3. /* 0: default
  4. * ,-----------------------------------------------------------.
  5. * | `| 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|???|BS |
  6. * |-----------------------------------------------------------|
  7. * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \|
  8. * |-----------------------------------------------------------|
  9. * |Ctrl | A| S| D| F| G| H| J| K| L| ;| '|???|Ret |
  10. * |-----------------------------------------------------------|
  11. * |Shif|???| Z| X| C| V| B| N| M| ,| ,| /|???|Shift |
  12. * |-----------------------------------------------------------|
  13. * |Ctrl |Gui|Alt | Space |Alt |Gui|Ctrl |
  14. * `-----------------------------------------------------------'
  15. */
  16. KEYMAP(
  17. ESC, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, MINS,EQL, BSLS,GRV, \
  18. TAB, Q, W, E, R, T, Y, U, I, O, P, LBRC,RBRC,BSPC, \
  19. LCTL,A, S, D, F, G, H, J, K, L, SCLN,QUOT,NO, ENT, \
  20. LSFT,NO, Z, X, C, V, B, N, M, COMM,DOT, SLSH, RSFT, \
  21. LCTL,LGUI,LALT, SPC, RGUI,RCTL \
  22. ),
  23. };
  24. const uint16_t PROGMEM fn_actions[] = {
  25. };