]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap_extras/keymap_nordic.h
Remove more commented out MCUs
[qmk_firmware.git] / quantum / keymap_extras / keymap_nordic.h
1 /* Copyright 2015-2016 Jack Humbert
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 #ifndef KEYMAP_NORDIC_H
17 #define KEYMAP_NORDIC_H
18
19 #include "keymap.h"
20
21 // Normal characters
22 #define NO_HALF KC_GRV
23 #define NO_PLUS KC_MINS
24 #define NO_ACUT KC_EQL
25
26 #define NO_AM   KC_LBRC
27 #define NO_QUOT KC_RBRC // this is the "umlaut" char on Nordic keyboards, Apple layout
28 #define NO_AE   KC_SCLN
29 #define NO_OSLH KC_QUOT
30 #define NO_APOS KC_NUHS
31
32 #define NO_LESS KC_NUBS
33 #define NO_MINS KC_SLSH
34
35 // Shifted characters
36 #define NO_SECT LSFT(NO_HALF)
37 #define NO_QUO2 LSFT(KC_2)
38 #define NO_BULT LSFT(KC_4)
39 #define NO_AMPR LSFT(KC_6)
40 #define NO_SLSH LSFT(KC_7)
41 #define NO_LPRN LSFT(KC_8)
42 #define NO_RPRN LSFT(KC_9)
43 #define NO_EQL  LSFT(KC_0)
44 #define NO_QUES LSFT(NO_PLUS)
45 #define NO_GRV  LSFT(NO_ACUT)
46
47 #define NO_CIRC LSFT(NO_QUOT)
48
49 #define NO_GRTR LSFT(NO_LESS)
50 #define NO_SCLN LSFT(KC_COMM)
51 #define NO_COLN LSFT(KC_DOT)
52 #define NO_UNDS LSFT(NO_MINS)
53
54 // Alt Gr-ed characters
55 #define NO_AT   ALGR(KC_2)
56 #define NO_PND  ALGR(KC_3)
57 #define NO_DLR  ALGR(KC_4)
58 #define NO_LCBR ALGR(KC_7)
59 #define NO_LBRC ALGR(KC_8)
60 #define NO_RBRC ALGR(KC_9)
61 #define NO_RCBR ALGR(KC_0)
62 #define NO_PIPE ALGR(KC_NUBS)
63
64 #define NO_EURO ALGR(KC_E)
65 #define NO_TILD ALGR(NO_QUOT)
66
67 #define NO_BSLS ALGR(KC_MINS)
68 #define NO_MU   ALGR(KC_M)
69
70 #endif