Skip to content

Commit

Permalink
function query kc; add some other features.
Browse files Browse the repository at this point in the history
  • Loading branch information
plodah committed Dec 9, 2024
1 parent e443362 commit baa3132
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions users/plodah/functions/textfns.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@
strcat (str, " MOUSEKEY");
#endif // MOUSEKEY_ENABLE

#ifdef OLED_ENABLE
strcat (str, " OLED");
#endif // OLED_ENABLE

#ifdef OS_DETECTION_ENABLE
strcat (str, " OS_DETECTION");
#endif // OS_DETECTION_ENABLE
Expand All @@ -84,6 +88,10 @@
strcat (str, " TAP_DANCE");
#endif // TAP_DANCE_ENABLE

#ifdef TRI_LAYER_ENABLE
strcat (str, " TRI_LAYER");
#endif // TRI_LAYER_ENABLE

#ifdef VIA_ENABLE
strcat (str, " VIA");
#endif // VIA_ENABLE
Expand Down Expand Up @@ -150,6 +158,10 @@
send_string_with_delay (" MOUSEKEY", TAP_CODE_DELAY );
#endif // MOUSEKEY_ENABLE

#ifdef OLED_ENABLE
send_string_with_delay (" OLED", TAP_CODE_DELAY );
#endif // OLED_ENABLE

#ifdef OS_DETECTION_ENABLE
send_string_with_delay (" OS_DETECTION", TAP_CODE_DELAY );
#endif // OS_DETECTION_ENABLE
Expand All @@ -170,6 +182,10 @@
send_string_with_delay (" TAP_DANCE", TAP_CODE_DELAY );
#endif // TAP_DANCE_ENABLE

#ifdef TRI_LAYER_ENABLE
send_string_with_delay (" TRI_LAYER", TAP_CODE_DELAY );
#endif // TRI_LAYER_ENABLE

#ifdef VIA_ENABLE
send_string_with_delay (" VIA", TAP_CODE_DELAY );
#endif // VIA_ENABLE
Expand Down

0 comments on commit baa3132

Please sign in to comment.