The Send String API is part of QMK's macro system. It allows for sequences of keystrokes to be sent automatically.
The full ASCII character set is supported, along with all of the keycodes in the Basic Keycode range (as these are the only ones that will actually be sent to the host).
?> Unicode characters are not supported with this API -- see the Unicode feature instead.
Send String is enabled by default, so there is usually no need for any special setup. However, if it is disabled, add the following to your rules.mk
:
SEND_STRING_ENABLE = yes
Add the following to your config.h
:
Define | Default | Description |
---|---|---|
SENDSTRING_BELL |
Not defined | If the Audio feature is enabled, the \a character (ASCII BEL ) will beep the speaker. |
BELL_SOUND |
TERMINAL_SOUND |
The song to play when the \a character is encountered. By default, this is an eighth note of C5. |
The Send String functions accept C string literals, but specific keycodes can be injected with the below macros. All of the keycodes in the Basic Keycode range are supported (as these are the only ones that will actually be sent to the host), but with an X_
prefix instead of KC_
.
Macro | Description |
---|---|
SS_TAP(x) |
Send a keydown, then keyup, event for the given Send String keycode |
SS_DOWN(x) |
Send a keydown event for the given Send String keycode |
SS_UP(x) |
Send a keyup event for the given Send String keycode |
SS_DELAY(ms) |
Wait for ms milliseconds |
The following characters are also mapped to their respective keycodes for convenience:
Character | Hex | ASCII | Keycode |
---|---|---|---|
\b |
\x08 |
BS |
KC_BACKSPACE |
\e |
\x09 |
ESC |
KC_ESCAPE |
\n |
\x0A |
LF |
KC_ENTER |
\t |
\x1B |
TAB |
KC_TAB |
\x7F |
DEL |
KC_DELETE |
By default, Send String assumes your OS keyboard layout is set to US ANSI. If you are using a different keyboard layout, you can override the lookup tables used to convert ASCII characters to keystrokes.
A simple custom keycode which types out "Hello, world!" and the Enter key when pressed.
Add the following to your keymap.c
:
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case SS_HELLO:
if (record->event.pressed) {
SEND_STRING("Hello, world!\n");
}
return false;
}
return true;
}
This example types out opening and closing curly braces, then taps the left arrow key to move the cursor between the two.
SEND_STRING("{}" SS_TAP(X_LEFT));
This example types Ctrl+A, then Ctrl+C, without releasing Ctrl.
SEND_STRING(SS_LCTL("ac"));
Type out a string of ASCII characters.
This function simply calls send_string_with_delay(string, 0)
.
const char *string
The string to type out.
Type out a string of ASCII characters, with a delay between each character.
const char *string
The string to type out.uint8_t interval
The amount of time, in milliseconds, to wait before typing the next character.
Type out a PROGMEM string of ASCII characters.
On ARM devices, this function is simply an alias for send_string_with_delay(string, 0)
.
const char *string
The string to type out.
void send_string_with_delay_P(const char *string, uint8_t interval)
:id=api-send-string-with-delay-p
Type out a PROGMEM string of ASCII characters, with a delay between each character.
On ARM devices, this function is simply an alias for send_string_with_delay(string, interval)
.
const char *string
The string to type out.uint8_t interval
The amount of time, in milliseconds, to wait before typing the next character.
Type out an ASCII character.
char ascii_code
The character to type.
Type out an eight digit (unsigned 32-bit) hexadecimal value.
The format is [0-9a-f]{8}
, eg. 00000000
through ffffffff
.
uint32_t number
The value to type, from 0 to 4,294,967,295.
Type out a four digit (unsigned 16-bit) hexadecimal value.
The format is [0-9a-f]{4}
, eg. 0000
through ffff
.
uint16_t number
The value to type, from 0 to 65,535.
Type out a two digit (8-bit) hexadecimal value.
The format is [0-9a-f]{2}
, eg. 00
through ff
.
uint8_t number
The value to type, from 0 to 255.
Type out a single hexadecimal digit.
The format is [0-9a-f]{1}
, eg. 0
through f
.
uint8_t number
The value to type, from 0 to 15.
Type a pseudorandom character from the set A-Z
, a-z
, 0-9
, +
and /
.
Shortcut macro for send_string_with_delay_P(PSTR(string), 0)
.
On ARM devices, this define evaluates to send_string_with_delay(string, 0)
.
Shortcut macro for send_string_with_delay_P(PSTR(string), interval)
.
On ARM devices, this define evaluates to send_string_with_delay(string, interval)
.