aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/tada68/keymaps/isoish/keymap.c48
-rw-r--r--keyboards/tada68/keymaps/isoish/readme.md3
-rw-r--r--keyboards/tada68/keymaps/isoish/rules.mk21
-rwxr-xr-xkeyboards/tada68/tada68.h33
4 files changed, 104 insertions, 1 deletions
diff --git a/keyboards/tada68/keymaps/isoish/keymap.c b/keyboards/tada68/keymaps/isoish/keymap.c
new file mode 100644
index 000000000..56f4a8532
--- /dev/null
+++ b/keyboards/tada68/keymaps/isoish/keymap.c
@@ -0,0 +1,48 @@
1#include "tada68.h"
2
3#define _BL 0
4#define _FL 1
5
6#define _______ KC_TRNS
7
8const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
9 /* Keymap _BL: (Base Layer) Default Layer
10 * ,----------------------------------------------------------------.
11 * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =|Backsp |~ ` |
12 * |----------------------------------------------------------------|
13 * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ |Del |
14 * |----------------------------------------------------------------|
15 * |CAPS | A| S| D| F| G| H| J| K| L| ;| '|Return |PgUp|
16 * |----------------------------------------------------------------|
17 * |Shift | Z| X| C| V| B| N| M| ,| .| /| <> | Up|PgDn|
18 * |----------------------------------------------------------------|
19 * |Ctrl|Win |Alt | Space |Alt| FN| APP|Lef|Dow|Rig |
20 * `----------------------------------------------------------------'
21 */
22[_BL] = KEYMAP_ISO(
23 KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_BSPC,KC_GRV, \
24 KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC,KC_BSLS,KC_DEL, \
25 KC_CAPS, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,KC_QUOT, KC_BSLS, KC_ENT,KC_PGUP, \
26 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM,KC_DOT, KC_SLSH, KC_NONUS_BSLASH,KC_UP,KC_PGDN, \
27 KC_LCTL, KC_LGUI,KC_LALT, KC_SPC, KC_RALT,MO(_FL),KC_APPLICATION, KC_LEFT,KC_DOWN,KC_RGHT),
28
29 /* Keymap _FL1: Function Layer 1
30 * ,----------------------------------------------------------------.
31 * | | F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| RESET|PSCR|
32 * |----------------------------------------------------------------|
33 * | | | | | | | | | | | |BL-|BL+|BL | INS|
34 * |----------------------------------------------------------------|
35 * | | | | | | | | | | PP|PLA| PN| |HOME|
36 * |----------------------------------------------------------------|
37 * | | | | | | | | | V-| MV| V+| | | END|
38 * |----------------------------------------------------------------|
39 * | | | | | | | | | | |
40 * `----------------------------------------------------------------'
41 */
42[_FL] = KEYMAP_ISO(
43 _______, KC_F1,KC_F2,KC_F3,KC_F4,KC_F5,KC_F6,KC_F7,KC_F8,KC_F9,KC_F10,KC_F11,KC_F12,RESET,KC_PSCR, \
44 _______,_______,_______,_______,_______,_______,_______,_______,_______,_______,_______, BL_DEC,BL_INC, BL_TOGG,KC_INS, \
45 _______,_______,_______,_______,_______,_______,_______,_______,_______,KC_MPRV,KC_MPLY,KC_MNXT,_______,_______,KC_HOME, \
46 _______,_______,_______,_______,_______,_______,_______,_______,KC_VOLD,KC_MUTE,KC_VOLU,_______,_______,KC_END, \
47 _______,_______,_______, _______, _______,_______,_______,_______,_______, _______),
48}; \ No newline at end of file
diff --git a/keyboards/tada68/keymaps/isoish/readme.md b/keyboards/tada68/keymaps/isoish/readme.md
new file mode 100644
index 000000000..48ad783c8
--- /dev/null
+++ b/keyboards/tada68/keymaps/isoish/readme.md
@@ -0,0 +1,3 @@
1# ISO(ish) - Basic ISO format layout for TADA68 #
2
3Basic layout with some edits to work better with ISO (nordic) layout. Due to the wide left shift it isn't quite Nordic iso though. \ No newline at end of file
diff --git a/keyboards/tada68/keymaps/isoish/rules.mk b/keyboards/tada68/keymaps/isoish/rules.mk
new file mode 100644
index 000000000..4deca710b
--- /dev/null
+++ b/keyboards/tada68/keymaps/isoish/rules.mk
@@ -0,0 +1,21 @@
1# Build Options
2# change to "no" to disable the options, or define them in the Makefile in
3# the appropriate keymap folder that will get included automatically
4#
5BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000)
6MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
7EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
8CONSOLE_ENABLE = no # Console for debug(+400)
9COMMAND_ENABLE = yes # Commands for debug and configuration
10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
12MIDI_ENABLE = no # MIDI controls
13AUDIO_ENABLE = no # Audio output on port C6
14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
16RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
17SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
18
19ifndef QUANTUM_DIR
20 include ../../../../Makefile
21endif \ No newline at end of file
diff --git a/keyboards/tada68/tada68.h b/keyboards/tada68/tada68.h
index d0e027a6f..bb41865ba 100755
--- a/keyboards/tada68/tada68.h
+++ b/keyboards/tada68/tada68.h
@@ -37,7 +37,38 @@
37 {k40, k41, k42, XXX, XXX, k45, XXX, XXX, XXX, k49, k4a, k4b, k4c, k4d, k4e} \ 37 {k40, k41, k42, XXX, XXX, k45, XXX, XXX, XXX, k49, k4a, k4b, k4c, k4d, k4e} \
38} 38}
39 39
40/* TADA68 ISO layout
41 * ,----------------------------------------------------------------.
42 * | 00 |01| 02| 03| 04| 05| 06| 07| 08| 09| 0a| 0b| 0c| 0d | 0e |
43 * |----------------------------------------------------------------|
44 * | 10 | 11| 12| 13| 14| 15| 16| 17| 18| 19| 1a| 1b| 1c| 1d | 1e |
45 * |----------------------------------------------------------------|
46 * | 20 | 21| 22| 23| 24| 25| 26| 27| 28| 29| 2a| 2b| 2c| 2d| 2e |
47 * |----------------------------------------------------------------|
48 * | 30 | 32| 33| 34| 35| 36| 37| 38| 39| 3a| 3b| 3c| 3d| 3e |
49 * |----------------------------------------------------------------|
50 * | 40 | 41 | 42 | 45 | 49| 4a| 4b| 4c| 4d| 4e |
51 * `----------------------------------------------------------------'
52 */
53// The first section contains all of the arguments
54// The second converts the arguments into a two-dimensional array
55
56#define KEYMAP_ISO( \
57 k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e, \
58 k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e, \
59 k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e, \
60 k30, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e, \
61 k40, k41, k42, k45, k49, k4a, k4b, k4c, k4d, k4e \
62) \
63{ \
64 {k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, k0d, k0e}, \
65 {k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, k1d, k1e}, \
66 {k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, k2d, k2e}, \
67 {k30, XXX, k32, k33, k34, k35, k36, k37, k38, k39, k3a, k3b, k3c, k3d, k3e}, \
68 {k40, k41, k42, XXX, XXX, k45, XXX, XXX, XXX, k49, k4a, k4b, k4c, k4d, k4e} \
69}
70
40void matrix_init_user(void); 71void matrix_init_user(void);
41void matrix_scan_user(void); 72void matrix_scan_user(void);
42 73
43#endif 74#endif \ No newline at end of file