2019-05-10 07:12:11 +02:00
|
|
|
/* Copyright 2019 Torben Hoffmann
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2019-07-16 08:15:07 +02:00
|
|
|
|
|
|
|
// Sendstring lookup tables for Norman layouts
|
|
|
|
|
2019-05-10 07:12:11 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "keymap_norman.h"
|
|
|
|
|
2019-10-28 23:54:05 +01:00
|
|
|
// clang-format off
|
|
|
|
|
2019-07-16 08:15:07 +02:00
|
|
|
const uint8_t ascii_to_keycode_lut[128] PROGMEM = {
|
|
|
|
// NUL SOH STX ETX EOT ENQ ACK BEL
|
|
|
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
|
|
|
// BS TAB LF VT FF CR SO SI
|
2019-10-28 23:54:05 +01:00
|
|
|
KC_BSPC, KC_TAB, KC_ENT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
2019-07-16 08:15:07 +02:00
|
|
|
// DLE DC1 DC2 DC3 DC4 NAK SYN ETB
|
|
|
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
|
|
|
// CAN EM SUB ESC FS GS RS US
|
2019-10-28 23:54:05 +01:00
|
|
|
XXXXXXX, XXXXXXX, XXXXXXX, KC_ESC, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
2019-05-10 07:12:11 +02:00
|
|
|
|
2019-07-16 08:15:07 +02:00
|
|
|
// ! " # $ % & '
|
2020-03-15 21:38:05 +01:00
|
|
|
KC_SPC, NM_1, NM_QUOT, NM_3, NM_4, NM_5, NM_7, NM_QUOT,
|
2019-07-16 08:15:07 +02:00
|
|
|
// ( ) * + , - . /
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_9, NM_0, NM_8, NM_EQL, NM_COMM, NM_MINS, NM_DOT, NM_SLSH,
|
2019-07-16 08:15:07 +02:00
|
|
|
// 0 1 2 3 4 5 6 7
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_0, NM_1, NM_2, NM_3, NM_4, NM_5, NM_6, NM_7,
|
2019-07-16 08:15:07 +02:00
|
|
|
// 8 9 : ; < = > ?
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_8, NM_9, NM_SCLN, NM_SCLN, NM_COMM, NM_EQL, NM_DOT, NM_SLSH,
|
2019-07-16 08:15:07 +02:00
|
|
|
// @ A B C D E F G
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_2, NM_A, NM_B, NM_C, NM_D, NM_E, NM_F, NM_G,
|
2019-07-16 08:15:07 +02:00
|
|
|
// H I J K L M N O
|
2019-10-28 23:54:05 +01:00
|
|
|
NM_H, NM_I, NM_J, NM_K, NM_L, NM_M, NM_N, NM_O,
|
2019-07-16 08:15:07 +02:00
|
|
|
// P Q R S T U V W
|
2019-10-28 23:54:05 +01:00
|
|
|
NM_P, NM_Q, NM_R, NM_S, NM_T, NM_U, NM_V, NM_W,
|
2019-07-16 08:15:07 +02:00
|
|
|
// X Y Z [ \ ] ^ _
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_X, NM_Y, NM_Z, NM_LBRC, NM_BSLS, NM_RBRC, NM_6, NM_MINS,
|
2019-07-16 08:15:07 +02:00
|
|
|
// ` a b c d e f g
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_GRV, NM_A, NM_B, NM_C, NM_D, NM_E, NM_F, NM_G,
|
2019-07-16 08:15:07 +02:00
|
|
|
// h i j k l m n o
|
2019-10-28 23:54:05 +01:00
|
|
|
NM_H, NM_I, NM_J, NM_K, NM_L, NM_M, NM_N, NM_O,
|
2019-07-16 08:15:07 +02:00
|
|
|
// p q r s t u v w
|
2019-10-28 23:54:05 +01:00
|
|
|
NM_P, NM_Q, NM_R, NM_S, NM_T, NM_U, NM_V, NM_W,
|
2019-07-16 08:15:07 +02:00
|
|
|
// x y z { | } ~ DEL
|
2020-03-15 21:38:05 +01:00
|
|
|
NM_X, NM_Y, NM_Z, NM_LBRC, NM_BSLS, NM_RBRC, NM_GRV, KC_DEL
|
2019-10-28 23:54:05 +01:00
|
|
|
};
|