-
-
Notifications
You must be signed in to change notification settings - Fork 39.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Ryan <fauxpark@gmail.com>
- Loading branch information
Showing
3 changed files
with
28 additions
and
39 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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{ | ||
"keyboard_name": "Sofle", | ||
"width": 16.5, | ||
"height": 5.25, | ||
"layouts": { | ||
"LAYOUT": { | ||
"layout": [ | ||
|
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
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 |
---|---|---|
@@ -1,21 +1,28 @@ | ||
# MCU name | ||
MCU = atmega32u4 | ||
|
||
|
||
# Bootloader selection | ||
BOOTLOADER = atmel-dfu | ||
|
||
# Build Options | ||
# Comment out to disable the options. | ||
|
||
SPLIT_KEYBOARD = yes # Split keyboard | ||
BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | ||
CONSOLE_ENABLE = no # Console for debug | ||
EXTRAKEY_ENABLE = yes # Audio control and System control | ||
RGBLIGHT_ENABLE = yes # RGB lighting | ||
ENCODER_ENABLE = yes # Encoders | ||
MOUSEKEY_ENABLE = no # Mouse keys | ||
NKRO_ENABLE = yes # Enables NKRO | ||
LTO_ENABLE = yes # Enables Link Time Optimization | ||
|
||
OLED_ENABLE = yes # Enables OLED Display | ||
OLED_DRIVER = SSD1306 # Specify OLED driver | ||
WPM_ENABLE = no # WPM counter | ||
# change yes to no to disable | ||
# | ||
BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite | ||
MOUSEKEY_ENABLE = no # Mouse keys | ||
EXTRAKEY_ENABLE = yes # Audio control and System control | ||
CONSOLE_ENABLE = no # Console for debug | ||
COMMAND_ENABLE = no # Commands for debug and configuration | ||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | ||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | ||
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | ||
NKRO_ENABLE = yes # USB Nkey Rollover | ||
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | ||
BLUETOOTH_ENABLE = no # Enable Bluetooth | ||
AUDIO_ENABLE = no # Audio output | ||
ENCODER_ENABLE = yes | ||
LTO_ENABLE = yes | ||
SPLIT_KEYBOARD = yes | ||
OLED_ENABLE = yes | ||
OLED_DRIVER = SSD1306 | ||
WPM_ENABLE = no |