Skip to content

Instantly share code, notes, and snippets.

@kaansoral
Created March 20, 2018 12:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaansoral/103c7320ed82910620bcb3719695a3a6 to your computer and use it in GitHub Desktop.
Save kaansoral/103c7320ed82910620bcb3719695a3a6 to your computer and use it in GitHub Desktop.
/*
Copyright 2012,2013 Jun Wako <wakojun@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/>.
*/
#ifndef KEYMAP_COMMON_H
#define KEYMAP_COMMON_H
#include <stdint.h>
#include <stdbool.h>
#include "keycode.h"
#include "action.h"
#include "action_code.h"
#include "action_layer.h"
#include "action_macro.h"
#include "action_util.h"
#include "report.h"
#include "host.h"
#include "print.h"
#include "debug.h"
#include "keymap.h"
#define KEYMAP( \
K04, K14, K24, K34, K44, K54, K16, KB6, KB7, K17, KA4, KB4, KC4, KE4, \
K03, K13, K23, K33, K43, K53, K26, KC6, KC7, K27, KA3, KB3, KC3, KD3, \
K02, K12, K22, K32, K42, K52, K36, KD6, KD7, K37, KA2, KB2, KD2, \
K01, K11, K21, K31, K41, K51, K46, KE6, KE7, K47, KA1, KB1, K86, \
K00, K10, K56, K57, KB0, KC0, K66 \
) \
{ \
{ KC_NO, KC_##K13, KC_##K23, KC_##K33, KC_##K43, KC_##KC6, KC_##KC7, KC_##K27, KC_##KA3, KC_NO, KC_##K00, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_##K03, KC_##K02, KC_NO, KC_##K53, KC_##K26, KC_##KC3, KC_NO, KC_##KB3, KC_##K01, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_##K12, KC_##K22, KC_##K32, KC_##K42, KC_##KD6, KC_##KD7, KC_##K37, KC_##KA2, KC_##K66, KC_##KD3, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_NO, KC_NO, KC_NO, KC_##K52, KC_##K36, KC_NO, KC_NO, KC_##KB2, KC_##K10, KC_##K56, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_##K11, KC_##K21, KC_##K31, KC_##K41, KC_##KE6, KC_##KE7, KC_##K47, KC_NO, KC_##KB1, KC_##KD2, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_NO, KC_NO, KC_NO, KC_##K51, KC_##K46, KC_NO, KC_##KC0, KC_##KA1, KC_##K57, KC_##K86, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_##K04, KC_NO, KC_NO, KC_##K54, KC_##K16, KC_##KC4, KC_NO, KC_##KB4, KC_##KB0, KC_##KE4, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, }, \
{ KC_NO, KC_##K14, KC_##K24, KC_##K34, KC_##K44, KC_##KB6, KC_##KB7, KC_##K17, KC_##KA4, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, } \
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment