aboutsummaryrefslogtreecommitdiff
path: root/keyboards/just60
diff options
context:
space:
mode:
authorJames Young <18669334+noroadsleft@users.noreply.github.com>2020-02-14 00:42:57 -0800
committerGitHub <noreply@github.com>2020-02-14 00:42:57 -0800
commit4eed0331bf0876db0d557f86c7d4ef599ff0e6c4 (patch)
tree2a1b81af60ed275a1f7e3ef27fc042addd6ae6b1 /keyboards/just60
parent66177aa5e04bd4fbde758907412ce2c902430367 (diff)
downloadqmk_firmware-4eed0331bf0876db0d557f86c7d4ef599ff0e6c4.tar.gz
qmk_firmware-4eed0331bf0876db0d557f86c7d4ef599ff0e6c4.zip
Just60 Configurator layout support and thinxer keymap (#7761)
* Just60 Configurator layout support * adds thinxer keymap, which is the default keymap with QMK DFU bootloader
Diffstat (limited to 'keyboards/just60')
-rw-r--r--keyboards/just60/info.json77
-rw-r--r--keyboards/just60/keymaps/thinxer/keymap.c50
-rw-r--r--keyboards/just60/keymaps/thinxer/readme.md19
-rw-r--r--keyboards/just60/keymaps/thinxer/rules.mk1
4 files changed, 147 insertions, 0 deletions
diff --git a/keyboards/just60/info.json b/keyboards/just60/info.json
new file mode 100644
index 000000000..6b42a2d58
--- /dev/null
+++ b/keyboards/just60/info.json
@@ -0,0 +1,77 @@
1{
2 "keyboard_name": "Just60",
3 "url": "",
4 "maintainer": "thinxer",
5 "width": 15,
6 "height": 5,
7 "layouts": {
8 "LAYOUT": {
9 "layout": [
10 {"label":"Esc/`", "x":0, "y":0},
11 {"label":"1", "x":1, "y":0},
12 {"label":"2", "x":2, "y":0},
13 {"label":"3", "x":3, "y":0},
14 {"label":"4", "x":4, "y":0},
15 {"label":"5", "x":5, "y":0},
16 {"label":"6", "x":6, "y":0},
17 {"label":"7", "x":7, "y":0},
18 {"label":"8", "x":8, "y":0},
19 {"label":"9", "x":9, "y":0},
20 {"label":"0", "x":10, "y":0},
21 {"label":"-", "x":11, "y":0},
22 {"label":"=", "x":12, "y":0},
23 {"label":"Backspace", "x":13, "y":0, "w":2},
24 {"label":"Tab", "x":0, "y":1, "w":1.5},
25 {"label":"Q", "x":1.5, "y":1},
26 {"label":"W", "x":2.5, "y":1},
27 {"label":"E", "x":3.5, "y":1},
28 {"label":"R", "x":4.5, "y":1},
29 {"label":"T", "x":5.5, "y":1},
30 {"label":"Y", "x":6.5, "y":1},
31 {"label":"U", "x":7.5, "y":1},
32 {"label":"I", "x":8.5, "y":1},
33 {"label":"O", "x":9.5, "y":1},
34 {"label":"P", "x":10.5, "y":1},
35 {"label":"[", "x":11.5, "y":1},
36 {"label":"]", "x":12.5, "y":1},
37 {"label":"\\", "x":13.5, "y":1, "w":1.5},
38 {"label":"Fn", "x":0, "y":2, "w":1.75},
39 {"label":"A", "x":1.75, "y":2},
40 {"label":"S", "x":2.75, "y":2},
41 {"label":"D", "x":3.75, "y":2},
42 {"label":"F", "x":4.75, "y":2},
43 {"label":"G", "x":5.75, "y":2},
44 {"label":"H", "x":6.75, "y":2},
45 {"label":"J", "x":7.75, "y":2},
46 {"label":"K", "x":8.75, "y":2},
47 {"label":"L", "x":9.75, "y":2},
48 {"label":";", "x":10.75, "y":2},
49 {"label":"'", "x":11.75, "y":2},
50 {"label":"Enter", "x":12.75, "y":2, "w":2.25},
51 {"label":"Shift", "x":0, "y":3, "w":2.25},
52 {"label":"Z", "x":2.25, "y":3},
53 {"label":"X", "x":3.25, "y":3},
54 {"label":"C", "x":4.25, "y":3},
55 {"label":"V", "x":5.25, "y":3},
56 {"label":"B", "x":6.25, "y":3},
57 {"label":"N", "x":7.25, "y":3},
58 {"label":"M", "x":8.25, "y":3},
59 {"label":",", "x":9.25, "y":3},
60 {"label":".", "x":10.25, "y":3},
61 {"label":"/", "x":11.25, "y":3},
62 {"label":"Shift", "x":12.25, "y":3, "w":2.75},
63 {"label":"Ctrl", "x":0, "y":4, "w":1.75},
64 {"label":"Alt", "x":1.75, "y":4, "w":1.25},
65 {"label":"GUI", "x":3, "y":4, "w":1.25},
66 {"label":"Fn/Space", "x":4.25, "y":4, "w":1.25},
67 {"label":"Space", "x":5.5, "y":4, "w":3},
68 {"label":"GUI", "x":8.5, "y":4, "w":1.25},
69 {"label":"Alt", "x":9.75, "y":4, "w":1.25},
70 {"label":"Left", "x":11, "y":4},
71 {"label":"Down", "x":12, "y":4},
72 {"label":"Up", "x":13, "y":4},
73 {"label":"Right", "x":14, "y":4}
74 ]
75 }
76 }
77}
diff --git a/keyboards/just60/keymaps/thinxer/keymap.c b/keyboards/just60/keymaps/thinxer/keymap.c
new file mode 100644
index 000000000..da034e0e4
--- /dev/null
+++ b/keyboards/just60/keymaps/thinxer/keymap.c
@@ -0,0 +1,50 @@
1/* Copyright 2019 Jianfei Wang
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#include QMK_KEYBOARD_H
17
18// Defines names for use in layer keycodes and the keymap
19enum layer_names {
20 _BASE,
21 _FN,
22 _COMMAND
23};
24
25#define FN_SPC LT(_FN, KC_SPC)
26
27const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 /* Base */
29 [_BASE] = LAYOUT(
30 KC_GESC, 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,
31 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,
32 MO(_FN), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
33 KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
34 KC_LCTL, KC_LALT, KC_LGUI, FN_SPC, KC_SPC, KC_RGUI, KC_RALT, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
35 ),
36 [_FN] = LAYOUT(
37 KC_GRV, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______,
38 KC_CAPS, KC_HOME, KC_UP, KC_END, KC_PGUP, _______, _______, _______, _______, _______, _______, KC_INS, KC_DEL, _______,
39 _______, KC_LEFT, KC_DOWN, KC_RGHT, KC_PGDN, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, _______, _______, MO(_COMMAND),
40 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
41 _______, _______, _______, _______, _______, _______, _______, KC_HOME, KC_PGDN, KC_PGUP, KC_END
42 ),
43 [_COMMAND] = LAYOUT(
44 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, EEP_RST, RESET,
45 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
46 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
47 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
48 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
49 )
50};
diff --git a/keyboards/just60/keymaps/thinxer/readme.md b/keyboards/just60/keymaps/thinxer/readme.md
new file mode 100644
index 000000000..9cd12c192
--- /dev/null
+++ b/keyboards/just60/keymaps/thinxer/readme.md
@@ -0,0 +1,19 @@
1# thinxer keymap for Just60
2
3This is a duplicate of the default keymap, but for a Just60 with the QMK DFU bootloader.
4
5This layout is an ANSI layout with a Minila spacebar row.
6
7```
8 +-------------------------------------------------------------------------+
9 | ESC | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | - | = | BACKSP |
10 +-------------------------------------------------------------------------+
11 | TAB | Q | W | E | R | T | Y | U | I | O | P | [ | ] | \ |
12 +-------------------------------------------------------------------------+
13 | FN | A | S | D | F | G | H | J | K | L | ; | ' | RETURN |
14 +-------------------------------------------------------------------------+
15 | LSHIFT | Z | X | C | V | B | N | M | , | . | / | RSHIFT |
16 +-------------------------------------------------------------------------+
17 | LCMD | LALT | LGUI | FN | SPACE | RGUI | RALT | LEFT | DOWN | UP | RGHT |
18 +-------------------------------------------------------------------------+
19```
diff --git a/keyboards/just60/keymaps/thinxer/rules.mk b/keyboards/just60/keymaps/thinxer/rules.mk
new file mode 100644
index 000000000..0613ea866
--- /dev/null
+++ b/keyboards/just60/keymaps/thinxer/rules.mk
@@ -0,0 +1 @@
BOOTLOADER = qmk-dfu