logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

keymap.c (304B)


  1. #include QMK_KEYBOARD_H
  2. #define _MAIN 0
  3. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  4. /* Keymap __MAIN: Default Layer
  5. * ,---------------.
  6. * | |-----|-----| |
  7. * | | Ζ | Χ | |
  8. * | |-----|-----| |
  9. * '---------------'
  10. */
  11. [_MAIN] = LAYOUT(
  12. KC_Z, KC_X
  13. ),
  14. };