diff options
Diffstat (limited to 'users/spidey3/unicode.c')
| -rw-r--r-- | users/spidey3/unicode.c | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/users/spidey3/unicode.c b/users/spidey3/unicode.c index 41ceef837..39a990674 100644 --- a/users/spidey3/unicode.c +++ b/users/spidey3/unicode.c | |||
| @@ -2,18 +2,24 @@ | |||
| 2 | #include "unicode.h" | 2 | #include "unicode.h" |
| 3 | 3 | ||
| 4 | const uint32_t PROGMEM unicode_map[] = { | 4 | const uint32_t PROGMEM unicode_map[] = { |
| 5 | [BUL1] = 0x2022, // • | 5 | [BUL1] = 0x2022, // • |
| 6 | [BUL2] = 0x25E6, // ◦ | 6 | [BUL2] = 0x25E6, // ◦ |
| 7 | [LARR] = 0x2190, // ← | 7 | [LARR] = 0x2190, // ← |
| 8 | [RARR] = 0x2192, // → | 8 | [RARR] = 0x2192, // → |
| 9 | [ENDASH] = 0x2013, // – | 9 | [ENDASH] = 0x2013, // – |
| 10 | [EMDASH] = 0x2014, // — | 10 | [EMDASH] = 0x2014, // — |
| 11 | [SPIDER] = 0x1F577, // 🕷 | ||
| 12 | [SAD] = 0x2639, // ☹ | ||
| 13 | [MEH] = 0x1F611, // 😑 | ||
| 14 | [HAPPY] = 0x1F600, // 😀 | ||
| 15 | [ANGRY] = 0x1F620, // 😠 | ||
| 16 | [THUMBUP] = 0x1F44D, // 👍 | ||
| 17 | [THUMBDN] = 0x1F44E, // 👎 | ||
| 18 | [LOL] = 0x1F602, // 😂 | ||
| 19 | [SURPRISE] = 0x1F62E, // 😮 | ||
| 11 | }; | 20 | }; |
| 12 | 21 | ||
| 13 | void eeconfig_init_user_unicode(void) | 22 | void eeconfig_init_user_unicode(void) { |
| 14 | { | 23 | // Default to Linux style |
| 15 | // Default to Linux style | 24 | set_unicode_input_mode(UC_LNX); |
| 16 | set_unicode_input_mode(UC_LNX); | ||
| 17 | } | 25 | } |
| 18 | |||
| 19 | |||
