diff options
author | Peter Eichinger <peter.eichinger@gmail.com> | 2016-01-25 17:46:50 +0100 |
---|---|---|
committer | Peter Eichinger <peter.eichinger@gmail.com> | 2016-01-25 17:46:50 +0100 |
commit | 78192791bc0bb98d7a469f88a77febb3250c5b93 (patch) | |
tree | c20d43cfa5cc4980f8dcf967832e8c913bb84bbe /quantum/template/config.h | |
parent | c5f90eb99b282c7425e151b82f0ca22969a4a275 (diff) | |
parent | e9356dcad5769bc917ab9d3366013b5f193c3ef3 (diff) | |
download | qmk_firmware-78192791bc0bb98d7a469f88a77febb3250c5b93.tar.gz |
Merge branch 'master' into flicker-fix
Diffstat (limited to 'quantum/template/config.h')
-rw-r--r-- | quantum/template/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/template/config.h b/quantum/template/config.h index 9afedbcc0..7d6149f43 100644 --- a/quantum/template/config.h +++ b/quantum/template/config.h @@ -29,14 +29,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define DESCRIPTION A custom keyboard /* key matrix size */ -#define MATRIX_ROWS 4 -#define MATRIX_COLS 12 +#define MATRIX_ROWS 2 +#define MATRIX_COLS 3 // Planck PCB default pin-out // Change this to how you wired your keyboard // COLS: Left to right, ROWS: Top to bottom -#define COLS (int []){ F1, F0, B0, C7, F4, F5, F6, F7, D4, D6, B4, D7 } -#define ROWS (int []){ D0, D5, B5, B6 } +#define COLS (int []){ F1, F0, B0 } +#define ROWS (int []){ D0, D5 } /* COL2ROW or ROW2COL */ #define DIODE_DIRECTION COL2ROW |