aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRozakiin <6567067+Rozakiin@users.noreply.github.com>2020-06-23 07:24:33 +0100
committerGitHub <noreply@github.com>2020-06-22 23:24:33 -0700
commita8bb5840ad3e093b82e5c08fd594ab35c554a876 (patch)
treeb075e5fecce7292e591e74b531840da57cda80e9
parentd353fcb99cfe345cde29cb7dc94cceaab82c610b (diff)
downloadqmk_firmware-a8bb5840ad3e093b82e5c08fd594ab35c554a876.tar.gz
qmk_firmware-a8bb5840ad3e093b82e5c08fd594ab35c554a876.zip
Update VIA support for Noxary 268.2 (#9451)
* Update readme.md description * Enable bootmagic lite * Update USB descriptor * Add modern led code * Update default keymap for readability * Update default keymap readme with layout image * Add VIA keymap * Update keyboards/noxary/268_2/keymaps/default/readme.md Flip order of layout image and title * Update keyboards/noxary/268_2/keymaps/via/readme.md Flip order of layout image and title * Update keyboards/noxary/268_2/readme.md bullet point keyboard maintainer * Update keyboards/noxary/268_2/readme.md Change list style
-rw-r--r--keyboards/noxary/268_2/268_2.c19
-rw-r--r--keyboards/noxary/268_2/config.h34
-rw-r--r--keyboards/noxary/268_2/keymaps/default/keymap.c68
-rw-r--r--keyboards/noxary/268_2/keymaps/default/readme.md4
-rw-r--r--keyboards/noxary/268_2/keymaps/via/keymap.c110
-rw-r--r--keyboards/noxary/268_2/keymaps/via/readme.md3
-rw-r--r--keyboards/noxary/268_2/keymaps/via/rules.mk5
-rw-r--r--keyboards/noxary/268_2/readme.md8
-rw-r--r--keyboards/noxary/268_2/rules.mk2
9 files changed, 202 insertions, 51 deletions
diff --git a/keyboards/noxary/268_2/268_2.c b/keyboards/noxary/268_2/268_2.c
index 5af56a386..9a2b4432d 100644
--- a/keyboards/noxary/268_2/268_2.c
+++ b/keyboards/noxary/268_2/268_2.c
@@ -15,13 +15,16 @@
15 */ 15 */
16#include "268_2.h" 16#include "268_2.h"
17 17
18void led_set_kb(uint8_t usb_led) { 18void matrix_init_kb(void) {
19 if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) { 19 // put your keyboard start-up code here
20 setPinOutput(B0); 20 // runs once when the firmware starts up
21 writePinHigh(B0); 21 setPinOutput(B0);
22 } else { 22 matrix_init_user();
23 setPinInput(B0); 23}
24 }
25 24
26 led_set_user(usb_led); 25bool led_update_kb(led_t led_state) {
26 if(led_update_user(led_state)) {
27 writePin(B0, led_state.caps_lock);
28 }
29 return true;
27} 30}
diff --git a/keyboards/noxary/268_2/config.h b/keyboards/noxary/268_2/config.h
index fbfb97f02..1d6681595 100644
--- a/keyboards/noxary/268_2/config.h
+++ b/keyboards/noxary/268_2/config.h
@@ -20,12 +20,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
20#include "config_common.h" 20#include "config_common.h"
21 21
22/* USB Device descriptor parameter */ 22/* USB Device descriptor parameter */
23#define VENDOR_ID 0x4E58 23#define VENDOR_ID 0x4E58 //"NX"
24#define PRODUCT_ID 0x0044 24#define PRODUCT_ID 0x010C //268
25#define DEVICE_VER 0x0002 25#define DEVICE_VER 0x0002
26#define MANUFACTURER Noxary 26#define MANUFACTURER Noxary
27#define PRODUCT 268.2 27#define PRODUCT 268.2
28#define DESCRIPTION QMK keyboard firmware for 268.2 28#define DESCRIPTION A fully customizable 65% keyboard.
29 29
30/* key matrix size */ 30/* key matrix size */
31#define MATRIX_ROWS 5 31#define MATRIX_ROWS 5
@@ -57,34 +57,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
57//define BACKLIGHT_BREATHING 57//define BACKLIGHT_BREATHING
58#define BACKLIGHT_LEVELS 3 58#define BACKLIGHT_LEVELS 3
59 59
60// #define RGB_DI_PIN E2
61// #ifdef RGB_DI_PIN
62// #define RGBLED_NUM 16
63// #define RGBLIGHT_HUE_STEP 8
64// #define RGBLIGHT_SAT_STEP 8
65// #define RGBLIGHT_VAL_STEP 8
66// #define RGBLIGHT_LIMIT_VAL 255 /* The maximum brightness level */
67// #define RGBLIGHT_SLEEP /* If defined, the RGB lighting will be switched off when the host goes to sleep */
68// /*== all animations enable ==*/
69// #define RGBLIGHT_ANIMATIONS
70// /*== or choose animations ==*/
71// #define RGBLIGHT_EFFECT_BREATHING
72// #define RGBLIGHT_EFFECT_RAINBOW_MOOD
73// #define RGBLIGHT_EFFECT_RAINBOW_SWIRL
74// #define RGBLIGHT_EFFECT_SNAKE
75// #define RGBLIGHT_EFFECT_KNIGHT
76// #define RGBLIGHT_EFFECT_CHRISTMAS
77// #define RGBLIGHT_EFFECT_STATIC_GRADIENT
78// #define RGBLIGHT_EFFECT_RGB_TEST
79// #define RGBLIGHT_EFFECT_ALTERNATING
80// /*== customize breathing effect ==*/
81// /*==== (DEFAULT) use fixed table instead of exp() and sin() ====*/
82// #define RGBLIGHT_BREATHE_TABLE_SIZE 256 // 256(default) or 128 or 64
83// /*==== use exp() and sin() ====*/
84// #define RGBLIGHT_EFFECT_BREATHE_CENTER 1.85 // 1 to 2.7
85// #define RGBLIGHT_EFFECT_BREATHE_MAX 255 // 0 to 255
86// #endif
87
88/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ 60/* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
89#define DEBOUNCE 5 61#define DEBOUNCE 5
90 62
diff --git a/keyboards/noxary/268_2/keymaps/default/keymap.c b/keyboards/noxary/268_2/keymaps/default/keymap.c
index 01d5613ca..90e392deb 100644
--- a/keyboards/noxary/268_2/keymaps/default/keymap.c
+++ b/keyboards/noxary/268_2/keymaps/default/keymap.c
@@ -1,3 +1,18 @@
1/* Copyright 2020 Rozakiin
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 */
1#include QMK_KEYBOARD_H 16#include QMK_KEYBOARD_H
2 17
3// Each layer gets a name for readability, which is then used in the keymap matrix below. 18// Each layer gets a name for readability, which is then used in the keymap matrix below.
@@ -6,7 +21,9 @@
6// entirely and just use numbers. 21// entirely and just use numbers.
7enum layer_names { 22enum layer_names {
8 _BL, 23 _BL,
9 _FL 24 _FL1,
25 _FL2,
26 _FL3
10}; 27};
11 28
12const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { 29const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
@@ -28,10 +45,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
28 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, 45 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,
29 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, 46 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,
30 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, 47 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,
31 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL), KC_LEFT, KC_DOWN, KC_RGHT 48 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL1), KC_LEFT, KC_DOWN, KC_RGHT
32 ), 49 ),
33 50 /* Function Layer 1
34 /* Function Layer
35 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐ 51 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
36 * │ ` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ PScr │ │ 52 * │ ` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ PScr │ │
37 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤ 53 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
@@ -44,11 +60,51 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
44 * │ │ │ │ BL Toggle │ │ │ │ │Vl-│ │ 60 * │ │ │ │ BL Toggle │ │ │ │ │Vl-│ │
45 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘ 61 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
46 */ 62 */
47 [_FL] = LAYOUT_65_ansi_blocker( 63 [_FL1] = LAYOUT_65_ansi_blocker(
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, _______, 64 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, 65 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS,
50 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME, 66 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME,
51 _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, KC_MUTE, KC_VOLU, KC_END, 67 _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, KC_MUTE, KC_VOLU, KC_END,
52 _______, _______, _______, BL_TOGG, _______, _______, _______, KC_VOLD, _______ 68 _______, _______, _______, BL_TOGG, _______, _______, _______, KC_VOLD, _______
53 ) 69 ),
70 /* Function Layer 2
71 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
72 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
73 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
74 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
75 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
76 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
77 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
78 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
79 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
80 * │ │ │ │ │ │ │ │ │ │ │
81 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
82 */
83 [_FL2] = LAYOUT_65_ansi_blocker(
84 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
85 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
86 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
87 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
88 _______, _______, _______, _______, _______, _______, _______, _______, _______
89 ),
90 /* Function Layer 3
91 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
92 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
93 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
94 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
95 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
96 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
97 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
98 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
99 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
100 * │ │ │ │ │ │ │ │ │ │ │
101 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
102 */
103 [_FL3] = LAYOUT_65_ansi_blocker(
104 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
105 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
106 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
107 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
108 _______, _______, _______, _______, _______, _______, _______, _______, _______
109 ),
54}; 110};
diff --git a/keyboards/noxary/268_2/keymaps/default/readme.md b/keyboards/noxary/268_2/keymaps/default/readme.md
index c4c832cc6..2dfcc984e 100644
--- a/keyboards/noxary/268_2/keymaps/default/readme.md
+++ b/keyboards/noxary/268_2/keymaps/default/readme.md
@@ -1 +1,3 @@
1# The default keymap for 268_2 1# The default keymap for 268.2
2
3![Noxary 268.2 Layout Image](https://i.imgur.com/oIQiqcy.png)
diff --git a/keyboards/noxary/268_2/keymaps/via/keymap.c b/keyboards/noxary/268_2/keymaps/via/keymap.c
new file mode 100644
index 000000000..c4f044e4f
--- /dev/null
+++ b/keyboards/noxary/268_2/keymaps/via/keymap.c
@@ -0,0 +1,110 @@
1/* Copyright 2020 Rozakiin
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// Each layer gets a name for readability, which is then used in the keymap matrix below.
19// The underscores don't mean anything - you can have a layer called STUFF or any other name.
20// Layer names don't all need to be of the same length, obviously, and you can also skip them
21// entirely and just use numbers.
22enum layer_names {
23 _BL,
24 _FL1,
25 _FL2,
26 _FL3
27};
28
29const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
30 /* Base Layer
31 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
32 * │Esc│ 1 │ 2 │ 3 │ 4 │ 5 │ 6 │ 7 │ 8 │ 9 │ 0 │ - │ = │ Bspc │ ` │
33 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
34 * │ Tab │ Q │ W │ E │ R │ T │ Y │ U │ I │ O │ P │ [ │ ] │ \ │Del│
35 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
36 * │ Caps │ A │ S │ D │ F │ G │ H │ J │ K │ L │ ; │ ' │ Enter │PgU│
37 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
38 * │ Shift │ Z │ X │ C │ V │ B │ N │ M │ , │ . │ / │Shift │ ↑ │PgD│
39 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
40 * │Ctrl│Win │Alt │ Space │Alt │ Fn │ │ ← │ ↓ │ → │
41 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
42 */
43 [_BL] = LAYOUT_65_ansi_blocker(
44 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,
45 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,
46 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,
47 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,
48 KC_LCTL, KC_LGUI, KC_LALT, KC_SPC, KC_RALT, MO(_FL1), KC_LEFT, KC_DOWN, KC_RGHT
49 ),
50 /* Function Layer 1
51 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
52 * │ ` │F1 │F2 │F3 │F4 │F5 │F6 │F7 │F8 │F9 │F10│F11│F12│ PScr │ │
53 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
54 * │ │ │ │ │RST│ │ │ │ │ │ │ │ │ │Ins│
55 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
56 * │ │ │ │ │ │ │ │ │ │ │ │ │ │Hom│
57 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
58 * │ │ │ │ │ │ │ │ │ │Bl-│Bl+│ Mute │Vl+│End│
59 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
60 * │ │ │ │ BL Toggle │ │ │ │ │Vl-│ │
61 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
62 */
63 [_FL1] = LAYOUT_65_ansi_blocker(
64 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, _______,
65 _______, _______, _______, _______, RESET, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_INS,
66 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_HOME,
67 _______, _______, _______, _______, _______, _______, _______, _______, _______, BL_DEC, BL_INC, KC_MUTE, KC_VOLU, KC_END,
68 _______, _______, _______, BL_TOGG, _______, _______, _______, KC_VOLD, _______
69 ),
70 /* Function Layer 2
71 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
72 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
73 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
74 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
75 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
76 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
77 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
78 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
79 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
80 * │ │ │ │ │ │ │ │ │ │ │
81 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
82 */
83 [_FL2] = LAYOUT_65_ansi_blocker(
84 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
85 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
86 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
87 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
88 _______, _______, _______, _______, _______, _______, _______, _______, _______
89 ),
90 /* Function Layer 3
91 * ┌───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───┬───────┬───┐
92 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
93 * ├───┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─────┼───┤
94 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
95 * ├─────┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴┬──┴─────┼───┤
96 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
97 * ├──────┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴─┬─┴────┬───┼───┤
98 * │ │ │ │ │ │ │ │ │ │ │ │ │ │ │
99 * ├────┬───┴┬──┴─┬─┴───┴───┴───┴───┴───┴──┬┴───┼───┴┬─┬───┼───┼───┤
100 * │ │ │ │ │ │ │ │ │ │ │
101 * └────┴────┴────┴────────────────────────┴────┴────┴─┴───┴───┴───┘
102 */
103 [_FL3] = LAYOUT_65_ansi_blocker(
104 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
105 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
106 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
107 _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
108 _______, _______, _______, _______, _______, _______, _______, _______, _______
109 ),
110};
diff --git a/keyboards/noxary/268_2/keymaps/via/readme.md b/keyboards/noxary/268_2/keymaps/via/readme.md
new file mode 100644
index 000000000..0918bfb97
--- /dev/null
+++ b/keyboards/noxary/268_2/keymaps/via/readme.md
@@ -0,0 +1,3 @@
1# The VIA keymap for 268.2
2
3![Noxary 268.2 Layout Image](https://i.imgur.com/oIQiqcy.png)
diff --git a/keyboards/noxary/268_2/keymaps/via/rules.mk b/keyboards/noxary/268_2/keymaps/via/rules.mk
new file mode 100644
index 000000000..1974f5d3f
--- /dev/null
+++ b/keyboards/noxary/268_2/keymaps/via/rules.mk
@@ -0,0 +1,5 @@
1VIA_ENABLE = yes
2MOUSEKEY_ENABLE = no
3CONSOLE_ENABLE = no # Console for debug
4COMMAND_ENABLE = no # Commands for debug and configuration
5LTO_ENABLE = yes \ No newline at end of file
diff --git a/keyboards/noxary/268_2/readme.md b/keyboards/noxary/268_2/readme.md
index 075a1d26c..5689594c0 100644
--- a/keyboards/noxary/268_2/readme.md
+++ b/keyboards/noxary/268_2/readme.md
@@ -1,12 +1,12 @@
1# Noxary 268.2 1# Noxary 268.2
2 2
3![268.2](https://www.keebtalk.com/uploads/db8059/original/2X/6/65b93c83cadd98bbf8e3b1d739621d54b682609a.jpg) 3![Noxary 268.2](https://www.keebtalk.com/uploads/db8059/original/2X/6/65b93c83cadd98bbf8e3b1d739621d54b682609a.jpg)
4 4
5A fully customizable 65% keyboard. 5A fully customizable 65% keyboard.
6 6
7Keyboard Maintainer: [Rozakiin](https://github.com/rozakiin) 7* Keyboard Maintainer: [Rozakiin](https://github.com/rozakiin)
8Hardware Supported: 268.2 PCB 8* Hardware Supported: Noxary 268.2 PCB
9Hardware Availability: [Noxary](https://shop.noxary.co/collections/268-2/products/noxary-268-2-polycarbonate) 9* Hardware Availability: [Noxary](https://shop.noxary.co/collections/268-2/products/noxary-268-2-polycarbonate)
10 10
11Make example for this keyboard (after setting up your build environment): 11Make example for this keyboard (after setting up your build environment):
12 12
diff --git a/keyboards/noxary/268_2/rules.mk b/keyboards/noxary/268_2/rules.mk
index 230ecc453..168d3a2c1 100644
--- a/keyboards/noxary/268_2/rules.mk
+++ b/keyboards/noxary/268_2/rules.mk
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu
14# Build Options 14# Build Options
15# change yes to no to disable 15# change yes to no to disable
16# 16#
17BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration 17BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
18MOUSEKEY_ENABLE = no # Mouse keys 18MOUSEKEY_ENABLE = no # Mouse keys
19EXTRAKEY_ENABLE = yes # Audio control and System control 19EXTRAKEY_ENABLE = yes # Audio control and System control
20CONSOLE_ENABLE = no # Console for debug 20CONSOLE_ENABLE = no # Console for debug