forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Keyboard] Add Sodium keyboards (qmk#17078)
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: nacly <nacly@pop-os.localdomain>
- Loading branch information
Showing
21 changed files
with
897 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* Copyright 2022 NaCly | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "config_common.h" | ||
|
||
/* USB Device descriptor parameter */ | ||
#define VENDOR_ID 0xBEEF | ||
#define PRODUCT_ID 0xFED0 | ||
#define DEVICE_VER 0x0001 | ||
#define MANUFACTURER nacly | ||
#define PRODUCT sodium42 | ||
|
||
/* key matrix size */ | ||
// Rows are doubled-up | ||
#define MATRIX_ROWS 8 | ||
#define MATRIX_COLS 6 | ||
|
||
// wiring of each half | ||
#define MATRIX_ROW_PINS { F7, D4, D7, B4 } | ||
#define MATRIX_COL_PINS { D2, C6, E6, B5, B2, B3 } | ||
|
||
#define DIODE_DIRECTION COL2ROW | ||
|
||
#define SPLIT_HAND_PIN F4 | ||
|
||
/* Set 0 if debouncing isn't needed */ | ||
#define DEBOUNCE 5 | ||
|
||
/* serial.c configuration for split keyboard */ | ||
#define SOFT_SERIAL_PIN D3 | ||
|
||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
#define LOCKING_SUPPORT_ENABLE | ||
/* Locking resynchronize hack */ | ||
#define LOCKING_RESYNC_ENABLE | ||
|
||
/* ws2812 RGB LED */ | ||
//#define RGB_DI_PIN B1 | ||
/* | ||
#define RGBLED_NUM 12 // Number of LEDs | ||
#define RGBLED_SPLIT { 6, 6 } | ||
*/ | ||
/* | ||
* Feature disable options | ||
* These options are also useful to firmware size reduction. | ||
*/ | ||
|
||
/* disable debug print */ | ||
// #define NO_DEBUG | ||
|
||
/* disable print */ | ||
// #define NO_PRINT | ||
|
||
/* disable action features */ | ||
//#define NO_ACTION_LAYER | ||
//#define NO_ACTION_TAPPING | ||
//#define NO_ACTION_ONESHOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"keyboard_name": "sodium42", | ||
"url": "https://nacly.net", | ||
"maintainer": "nacly", | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
{"x": 0, "y": 0.75}, | ||
{"x": 1, "y": 0.5}, | ||
{"x": 2, "y": 0}, | ||
{"x": 3, "y": 0.25}, | ||
{"x": 4, "y": 1}, | ||
|
||
{"x": 8.75, "y": 1}, | ||
{"x": 9.75, "y": 0.5}, | ||
{"x": 10.75, "y": 0}, | ||
{"x": 11.75, "y": 0.5}, | ||
{"x": 12.75, "y": 0.75}, | ||
|
||
{"x": 0, "y": 1.75}, | ||
{"x": 1, "y": 1.5}, | ||
{"x": 2, "y": 1}, | ||
{"x": 3, "y": 1.25}, | ||
{"x": 4, "y": 2}, | ||
|
||
{"x": 8.75, "y": 2}, | ||
{"x": 9.75, "y": 1.5}, | ||
{"x": 10.75, "y": 1}, | ||
{"x": 11.75, "y": 1.5}, | ||
{"x": 12.75, "y": 1.75}, | ||
|
||
{"x": 0, "y": 2.75}, | ||
{"x": 1, "y": 2.5}, | ||
{"x": 2, "y": 2}, | ||
{"x": 3, "y": 2.25}, | ||
{"x": 4, "y": 3}, | ||
|
||
{"x": 8.75, "y": 3}, | ||
{"x": 9.75, "y": 2.5}, | ||
{"x": 10.75, "y": 2}, | ||
{"x": 11.75, "y": 2.5}, | ||
{"x": 12.75, "y": 2.75}, | ||
|
||
{"x": 0, "y": 3.75}, | ||
{"x": 1, "y": 3.5}, | ||
{"x": 2, "y": 3}, | ||
{"x": 3, "y": 3.25}, | ||
{"x": 4, "y": 4}, | ||
{"x": 5, "y": 4.5}, | ||
|
||
{"x": 7.75, "y": 4.5}, | ||
{"x": 8.75, "y": 4}, | ||
{"x": 9.75, "y": 3.5}, | ||
{"x": 10.75, "y": 3}, | ||
{"x": 11.75, "y": 3.5}, | ||
{"x": 12.75, "y": 3.75} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* Copyright 2022 NaCly | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
#include QMK_KEYBOARD_H | ||
|
||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
[0] = LAYOUT( | ||
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, | ||
KC_A, KC_S, LT(3,KC_D), LT(1,KC_F), KC_G, KC_H, LT(2,KC_J), KC_K, KC_L, KC_SCLN, | ||
MT(MOD_LSFT,KC_Z), KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, MT(MOD_RSFT,KC_SLSH), | ||
KC_LCTL, KC_LALT, KC_LGUI, LT(2,KC_EQL), KC_BSPC, KC_DEL, KC_ENT, KC_SPC, KC_LBRC, KC_RBRC, KC_MINS, KC_ESC | ||
), | ||
//Holding F | ||
[1] = LAYOUT( | ||
KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, | ||
KC_NO, KC_NO, KC_NO, _______, KC_NO, KC_NO, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, | ||
MT(MOD_LSFT,KC_Z), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, MT(MOD_RSFT,KC_SLSH), | ||
KC_LGUI, KC_LALT, KC_NO, KC_NO, KC_NO, KC_NO, KC_HOME, KC_END, KC_NO, KC_NO, KC_NO, KC_NO | ||
), | ||
//Holding J | ||
[2] = LAYOUT( | ||
KC_MUTE, KC_VOLD, KC_VOLU, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_BSLS, | ||
KC_MPRV, KC_MPLY, KC_MNXT, KC_TAB, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_QUOT, | ||
MT(MOD_LSFT,KC_Z), KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, _______, KC_NO, KC_NO, MT(MOD_RSFT,KC_SLSH), | ||
KC_LGUI, KC_LALT, KC_NO, _______, KC_F14, KC_F15, KC_ENT, KC_SPC, KC_NO, KC_NO, KC_NO, KC_NO | ||
), | ||
//Holding d | ||
[3] = LAYOUT( | ||
KC_MUTE, KC_VOLD, KC_VOLU, KC_NO, KC_NO, KC_NO, KC_7, KC_8, KC_9, KC_MINS, | ||
KC_MPRV, KC_MPLY, KC_MNXT, KC_NO, KC_NO, KC_NO, KC_4, KC_5, KC_6, KC_QUOT, | ||
MT(MOD_LSFT,KC_Z), KC_NO, _______, KC_NO, KC_NO, KC_NO, KC_1, KC_2, KC_3, MT(MOD_RSFT,KC_SLSH), | ||
KC_LCTL, KC_LALT, KC_LGUI, LT(2,KC_EQL), KC_BSPC, KC_DEL, KC_ENT, KC_0, KC_NO, KC_NO, KC_DOT, KC_NO | ||
) | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# sodium keyboard | ||
|
||
## Your new favorite split columnar stagger | ||
|
||
* Keyboard Maintainer: [NaCly](https://github.com/Na-Cly) | ||
* Hardware Supported: sodium42 PCBs, Pro Micro | ||
* Hardware Availability: https://nacly.net | ||
|
||
Make example for this keyboard (after setting up your build environment): | ||
|
||
make nacly/sodium42:default | ||
|
||
## Bootloader | ||
|
||
Enter the bootloader in 2 ways: | ||
|
||
* **Physical reset button**: Press the reset button twice | ||
* **Keycode in layout**: Press the key mapped to `RESET` if it is available | ||
|
||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# MCU name | ||
MCU = atmega32u4 | ||
|
||
# Bootloader selection | ||
BOOTLOADER = caterina | ||
|
||
# Build Options | ||
# change yes to no to disable | ||
# | ||
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
MOUSEKEY_ENABLE = yes # Mouse keys | ||
EXTRAKEY_ENABLE = yes # Audio control and System control | ||
CONSOLE_ENABLE = no # Console for debug | ||
COMMAND_ENABLE = yes # Commands for debug and configuration | ||
NKRO_ENABLE = yes # Enable N-Key Rollover | ||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
AUDIO_ENABLE = no # Audio output | ||
|
||
SPLIT_KEYBOARD = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* Copyright 2022 NaCly | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
#include "sodium42.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* Copyright 2022 NaCly | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
#pragma once | ||
|
||
#include "quantum.h" | ||
|
||
#define LAYOUT(\ | ||
L00, L01, L02, L03, L04, R04, R03, R02, R01, R00, \ | ||
L10, L11, L12, L13, L14, R14, R13, R12, R11, R10, \ | ||
L20, L21, L22, L23, L24, R24, R23, R22, R21, R20, \ | ||
L30, L31, L32, L33, L34, L35, R35, R34, R33, R32, R31, R30 \ | ||
)\ | ||
{\ | ||
{ L00, L01, L02, L03, L04, KC_NO }, \ | ||
{ L10, L11, L12, L13, L14, KC_NO }, \ | ||
{ L20, L21, L22, L23, L24, KC_NO }, \ | ||
{ L30, L31, L32, L33, L34, L35 }, \ | ||
\ | ||
{ R00, R01, R02, R03, R04, KC_NO }, \ | ||
{ R10, R11, R12, R13, R14, KC_NO }, \ | ||
{ R20, R21, R22, R23, R24, KC_NO }, \ | ||
{ R30, R31, R32, R33, R34, R35 } \ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* Copyright 2022 NaCly | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "config_common.h" | ||
|
||
/* USB Device descriptor parameter */ | ||
#define VENDOR_ID 0xBEEF | ||
#define PRODUCT_ID 0xFED0 | ||
#define DEVICE_VER 0x0001 | ||
#define MANUFACTURER nacly | ||
#define PRODUCT sodium50 | ||
|
||
/* key matrix size */ | ||
// Rows are doubled-up | ||
#define MATRIX_ROWS 10 | ||
#define MATRIX_COLS 7 | ||
|
||
// wiring of each half | ||
#define MATRIX_ROW_PINS { F7, D4, D7, B4, B6 } | ||
#define MATRIX_COL_PINS { D2, C6, E6, B5, B2, B3, B1 } | ||
|
||
#define DIODE_DIRECTION COL2ROW | ||
|
||
#define SPLIT_HAND_PIN F4 | ||
|
||
/* Set 0 if debouncing isn't needed */ | ||
#define DEBOUNCE 5 | ||
|
||
/* serial.c configuration for split keyboard */ | ||
#define SOFT_SERIAL_PIN D3 | ||
|
||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
#define LOCKING_SUPPORT_ENABLE | ||
/* Locking resynchronize hack */ | ||
#define LOCKING_RESYNC_ENABLE | ||
|
||
/* ws2812 RGB LED */ | ||
//#define RGB_DI_PIN B1 | ||
/* | ||
#define RGBLED_NUM 12 // Number of LEDs | ||
#define RGBLED_SPLIT { 6, 6 } | ||
*/ | ||
/* | ||
* Feature disable options | ||
* These options are also useful to firmware size reduction. | ||
*/ | ||
|
||
/* disable debug print */ | ||
// #define NO_DEBUG | ||
|
||
/* disable print */ | ||
// #define NO_PRINT | ||
|
||
/* disable action features */ | ||
//#define NO_ACTION_LAYER | ||
//#define NO_ACTION_TAPPING | ||
//#define NO_ACTION_ONESHOT |
Oops, something went wrong.