Unicodemap keycodes rename (#21092)
This commit is contained in:
parent
45c9bc4e55
commit
a4ed6ad0f5
55 changed files with 358 additions and 360 deletions
|
@ -141,31 +141,31 @@ tap_dance_action_t tap_dance_actions[] = {
|
|||
|
||||
//#ifdef UNICODE_ENABLE
|
||||
// Unicode shortcuts
|
||||
#define IBANG X(0x203D)
|
||||
#define RAROW X(0x2192)
|
||||
#define LAROW X(0x2190)
|
||||
#define DEGREE X(0x00B0)
|
||||
#define OMEGA X(0x03A9)
|
||||
#define WOMEGA X(0x03C9)
|
||||
#define MICRO X(0x00B5)
|
||||
#define PLUMIN X(0x00B1)
|
||||
#define SUPA2 X(0x00B2)
|
||||
#define ROMAN1 X(0x2160)
|
||||
#define ROMAN2 X(0x2161)
|
||||
#define ROMAN3 X(0x2162)
|
||||
#define ROMAN4 X(0x2163)
|
||||
#define ROMAN5 X(0x2164)
|
||||
#define ROMAN6 X(0x2165)
|
||||
#define ROMAN7 X(0x2166)
|
||||
#define roman1 X(0x2170)
|
||||
#define roman2 X(0x2171)
|
||||
#define roman3 X(0x2172)
|
||||
#define roman4 X(0x2173)
|
||||
#define roman5 X(0x2174)
|
||||
#define roman6 X(0x2175)
|
||||
#define roman7 X(0x2176)
|
||||
#define IBANG UM(0x203D)
|
||||
#define RAROW UM(0x2192)
|
||||
#define LAROW UM(0x2190)
|
||||
#define DEGREE UM(0x00B0)
|
||||
#define OMEGA UM(0x03A9)
|
||||
#define WOMEGA UM(0x03C9)
|
||||
#define MICRO UM(0x00B5)
|
||||
#define PLUMIN UM(0x00B1)
|
||||
#define SUPA2 UM(0x00B2)
|
||||
#define ROMAN1 UM(0x2160)
|
||||
#define ROMAN2 UM(0x2161)
|
||||
#define ROMAN3 UM(0x2162)
|
||||
#define ROMAN4 UM(0x2163)
|
||||
#define ROMAN5 UM(0x2164)
|
||||
#define ROMAN6 UM(0x2165)
|
||||
#define ROMAN7 UM(0x2166)
|
||||
#define roman1 UM(0x2170)
|
||||
#define roman2 UM(0x2171)
|
||||
#define roman3 UM(0x2172)
|
||||
#define roman4 UM(0x2173)
|
||||
#define roman5 UM(0x2174)
|
||||
#define roman6 UM(0x2175)
|
||||
#define roman7 UM(0x2176)
|
||||
|
||||
#ifdef UNICODEMAP_ENABLE // For Unicode characters larger than 0x8000. Send with X(<unicode>)
|
||||
#ifdef UNICODEMAP_ENABLE
|
||||
enum Ext_Unicode{
|
||||
PENGUIN = 0,
|
||||
BOAR,
|
||||
|
@ -182,12 +182,12 @@ const uint32_t unicode_map[] PROGMEM = {
|
|||
[CHICK] = 0x1F425,
|
||||
[TUMBLER] = 0x1F943
|
||||
};
|
||||
#define PENGY X(PENGUIN)
|
||||
#define BOARY X(BOAR)
|
||||
#define MNKY X(MONKEY)
|
||||
#define DRGN X(DRAGON)
|
||||
#define DUCK X(CHICK)
|
||||
#define TMBL X(TUMBLER)
|
||||
#define PENGY UM(PENGUIN)
|
||||
#define BOARY UM(BOAR)
|
||||
#define MNKY UM(MONKEY)
|
||||
#define DRGN UM(DRAGON)
|
||||
#define DUCK UM(CHICK)
|
||||
#define TMBL UM(TUMBLER)
|
||||
#endif
|
||||
|
||||
//#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue