forked from UltimateHackingKeyboard/firmware
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'common_trunk_upstream'
- Loading branch information
Showing
53 changed files
with
1,985 additions
and
534 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
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,6 @@ | ||
{ | ||
"dependencies": { | ||
"bootstrap": "^5.1.3", | ||
"vue": "^3.2.31" | ||
} | ||
} |
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,25 @@ | ||
pre { | ||
background-color: #eee; | ||
} | ||
|
||
img { | ||
max-width: 100%; | ||
padding: 10px 0; | ||
} | ||
|
||
.no-wrap { | ||
white-space: nowrap; | ||
} | ||
|
||
table.table td { | ||
vertical-align: middle; | ||
} | ||
|
||
table.table input[type="checkbox"] { | ||
width: 20px; | ||
height: 20px; | ||
} | ||
|
||
table.table input[type="range"] { | ||
margin-right: 10px; | ||
} |
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
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
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,22 @@ | ||
#include "layer.h" | ||
#include "lufa/HIDClassCommon.h" | ||
|
||
layer_config_t LayerConfig[LayerId_Count] = { | ||
{ .layerIsDefined = true, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
{ .layerIsDefined = true, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
{ .layerIsDefined = true, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
{ .layerIsDefined = true, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
|
||
// fn2 - fn5 | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = 0}, | ||
|
||
// Shift, Control, Alt, Super | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = HID_KEYBOARD_MODIFIER_LEFTSHIFT | HID_KEYBOARD_MODIFIER_RIGHTSHIFT }, | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = HID_KEYBOARD_MODIFIER_LEFTCTRL | HID_KEYBOARD_MODIFIER_RIGHTCTRL }, | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = HID_KEYBOARD_MODIFIER_LEFTALT | HID_KEYBOARD_MODIFIER_RIGHTALT }, | ||
{ .layerIsDefined = false, .exactModifierMatch = false, .modifierLayerMask = HID_KEYBOARD_MODIFIER_LEFTGUI | HID_KEYBOARD_MODIFIER_RIGHTGUI }, | ||
}; | ||
|
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
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
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
Oops, something went wrong.