Add keymap

This commit is contained in:
Fred Sundvik 2017-06-16 22:39:56 +03:00
parent c588fca06c
commit 617578399c
2 changed files with 8 additions and 1 deletions

View File

@ -17,7 +17,7 @@
#ifndef TESTS_BASIC_CONFIG_H_ #ifndef TESTS_BASIC_CONFIG_H_
#define TESTS_BASIC_CONFIG_H_ #define TESTS_BASIC_CONFIG_H_
#define MATRIX_ROWS 1 #define MATRIX_ROWS 2
#define MATRIX_COLS 2 #define MATRIX_COLS 2

View File

@ -14,4 +14,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h"
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = {
{KC_A, KC_B},
{KC_C, KC_D}
},
};