2020-04-28 09:58:42 +00:00
|
|
|
/*
|
|
|
|
Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "keymap_bepo.h"
|
|
|
|
#include "ericgebhart.h"
|
|
|
|
|
|
|
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
2022-01-14 04:40:41 +00:00
|
|
|
// 4x10
|
|
|
|
[_DVORAK] = BASE_5x14(___NUMS___, ___DVORAK___),
|
|
|
|
[_QWERTY] = BASE_5x14(___NUMS___, ___QWERTY___),
|
|
|
|
[_COLEMAK] = BASE_5x14(___NUMS___, ___COLEMAK_DH___),
|
|
|
|
[_BEAKL] = BASE_5x14(___BKLNUMS___, ___BEAKL15___),
|
2020-04-28 09:58:42 +00:00
|
|
|
|
2022-01-14 04:40:41 +00:00
|
|
|
//[_DVORAK_BP] = BASE_5x14_bepo(___DVORAK_FR___),
|
|
|
|
//[_BEAKL_BP] = BASE_5x14_bepo(___BEAKL15_FR___),
|
2020-04-28 09:58:42 +00:00
|
|
|
|
2022-01-14 04:40:41 +00:00
|
|
|
// 4x12
|
|
|
|
//[_BEPO] = BASE_5x14_bepo6(___BEPO6_FR___),
|
2020-04-28 09:58:42 +00:00
|
|
|
|
2022-01-14 04:40:41 +00:00
|
|
|
// transient macro takes a 3x12 for args
|
|
|
|
[_SYMB] = TRANSIENT_5x14(___12___, ___SYMB_BEAKLA_3x12___),
|
|
|
|
//[_SYMB_BP] = TRANSIENT_5x14(___SYMB_BEAKLA_BP_3x12___),
|
2020-04-28 09:58:42 +00:00
|
|
|
|
2022-01-14 04:40:41 +00:00
|
|
|
[_TOPROWS] = TRANSIENT_5x14(___12___, ___TOPROWS_3x12___),
|
|
|
|
//[_TOPROWS_BP] = TRANSIENT_5x14(___TOPROWS_BP_3x12___),
|
2020-04-28 09:58:42 +00:00
|
|
|
|
2022-01-14 04:40:41 +00:00
|
|
|
[_KEYPAD] = TRANSIENT_5x14(___12___, ___KP_C_3x12___),
|
|
|
|
//[_KEYPAD_BP] = TRANSIENT_5x14(___KP_C_BP_3x12___),
|
2020-04-28 09:58:42 +00:00
|
|
|
|
2022-01-14 04:40:41 +00:00
|
|
|
// Navigation and control
|
|
|
|
[_NAV] = TRANSIENT_5x14(___12___, ___NAV_3x12___),
|
|
|
|
[_LAYERS] = TRANSIENT_5x14(___12___, ___LAYERS_3x12___),
|
|
|
|
//[_RGB] = TRANSIENT_5x14(___12___, ___RGB_3x12___),
|
2020-04-28 09:58:42 +00:00
|
|
|
};
|