]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/orthodox/keymaps/drashna/keymap.c
25296ca4fdd2ebbaaced91285d7baea9ffbd4b88
[qmk_firmware.git] / keyboards / orthodox / keymaps / drashna / keymap.c
1 /*
2 This is the keymap for the keyboard
3
4 Copyright 2012 Jun Wako <wakojun@gmail.com>
5 Copyright 2015 Jack Humbert
6 Copyright 2017 Art Ortenburger
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include QMK_KEYBOARD_H
23 #include "drashna.h"
24
25 #ifdef INDICATOR_LIGHTS
26 extern userspace_config_t userspace_config;
27
28 uint8_t last_mod;
29 uint8_t last_led;
30 uint8_t last_osm;
31 #endif
32
33
34 #define LAYOUT_orthodox_base( \
35     K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, \
36     K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, \
37     K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A  \
38   ) \
39   LAYOUT_wrapper( \
40     KC_ESC,  K01,    K02,     K03,      K04,     K05,                                                             K06,     K07,     K08,     K09,     K0A,     KC_BSPC, \
41     KC_TAB,  K11,    K12,     K13,      K14,     K15,              ALT_APP, OS_LGUI,   KC_LALT, OS_RGUI,          K16,     K17,     K18,     K19,     K1A,     KC_QUOT, \
42     KC_MLSF, CTL_T(K21), K22, K23,      K24,     K25,     LOWER,   KC_SPACE,KC_BSPC,   KC_DEL,  KC_ENT,  RAISE,   K26,     K27,     K28,     K29,  CTL_T(K2A), KC_MRSF  \
43   )
44 #define LAYOUT_orthodox_base_wrapper(...)       LAYOUT_orthodox_base(__VA_ARGS__)
45
46
47
48 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
49
50 [_QWERTY] = LAYOUT_orthodox_base_wrapper(
51   _________________QWERTY_L1_________________, _________________QWERTY_R1_________________,
52   _________________QWERTY_L2_________________, _________________QWERTY_R2_________________,
53   _________________QWERTY_L3_________________, _________________QWERTY_R3_________________
54 ),
55
56 [_COLEMAK] = LAYOUT_orthodox_base_wrapper(
57   _________________COLEMAK_L1________________, _________________COLEMAK_R1________________,
58   _________________COLEMAK_L2________________, _________________COLEMAK_R2________________,
59   _________________COLEMAK_L3________________, _________________COLEMAK_R3________________
60 ),
61
62 [_DVORAK] = LAYOUT_orthodox_base_wrapper(
63   _________________DVORAK_L1_________________, _________________DVORAK_R1_________________,
64   _________________DVORAK_L2_________________, _________________DVORAK_R2_________________,
65   _________________DVORAK_L3_________________, _________________DVORAK_R3_________________
66 ),
67
68 [_WORKMAN] = LAYOUT_orthodox_base_wrapper(
69   _________________WORKMAN_L1________________, _________________WORKMAN_R1________________,
70   _________________WORKMAN_L2________________, _________________WORKMAN_R2________________,
71   _________________WORKMAN_L3________________, _________________WORKMAN_R3________________
72 ),
73
74 [_MODS] = LAYOUT_wrapper(\
75   _______, _______, _______, _______, _______, _______,                                                               _______, _______, _______, _______, _______, _______,
76   _______, _______, _______, _______, _______, _______,          _______, _______,         _______, _______,          _______, _______, _______, _______, _______, _______,
77   KC_LSFT, _______, _______, _______, _______, _______, _______, _______, _______,         _______, _______, _______, _______, _______, _______, _______, _______, _______
78 ),
79
80 [_LOWER] = LAYOUT_wrapper(\
81   KC_TILD, _________________LOWER_L1__________________,                                                               _________________LOWER_R1__________________, KC_BSPC,
82   KC_F11,  _________________LOWER_L2__________________,          _______, _______,         _______, _______,          _________________LOWER_R2__________________, KC_PIPE,
83   KC_F12,  _________________LOWER_L3__________________, _______, _______, _______,         _______, _______, _______, _________________LOWER_R3__________________, _______
84 ),
85
86 [_RAISE] = LAYOUT_wrapper(\
87   KC_GRV,  _________________RAISE_L1__________________,                                                               _________________RAISE_R1__________________, KC_BSPC,
88   _______, _________________RAISE_L2__________________,          _______, _______,         _______, _______,          _________________RAISE_R2__________________, KC_BSLS,
89   _______, _________________RAISE_L3__________________, _______, _______, _______,         _______, _______, _______, _________________RAISE_R3__________________, _______
90 ),
91
92 [_ADJUST] = LAYOUT_wrapper(\
93   KC_MAKE, _________________ADJUST_L1_________________,                                                               _________________ADJUST_R1_________________, KC_RESET,
94   VRSN,    _________________ADJUST_L2_________________,          _______, _______,         _______, KC_NUKE,          _________________ADJUST_R2_________________, EPRM,
95   TG_MODS, _________________ADJUST_L3_________________, _______, _______, _______,         _______, _______, _______, _________________ADJUST_R3_________________, KC_MPLY
96 )
97 };
98
99 void matrix_init_keymap(void) {
100   DDRD &= ~(1<<5);
101   PORTD &= ~(1<<5);
102
103   DDRB &= ~(1<<0);
104   PORTB &= ~(1<<0);
105 }