summaryrefslogtreecommitdiff
path: root/quantum/send_string.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-03-12 18:03:44 +1100
committerGitHub <noreply@github.com>2021-03-12 18:03:44 +1100
commit88dce243750d9e80948cd7262566182018d7bbdf (patch)
tree01fef7490b57303772b58c6cd0986c6d38b372f5 /quantum/send_string.h
parentea2a7c5ea4c4509ea7008a835eb9b98b0b1c05d6 (diff)
Remove hex_to_keycode and move tap_random_base64 to send_string.c (#12079)
Diffstat (limited to 'quantum/send_string.h')
-rw-r--r--quantum/send_string.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/quantum/send_string.h b/quantum/send_string.h
index 570522eb0e..b90e6f6890 100644
--- a/quantum/send_string.h
+++ b/quantum/send_string.h
@@ -23,10 +23,10 @@
#define SEND_STRING_DELAY(string, interval) send_string_with_delay_P(PSTR(string), interval)
// Look-Up Tables (LUTs) to convert ASCII character to keycode sequence.
-extern const uint8_t ascii_to_keycode_lut[128];
extern const uint8_t ascii_to_shift_lut[16];
extern const uint8_t ascii_to_altgr_lut[16];
extern const uint8_t ascii_to_dead_lut[16];
+extern const uint8_t ascii_to_keycode_lut[128];
// clang-format off
#define KCLUT_ENTRY(a, b, c, d, e, f, g, h) \
@@ -45,3 +45,10 @@ void send_string_with_delay(const char *str, uint8_t interval);
void send_string_P(const char *str);
void send_string_with_delay_P(const char *str, uint8_t interval);
void send_char(char ascii_code);
+
+void send_dword(uint32_t number);
+void send_word(uint16_t number);
+void send_byte(uint8_t number);
+void send_nibble(uint8_t number);
+
+void tap_random_base64(void);