summaryrefslogtreecommitdiff
path: root/keyboards/orthocode/orthocode.c
diff options
context:
space:
mode:
authorJordan Blackbourn <blackbournj@gmail.com>2022-01-11 13:44:18 +1300
committerGitHub <noreply@github.com>2022-01-10 16:44:18 -0800
commitcd12b54650b4ac9023e697f036911c81b2eed693 (patch)
treefcc398acc0be6fe671903e790388ad4ea598dfcd /keyboards/orthocode/orthocode.c
parent372c9102e23b1c669e27262f905d76299f52e628 (diff)
[Keyboard] Added via support for orthocode (#15777)
Diffstat (limited to 'keyboards/orthocode/orthocode.c')
-rw-r--r--keyboards/orthocode/orthocode.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/keyboards/orthocode/orthocode.c b/keyboards/orthocode/orthocode.c
index 23596d3e5b..8ddd32c396 100644
--- a/keyboards/orthocode/orthocode.c
+++ b/keyboards/orthocode/orthocode.c
@@ -15,6 +15,36 @@
*/
#include "orthocode.h"
+bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
+ if (!process_record_user(keycode, record)) {
+ return false;
+ }
+
+ static bool shiftspace_mods = false;
+ switch (keycode) {
+ case SHIFTSPACE:
+ if (record->event.pressed) {
+ if(get_mods() & MOD_BIT(KC_RSFT)) {
+ register_code(KC_MINS);
+ shiftspace_mods = true;
+ }
+ else {
+ register_code(KC_SPC);
+ }
+ } else {
+ if (shiftspace_mods) {
+ unregister_code(KC_MINS);
+ shiftspace_mods = false;
+ } else {
+ unregister_code(KC_SPC);
+ }
+ }
+ return false;
+ break;
+ }
+ return true;
+}
+
#ifdef ENCODER_ENABLE
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }