2022-08-06 22:29:06 +02:00
|
|
|
|
// Copyright 2022 Joshua Diamond josh@windowoffire.com (@spidey3)
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
2020-03-23 05:11:41 +01:00
|
|
|
|
|
2022-09-12 22:32:52 +02:00
|
|
|
|
#include "spidey3_unicode.h"
|
2020-03-23 05:11:41 +01:00
|
|
|
|
|
|
|
|
|
const uint32_t PROGMEM unicode_map[] = {
|
2020-06-05 11:01:47 +02:00
|
|
|
|
[BUL1] = 0x2022, // •
|
|
|
|
|
[BUL2] = 0x25E6, // ◦
|
|
|
|
|
[LARR] = 0x2190, // ←
|
|
|
|
|
[RARR] = 0x2192, // →
|
|
|
|
|
[ENDASH] = 0x2013, // –
|
|
|
|
|
[EMDASH] = 0x2014, // —
|
|
|
|
|
[SPIDER] = 0x1F577, // 🕷
|
|
|
|
|
[SAD] = 0x2639, // ☹
|
|
|
|
|
[MEH] = 0x1F611, // 😑
|
|
|
|
|
[HAPPY] = 0x1F600, // 😀
|
|
|
|
|
[ANGRY] = 0x1F620, // 😠
|
|
|
|
|
[THUMBUP] = 0x1F44D, // 👍
|
|
|
|
|
[THUMBDN] = 0x1F44E, // 👎
|
|
|
|
|
[LOL] = 0x1F602, // 😂
|
|
|
|
|
[SURPRISE] = 0x1F62E, // 😮
|
2020-03-23 05:11:41 +01:00
|
|
|
|
};
|
|
|
|
|
|
2020-06-05 11:01:47 +02:00
|
|
|
|
void eeconfig_init_user_unicode(void) {
|
|
|
|
|
// Default to Linux style
|
2022-10-31 22:15:12 +01:00
|
|
|
|
set_unicode_input_mode(UNICODE_MODE_LINUX);
|
2020-03-23 05:11:41 +01:00
|
|
|
|
}
|