diff options
-rw-r--r-- | keyboards/noxary/268/268.h | 85 | ||||
-rw-r--r-- | keyboards/noxary/268/info.json | 14 | ||||
-rw-r--r-- | keyboards/noxary/268/keymaps/ansi/keymap.c | 103 | ||||
-rw-r--r-- | keyboards/noxary/268/keymaps/ansi/readme.md | 5 | ||||
-rw-r--r-- | keyboards/noxary/268/keymaps/default/keymap.c | 8 | ||||
-rw-r--r-- | keyboards/noxary/268/keymaps/iso/keymap.c | 103 | ||||
-rw-r--r-- | keyboards/noxary/268/keymaps/iso/readme.md | 5 | ||||
-rw-r--r-- | keyboards/noxary/268/keymaps/sixtyeight/keymap.c | 10 | ||||
-rw-r--r-- | keyboards/noxary/README.md | 2 |
9 files changed, 311 insertions, 24 deletions
diff --git a/keyboards/noxary/268/268.h b/keyboards/noxary/268/268.h index ac2747c1d..28565318a 100644 --- a/keyboards/noxary/268/268.h +++ b/keyboards/noxary/268/268.h | |||
@@ -3,18 +3,81 @@ | |||
3 | 3 | ||
4 | #include "quantum.h" | 4 | #include "quantum.h" |
5 | 5 | ||
6 | #define LAYOUT( \ | 6 | // readability |
7 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015, \ | 7 | #define ____ KC_NO |
8 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K114, K115, \ | 8 | |
9 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K214, K215, \ | 9 | /* |
10 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, K315, \ | 10 | * LAYOUT OPTIONS |
11 | K400, K401, K402, K406, K410, K411, K412, K413, K414, K415 \ | 11 | * |
12 | * Not all of these options are supported by the plates offered during the | ||
13 | * October 2017 group buy, but all of them are supported by the PCB. | ||
14 | * | ||
15 | * See the pull request for more information: | ||
16 | * https://github.com/qmk/qmk_firmware/pull/3426 | ||
17 | * | ||
18 | * | ||
19 | * Backspace | ||
20 | * - Split Backspace = K013 and K014 | ||
21 | * - 2u Backspace = K014, delete K013 | ||
22 | * | ||
23 | * Enter | ||
24 | * - ANSI Enter = K214, delete K212 (KC_NUHS) | ||
25 | * - ISO Enter = K214, delete K114 (ANSI Backslash) | ||
26 | * | ||
27 | * Left Shift | ||
28 | * - ANSI 2.25u: K300, delete K301 (KC_NUBS) | ||
29 | * - ISO 1.25u: K300, K301 is KC_NUBS | ||
30 | * | ||
31 | * Right Shift: | ||
32 | * - Full 2.75u = K313, delete K312 and K314 | ||
33 | * - Split 1.75u + 1u = K312 and K314, delete K313 | ||
34 | * | ||
35 | * Right Ctrl | ||
36 | * - K412 in the default keymap, but not supported with the plates offered | ||
37 | * during the October 2017 group buy. | ||
38 | * | ||
39 | */ | ||
40 | |||
41 | #define LAYOUT_all( \ | ||
42 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015, \ | ||
43 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K114, K115, \ | ||
44 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K214, K215, \ | ||
45 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, K315, \ | ||
46 | K400, K401, K402, K406, K410, K411, K412, K413, K414, K415 \ | ||
47 | ) { \ | ||
48 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015 }, \ | ||
49 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, ____, K114, K115 }, \ | ||
50 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, ____, K214, K215 }, \ | ||
51 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, K315 }, \ | ||
52 | { K400, K401, K402, ____, ____, ____, K406, ____, ____, ____, K410, K411, K412, K413, K414, K415 } \ | ||
53 | } | ||
54 | |||
55 | #define LAYOUT_iso( \ | ||
56 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K014, K015, \ | ||
57 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K115, \ | ||
58 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, K214, K215, \ | ||
59 | K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K314, K315, \ | ||
60 | K400, K401, K402, K406, K410, K411, K413, K414, K415 \ | ||
61 | ) { \ | ||
62 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, ____, K014, K015 }, \ | ||
63 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, ____, ____, K115 }, \ | ||
64 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, ____, K214, K215 }, \ | ||
65 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, ____, K314, K315 }, \ | ||
66 | { K400, K401, K402, ____, ____, ____, K406, ____, ____, ____, K410, K411, ____, K413, K414, K415 } \ | ||
67 | } | ||
68 | |||
69 | #define LAYOUT_ansi( \ | ||
70 | K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K014, K015, \ | ||
71 | K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, K114, K115, \ | ||
72 | K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K214, K215, \ | ||
73 | K300, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K314, K315, \ | ||
74 | K400, K401, K402, K406, K410, K411, K413, K414, K415 \ | ||
12 | ) { \ | 75 | ) { \ |
13 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, K013, K014, K015 }, \ | 76 | { K000, K001, K002, K003, K004, K005, K006, K007, K008, K009, K010, K011, K012, ____, K014, K015 }, \ |
14 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, KC_NO, K114, K115 }, \ | 77 | { K100, K101, K102, K103, K104, K105, K106, K107, K108, K109, K110, K111, K112, ____, K114, K115 }, \ |
15 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, K212, KC_NO, K214, K215 }, \ | 78 | { K200, K201, K202, K203, K204, K205, K206, K207, K208, K209, K210, K211, ____, ____, K214, K215 }, \ |
16 | { K300, K301, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, K313, K314, K315 }, \ | 79 | { K300, ____, K302, K303, K304, K305, K306, K307, K308, K309, K310, K311, K312, ____, K314, K315 }, \ |
17 | { K400, K401, K402, KC_NO, KC_NO, KC_NO, K406, KC_NO, KC_NO, KC_NO, K410, K411, K412, K413, K414, K415 } \ | 80 | { K400, K401, K402, ____, ____, ____, K406, ____, ____, ____, K410, K411, ____, K413, K414, K415 } \ |
18 | } | 81 | } |
19 | 82 | ||
20 | #endif | 83 | #endif |
diff --git a/keyboards/noxary/268/info.json b/keyboards/noxary/268/info.json index 55a0ec471..9e9cade62 100644 --- a/keyboards/noxary/268/info.json +++ b/keyboards/noxary/268/info.json | |||
@@ -2,12 +2,20 @@ | |||
2 | "keyboard_name": "Noxary 268", | 2 | "keyboard_name": "Noxary 268", |
3 | "url": "https://www.instagram.com/noxaryco/", | 3 | "url": "https://www.instagram.com/noxaryco/", |
4 | "maintainer": "QMK Community", | 4 | "maintainer": "QMK Community", |
5 | "bootloader": "DFU", | ||
6 | "width": 16, | 5 | "width": 16, |
7 | "height": 5, | 6 | "height": 5, |
8 | "layouts": { | 7 | "layouts": { |
9 | "LAYOUT": { | 8 | "LAYOUT_all": { |
10 | "layout": [{"label":"~", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"\\", "x":13, "y":0}, {"x":14, "y":0}, {"x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"x":14, "y":3}, {"x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"Win", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Win", "x":11.25, "y":4, "w":1.25}, {"x":13, "y":4}, {"x":14, "y":4}, {"x":15, "y":4}] | 9 | "key_count": 72, |
10 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"1", "x":1, "y":0}, {"label":"2", "x":2, "y":0}, {"label":"3", "x":3, "y":0}, {"label":"4", "x":4, "y":0}, {"label":"5", "x":5, "y":0}, {"label":"6", "x":6, "y":0}, {"label":"7", "x":7, "y":0}, {"label":"8", "x":8, "y":0}, {"label":"9", "x":9, "y":0}, {"label":"0", "x":10, "y":0}, {"label":"- _", "x":11, "y":0}, {"label":"= +", "x":12, "y":0}, {"label":"Back Space", "x":13, "y":0}, {"label":"Back Space", "x":14, "y":0}, {"label":"` ~", "x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"[ {", "x":11.5, "y":1}, {"label":"] }", "x":12.5, "y":1}, {"label":"\\ |", "x":13.5, "y":1, "w":1.5}, {"label":"Delete", "x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":"; :", "x":10.75, "y":2}, {"label":"' \"", "x":11.75, "y":2}, {"label":"# ~", "x":12.75, "y":2}, {"label":"Enter", "x":13.75, "y":2, "w":1.25}, {"label":"Page Up", "x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"label":"\\ |", "x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":", <", "x":9.25, "y":3}, {"label":". >", "x":10.25, "y":3}, {"label":"/ ?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3}, {"label":"Shift", "x":13.25, "y":3, "w":0.75}, {"label":"Up", "x":14, "y":3}, {"label":"Page Down", "x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"GUI", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4}, {"label":"Fn", "x":11, "y":4}, {"label":"Ctrl", "x":12, "y":4}, {"label":"Left", "x":13, "y":4}, {"label":"Down", "x":14, "y":4}, {"label":"Right", "x":15, "y":4}] | ||
11 | }, | ||
12 | "LAYOUT_iso": { | ||
13 | "key_count": 68, | ||
14 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"\"", "x":2, "y":0}, {"label":"£", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"label":"~", "x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"Delete", "x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"@", "x":11.75, "y":2}, {"label":"~", "x":12.75, "y":2}, {"label":"Enter", "x":13.75, "y":1, "w":1.25, "h":2}, {"label":"PgUp", "x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":1.25}, {"label":"|", "x":1.25, "y":3}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"label":"\u2191", "x":14, "y":3}, {"label":"PgDn", "x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"GUI", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Fn", "x":11.25, "y":4, "w":1.25}, {"label":"\u2190", "x":13, "y":4}, {"label":"\u2193", "x":14, "y":4}, {"label":"\u2192", "x":15, "y":4}] | ||
15 | }, | ||
16 | "LAYOUT_ansi": { | ||
17 | "key_count": 67, | ||
18 | "layout": [{"label":"Esc", "x":0, "y":0}, {"label":"!", "x":1, "y":0}, {"label":"@", "x":2, "y":0}, {"label":"#", "x":3, "y":0}, {"label":"$", "x":4, "y":0}, {"label":"%", "x":5, "y":0}, {"label":"^", "x":6, "y":0}, {"label":"&", "x":7, "y":0}, {"label":"*", "x":8, "y":0}, {"label":"(", "x":9, "y":0}, {"label":")", "x":10, "y":0}, {"label":"_", "x":11, "y":0}, {"label":"+", "x":12, "y":0}, {"label":"Backspace", "x":13, "y":0, "w":2}, {"label":"~", "x":15, "y":0}, {"label":"Tab", "x":0, "y":1, "w":1.5}, {"label":"Q", "x":1.5, "y":1}, {"label":"W", "x":2.5, "y":1}, {"label":"E", "x":3.5, "y":1}, {"label":"R", "x":4.5, "y":1}, {"label":"T", "x":5.5, "y":1}, {"label":"Y", "x":6.5, "y":1}, {"label":"U", "x":7.5, "y":1}, {"label":"I", "x":8.5, "y":1}, {"label":"O", "x":9.5, "y":1}, {"label":"P", "x":10.5, "y":1}, {"label":"{", "x":11.5, "y":1}, {"label":"}", "x":12.5, "y":1}, {"label":"|", "x":13.5, "y":1, "w":1.5}, {"label":"Delete", "x":15, "y":1}, {"label":"Caps Lock", "x":0, "y":2, "w":1.75}, {"label":"A", "x":1.75, "y":2}, {"label":"S", "x":2.75, "y":2}, {"label":"D", "x":3.75, "y":2}, {"label":"F", "x":4.75, "y":2}, {"label":"G", "x":5.75, "y":2}, {"label":"H", "x":6.75, "y":2}, {"label":"J", "x":7.75, "y":2}, {"label":"K", "x":8.75, "y":2}, {"label":"L", "x":9.75, "y":2}, {"label":":", "x":10.75, "y":2}, {"label":"\"", "x":11.75, "y":2}, {"label":"Enter", "x":12.75, "y":2, "w":2.25}, {"label":"PgUp", "x":15, "y":2}, {"label":"Shift", "x":0, "y":3, "w":2.25}, {"label":"Z", "x":2.25, "y":3}, {"label":"X", "x":3.25, "y":3}, {"label":"C", "x":4.25, "y":3}, {"label":"V", "x":5.25, "y":3}, {"label":"B", "x":6.25, "y":3}, {"label":"N", "x":7.25, "y":3}, {"label":"M", "x":8.25, "y":3}, {"label":"<", "x":9.25, "y":3}, {"label":">", "x":10.25, "y":3}, {"label":"?", "x":11.25, "y":3}, {"label":"Shift", "x":12.25, "y":3, "w":1.75}, {"label":"\u2191", "x":14, "y":3}, {"label":"PgDn", "x":15, "y":3}, {"label":"Ctrl", "x":0, "y":4, "w":1.25}, {"label":"GUI", "x":1.25, "y":4, "w":1.25}, {"label":"Alt", "x":2.5, "y":4, "w":1.25}, {"x":3.75, "y":4, "w":6.25}, {"label":"Alt", "x":10, "y":4, "w":1.25}, {"label":"Fn", "x":11.25, "y":4, "w":1.25}, {"label":"\u2190", "x":13, "y":4}, {"label":"\u2193", "x":14, "y":4}, {"label":"\u2192", "x":15, "y":4}] | ||
11 | } | 19 | } |
12 | } | 20 | } |
13 | } | 21 | } |
diff --git a/keyboards/noxary/268/keymaps/ansi/keymap.c b/keyboards/noxary/268/keymaps/ansi/keymap.c new file mode 100644 index 000000000..20dddd884 --- /dev/null +++ b/keyboards/noxary/268/keymaps/ansi/keymap.c | |||
@@ -0,0 +1,103 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | |||
3 | // Helpful defines | ||
4 | #define _______ KC_TRNS | ||
5 | |||
6 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
7 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
8 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
9 | // entirely and just use numbers. | ||
10 | #define _BL 0 | ||
11 | #define _FL1 1 | ||
12 | |||
13 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
14 | /* _BL: Base Layer (Default) | ||
15 | * ,----------------------------------------------------------------. | ||
16 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| BSpc| Grv| | ||
17 | * |----------------------------------------------------------------| | ||
18 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]| \ | Del| | ||
19 | * |----------------------------------------------------------------| | ||
20 | * |Caps | A| S| D| F| G| H| J| K| L| ;| '| Enter|PgUp| | ||
21 | * |----------------------------------------------------------------| | ||
22 | * |Shift | Z| X| C| V| B| N| M| ,| .| /|Shift | Up|PgDn| | ||
23 | * |----------------------------------------------------------------| | ||
24 | * |Ctrl|Win |Alt | Space | Alt| Fn|▓|Lef|Dow|Rght| | ||
25 | * `----------------------------------------------------------------' | ||
26 | */ | ||
27 | [_BL] = LAYOUT_ansi( | ||
28 | 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, | ||
29 | 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, | ||
30 | 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_ENT, KC_PGUP, | ||
31 | KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
32 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL1), KC_LEFT, KC_DOWN, KC_RGHT | ||
33 | ), | ||
34 | |||
35 | /* _FL1: Function Layer 1 | ||
36 | * ,----------------------------------------------------------------. | ||
37 | * | `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| PScr| | | ||
38 | * |----------------------------------------------------------------| | ||
39 | * | | | | |RST| | | | | | | | | | Ins| | ||
40 | * |----------------------------------------------------------------| | ||
41 | * | | | | | | | | | | | | | |Home| | ||
42 | * |----------------------------------------------------------------| | ||
43 | * | | | | | | | | |Bl-|Bl+| |Mute |Vol+| End| | ||
44 | * |----------------------------------------------------------------| | ||
45 | * | | | | BL_Toggle | | |▓| |Vol-| | | ||
46 | * `----------------------------------------------------------------' | ||
47 | */ | ||
48 | [_FL1] = LAYOUT_ansi( | ||
49 | 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, KC_PSCR, _______, | ||
50 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, | ||
51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, | ||
52 | _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, _______, KC_MUTE, KC_VOLU, KC_END, | ||
53 | _______, _______, _______, BL_TOGG, _______, _______, _______, KC_VOLD, _______ | ||
54 | ), | ||
55 | |||
56 | }; | ||
57 | |||
58 | |||
59 | void matrix_init_user(void) { | ||
60 | } | ||
61 | |||
62 | void matrix_scan_user(void) { | ||
63 | } | ||
64 | |||
65 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
66 | return true; | ||
67 | } | ||
68 | |||
69 | void led_set_user(uint8_t usb_led) { | ||
70 | |||
71 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { | ||
72 | |||
73 | } else { | ||
74 | |||
75 | } | ||
76 | |||
77 | if (usb_led & (1 << USB_LED_CAPS_LOCK)) { | ||
78 | DDRB |= (1 << 6); | ||
79 | PORTB |= (1 << 6); | ||
80 | } else { | ||
81 | DDRB &= ~(1 << 6); | ||
82 | PORTB &= ~(1 << 6); | ||
83 | } | ||
84 | |||
85 | if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { | ||
86 | |||
87 | } else { | ||
88 | |||
89 | } | ||
90 | |||
91 | if (usb_led & (1 << USB_LED_COMPOSE)) { | ||
92 | |||
93 | } else { | ||
94 | |||
95 | } | ||
96 | |||
97 | if (usb_led & (1 << USB_LED_KANA)) { | ||
98 | |||
99 | } else { | ||
100 | |||
101 | } | ||
102 | |||
103 | } | ||
diff --git a/keyboards/noxary/268/keymaps/ansi/readme.md b/keyboards/noxary/268/keymaps/ansi/readme.md new file mode 100644 index 000000000..cac16deb4 --- /dev/null +++ b/keyboards/noxary/268/keymaps/ansi/readme.md | |||
@@ -0,0 +1,5 @@ | |||
1 | # ansi | ||
2 | |||
3 | A sample keymap for the Noxary 268 in ANSI. | ||
4 | |||
5 | [Key Layout](http://www.keyboard-layout-editor.com/##@@=Esc&=!%0A1&=/@%0A2&=#%0A3&=$%0A4&=%25%0A5&=%5E%0A6&=/&%0A7&=*%0A8&=(%0A9&=)%0A0&=/_%0A-&=+%0A/=&_w:2;&=Backspace&=~%0A%60;&@_w:1.5;&=Tab&=Q&=W&=E&=R&=T&=Y&=U&=I&=O&=P&=%7B%0A%5B&=%7D%0A%5D&_w:1.5;&=%7C%0A%5C&=Delete;&@_w:1.75;&=Caps%20Lock&=A&=S&=D&=F&=G&=H&=J&=K&=L&=/:%0A/;&=%22%0A%27&_w:2.25;&=Enter&=PgUp;&@_w:2.25;&=Shift&=Z&=X&=C&=V&=B&=N&=M&=%3C%0A,&=%3E%0A.&=?%0A//&_w:1.75;&=Shift&=%E2%86%91&=PgDn;&@_w:1.25;&=Ctrl&_w:1.25;&=GUI&_w:1.25;&=Alt&_a:7&w:6.25;&=&_a:4&w:1.25;&=Alt&_w:1.25;&=Fn&_x:0.5;&=%E2%86%90&=%E2%86%93&=%E2%86%92) | ||
diff --git a/keyboards/noxary/268/keymaps/default/keymap.c b/keyboards/noxary/268/keymaps/default/keymap.c index bebe04375..0a26d6313 100644 --- a/keyboards/noxary/268/keymaps/default/keymap.c +++ b/keyboards/noxary/268/keymaps/default/keymap.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include "268.h" | 1 | #include QMK_KEYBOARD_H |
2 | 2 | ||
3 | // Helpful defines | 3 | // Helpful defines |
4 | #define _______ KC_TRNS | 4 | #define _______ KC_TRNS |
@@ -25,7 +25,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
25 | * |Ctrl|Win |Alt | Space |Alt|Mo(1)|Ctrl|Lef|Dow|Rght| | 25 | * |Ctrl|Win |Alt | Space |Alt|Mo(1)|Ctrl|Lef|Dow|Rght| |
26 | * `----------------------------------------------------------------' | 26 | * `----------------------------------------------------------------' |
27 | */ | 27 | */ |
28 | [_BL] = LAYOUT( | 28 | [_BL] = LAYOUT_all( |
29 | 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_BSLS, KC_BSPC, KC_GRV, | 29 | 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_BSLS, KC_BSPC, KC_GRV, |
30 | 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, | 30 | 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, |
31 | 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_NUHS, KC_ENT, KC_PGUP, | 31 | 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_NUHS, KC_ENT, KC_PGUP, |
@@ -44,7 +44,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
44 | * | | | | BL_Toggle | | | | |Vol-| | | 44 | * | | | | BL_Toggle | | | | |Vol-| | |
45 | * `----------------------------------------------------------------' | 45 | * `----------------------------------------------------------------' |
46 | */ | 46 | */ |
47 | [_FL1] = LAYOUT( | 47 | [_FL1] = LAYOUT_all( |
48 | 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, _______, KC_PSCR, _______, | 48 | 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, _______, KC_PSCR, _______, |
49 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, | 49 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, |
50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, | 50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, |
@@ -63,7 +63,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
63 | * | | | | | | | | | | | | 63 | * | | | | | | | | | | | |
64 | * `----------------------------------------------------------------' | 64 | * `----------------------------------------------------------------' |
65 | */ | 65 | */ |
66 | [_FL2] = LAYOUT( | 66 | [_FL2] = LAYOUT_all( |
67 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 67 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
diff --git a/keyboards/noxary/268/keymaps/iso/keymap.c b/keyboards/noxary/268/keymaps/iso/keymap.c new file mode 100644 index 000000000..5d6987ce7 --- /dev/null +++ b/keyboards/noxary/268/keymaps/iso/keymap.c | |||
@@ -0,0 +1,103 @@ | |||
1 | #include QMK_KEYBOARD_H | ||
2 | |||
3 | // Helpful defines | ||
4 | #define _______ KC_TRNS | ||
5 | |||
6 | // Each layer gets a name for readability, which is then used in the keymap matrix below. | ||
7 | // The underscores don't mean anything - you can have a layer called STUFF or any other name. | ||
8 | // Layer names don't all need to be of the same length, obviously, and you can also skip them | ||
9 | // entirely and just use numbers. | ||
10 | #define _BL 0 | ||
11 | #define _FL1 1 | ||
12 | |||
13 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
14 | /* _BL: Base Layer (Default) | ||
15 | * ,----------------------------------------------------------------. | ||
16 | * |Esc | 1| 2| 3| 4| 5| 6| 7| 8| 9| 0| -| =| BSpc| Grv| | ||
17 | * |----------------------------------------------------------------| | ||
18 | * |Tab | Q| W| E| R| T| Y| U| I| O| P| [| ]|Enter| Del| | ||
19 | * |------------------------------------------------------. |----| | ||
20 | * |Caps | A| S| D| F| G| H| J| K| L| ;| '| #| |PgUp| | ||
21 | * |----------------------------------------------------------------| | ||
22 | * |Sft | \| Z| X| C| V| B| N| M| ,| .| /|Shift | Up|PgDn| | ||
23 | * |----------------------------------------------------------------| | ||
24 | * |Ctrl|Win |Alt | Space | Alt| Fn|▓|Lef|Dow|Rght| | ||
25 | * `----------------------------------------------------------------' | ||
26 | */ | ||
27 | [_BL] = LAYOUT_iso( | ||
28 | 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, | ||
29 | 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_DEL, | ||
30 | 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_NUHS, KC_ENT, KC_PGUP, | ||
31 | KC_LSFT, KC_NUBS, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, KC_UP, KC_PGDN, | ||
32 | KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL1), KC_LEFT, KC_DOWN, KC_RGHT | ||
33 | ), | ||
34 | |||
35 | /* _FL1: Function Layer 1 | ||
36 | * ,----------------------------------------------------------------. | ||
37 | * | `| F1| F2| F3| F4| F5| F6| F7| F8| F9|F10|F11|F12| PScr| | | ||
38 | * |----------------------------------------------------------------| | ||
39 | * | | | | |RST| | | | | | | | | | Ins| | ||
40 | * |------------------------------------------------------. |----| | ||
41 | * | | | | | | | | | | | | | | |Home| | ||
42 | * |----------------------------------------------------------------| | ||
43 | * | | | | | | | | | |Bl-|Bl+| |Mute |Vol+| End| | ||
44 | * |----------------------------------------------------------------| | ||
45 | * | | | | BL_Toggle | | |▓| |Vol-| | | ||
46 | * `----------------------------------------------------------------' | ||
47 | */ | ||
48 | [_FL1] = LAYOUT_iso( | ||
49 | 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, KC_PSCR, _______, | ||
50 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS, | ||
51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, | ||
52 | _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, _______, KC_MUTE, KC_VOLU, KC_END, | ||
53 | _______, _______, _______, BL_TOGG, _______, _______, _______, KC_VOLD, _______ | ||
54 | ), | ||
55 | |||
56 | }; | ||
57 | |||
58 | |||
59 | void matrix_init_user(void) { | ||
60 | } | ||
61 | |||
62 | void matrix_scan_user(void) { | ||
63 | } | ||
64 | |||
65 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||
66 | return true; | ||
67 | } | ||
68 | |||
69 | void led_set_user(uint8_t usb_led) { | ||
70 | |||
71 | if (usb_led & (1 << USB_LED_NUM_LOCK)) { | ||
72 | |||
73 | } else { | ||
74 | |||
75 | } | ||
76 | |||
77 | if (usb_led & (1 << USB_LED_CAPS_LOCK)) { | ||
78 | DDRB |= (1 << 6); | ||
79 | PORTB |= (1 << 6); | ||
80 | } else { | ||
81 | DDRB &= ~(1 << 6); | ||
82 | PORTB &= ~(1 << 6); | ||
83 | } | ||
84 | |||
85 | if (usb_led & (1 << USB_LED_SCROLL_LOCK)) { | ||
86 | |||
87 | } else { | ||
88 | |||
89 | } | ||
90 | |||
91 | if (usb_led & (1 << USB_LED_COMPOSE)) { | ||
92 | |||
93 | } else { | ||
94 | |||
95 | } | ||
96 | |||
97 | if (usb_led & (1 << USB_LED_KANA)) { | ||
98 | |||
99 | } else { | ||
100 | |||
101 | } | ||
102 | |||
103 | } | ||
diff --git a/keyboards/noxary/268/keymaps/iso/readme.md b/keyboards/noxary/268/keymaps/iso/readme.md new file mode 100644 index 000000000..8bc3124c5 --- /dev/null +++ b/keyboards/noxary/268/keymaps/iso/readme.md | |||
@@ -0,0 +1,5 @@ | |||
1 | # iso | ||
2 | |||
3 | A sample keymap for the Noxary 268 in ISO. | ||
4 | |||
5 | [Key Layout](http://www.keyboard-layout-editor.com/##@@=Esc&=!%0A1&=%22%0A2&=/£/;%0A3&=$%0A4&=%25%0A5&=%5E%0A6&=/&%0A7&=*%0A8&=(%0A9&=)%0A0&=/_%0A-&=+%0A/=&_w:2;&=Backspace&=~%0A%60;&@_w:1.5;&=Tab&=Q&=W&=E&=R&=T&=Y&=U&=I&=O&=P&=%7B%0A%5B&=%7D%0A%5D&_x:0.25&w:1.25&h:2&w2:1.5&h2:1&x2:-0.25;&=Enter&=Delete;&@_w:1.75;&=Caps%20Lock&=A&=S&=D&=F&=G&=H&=J&=K&=L&=/:%0A/;&=/@%0A%27&=~%0A#&_x:1.25;&=PgUp;&@_w:1.25;&=Shift&=%7C%0A%5C&=Z&=X&=C&=V&=B&=N&=M&=%3C%0A,&=%3E%0A.&=?%0A//&_w:1.75;&=Shift&=%E2%86%91&=PgDn;&@_w:1.25;&=Ctrl&_w:1.25;&=GUI&_w:1.25;&=Alt&_a:7&w:6.25;&=&_a:4&w:1.25;&=Alt&_w:1.25;&=Fn&_x:0.5;&=%E2%86%90&=%E2%86%93&=%E2%86%92) | ||
diff --git a/keyboards/noxary/268/keymaps/sixtyeight/keymap.c b/keyboards/noxary/268/keymaps/sixtyeight/keymap.c index c379f9271..34dd3a6fa 100644 --- a/keyboards/noxary/268/keymaps/sixtyeight/keymap.c +++ b/keyboards/noxary/268/keymaps/sixtyeight/keymap.c | |||
@@ -1,4 +1,4 @@ | |||
1 | #include "268.h" | 1 | #include QMK_KEYBOARD_H |
2 | 2 | ||
3 | // Helpful defines | 3 | // Helpful defines |
4 | #define _______ KC_TRNS | 4 | #define _______ KC_TRNS |
@@ -25,7 +25,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
25 | * |Ctrl|Win |Alt | Space |Win|Ctrl|Ctrl|Lef |Dow|Rght| | 25 | * |Ctrl|Win |Alt | Space |Win|Ctrl|Ctrl|Lef |Dow|Rght| |
26 | * `----------------------------------------------------------------' | 26 | * `----------------------------------------------------------------' |
27 | */ | 27 | */ |
28 | [_BL] = LAYOUT( | 28 | [_BL] = LAYOUT_all( |
29 | 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_BSLS, KC_GRV, KC_DEL, | 29 | 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_BSLS, KC_GRV, KC_DEL, |
30 | 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_BSPC, KC_PGUP, | 30 | 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_BSPC, KC_PGUP, |
31 | 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_NUHS, KC_ENT, KC_PGDN, | 31 | 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_NUHS, KC_ENT, KC_PGDN, |
@@ -44,8 +44,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
44 | * | | | | BL_Toggle | | | | |Vol-| | | 44 | * | | | | BL_Toggle | | | | |Vol-| | |
45 | * `----------------------------------------------------------------' | 45 | * `----------------------------------------------------------------' |
46 | */ | 46 | */ |
47 | [_FL1] = LAYOUT( | 47 | [_FL1] = LAYOUT_all( |
48 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, KC_PSCR, KC_INS, | 48 | _______, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, _______, KC_PSCR, KC_INS, |
49 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, | 49 | _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, |
50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_END, | 50 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_END, |
51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, _______, KC_MUTE, KC_MUTE, KC_VOLU, _______, | 51 | _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, _______, KC_MUTE, KC_MUTE, KC_VOLU, _______, |
@@ -63,7 +63,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
63 | * | | | | | | | | | | | | 63 | * | | | | | | | | | | | |
64 | * `----------------------------------------------------------------' | 64 | * `----------------------------------------------------------------' |
65 | */ | 65 | */ |
66 | [_FL2] = LAYOUT( | 66 | [_FL2] = LAYOUT_all( |
67 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 67 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 68 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, | 69 | _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, |
diff --git a/keyboards/noxary/README.md b/keyboards/noxary/README.md index c06dece02..81e525506 100644 --- a/keyboards/noxary/README.md +++ b/keyboards/noxary/README.md | |||
@@ -4,4 +4,4 @@ All files related to firmware of Noxary Keyboards designed by Rozakiin. | |||
4 | 4 | ||
5 | ### Keyboards | 5 | ### Keyboards |
6 | 6 | ||
7 | 1. 268. Original repo [here](https://github.com/Rozakiin/Noxary_Firmware). Imported by kind [permission](https://github.com/Rozakiin/Noxary_Firmware/issues/1) of @rozakiin | 7 | - [268](./268/): Original repo [here](https://github.com/Rozakiin/Noxary_Firmware). Imported by kind [permission](https://github.com/Rozakiin/Noxary_Firmware/issues/1) of @rozakiin |