keymap.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include "keymap_bepo.h"
  15. #include "ericgebhart.h"
  16. const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
  17. // 4x10
  18. [_DVORAK] = BASE_5x14(___NUMS___, ___DVORAK___),
  19. [_QWERTY] = BASE_5x14(___NUMS___, ___QWERTY___),
  20. [_COLEMAK] = BASE_5x14(___NUMS___, ___COLEMAK_DH___),
  21. [_BEAKL] = BASE_5x14(___BKLNUMS___, ___BEAKL15___),
  22. //[_DVORAK_BP] = BASE_5x14_bepo(___DVORAK_FR___),
  23. //[_BEAKL_BP] = BASE_5x14_bepo(___BEAKL15_FR___),
  24. // 4x12
  25. //[_BEPO] = BASE_5x14_bepo6(___BEPO6_FR___),
  26. // transient macro takes a 3x12 for args
  27. [_SYMB] = TRANSIENT_5x14(___12___, ___SYMB_BEAKLA_3x12___),
  28. //[_SYMB_BP] = TRANSIENT_5x14(___SYMB_BEAKLA_BP_3x12___),
  29. [_TOPROWS] = TRANSIENT_5x14(___12___, ___TOPROWS_3x12___),
  30. //[_TOPROWS_BP] = TRANSIENT_5x14(___TOPROWS_BP_3x12___),
  31. [_KEYPAD] = TRANSIENT_5x14(___12___, ___KP_C_3x12___),
  32. //[_KEYPAD_BP] = TRANSIENT_5x14(___KP_C_BP_3x12___),
  33. // Navigation and control
  34. [_NAV] = TRANSIENT_5x14(___12___, ___NAV_3x12___),
  35. [_LAYERS] = TRANSIENT_5x14(___12___, ___LAYERS_3x12___),
  36. //[_RGB] = TRANSIENT_5x14(___12___, ___RGB_3x12___),
  37. };