diff options
author | kuchosauronad0 <22005492+kuchosauronad0@users.noreply.github.com> | 2019-08-17 08:19:35 -0700 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-08-17 08:19:35 -0700 |
commit | 683605a9dc285c5e8f6328ec81a29505892287b7 (patch) | |
tree | 82254e30a4aa0c0774aec22a6c7f69a1045b83d0 /users/kuchosauronad0/unicode.c | |
parent | c178bbf2e50424ee54fbd3a43609089470129c34 (diff) |
Userspace kuchosauronad0 (#6541)
* initial commit
* Update layout. Tweak rules.mk
* initial userspace configuration for kuchosauronad0
* modified userspace for kuchosauronad0
* added OSL_UNI
* clean up
* clean up
* style
* style
* added more unicode
* fixed representation
* fixed representation
* added comments
* added comments, restructure
* accidently one line
* restructure
* restructure
* added git_lazy(void)
* fixed indenting and added missing symbols
* fixed indent
* fixed indent
* update
* change tapping_term to 150
* added UNICODEMAP_ENABLE block
* replace register with tap_code where possible
* formatting
* rearrange sequences
* clean up
* clean up
* added unicode layer
* disabled tap dance
* add files for encoder
* removed unnecessary include
* removed unnecessary stuff
Diffstat (limited to 'users/kuchosauronad0/unicode.c')
-rw-r--r-- | users/kuchosauronad0/unicode.c | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/users/kuchosauronad0/unicode.c b/users/kuchosauronad0/unicode.c new file mode 100644 index 0000000000..8b312deb66 --- /dev/null +++ b/users/kuchosauronad0/unicode.c @@ -0,0 +1,62 @@ +#include "unicode.h" + +//#ifdef UNICODEMAP_ENABLE +const uint32_t PROGMEM unicode_map[] = { + [BANG] = 0x0203D,// â― + [IRONY] = 0x02E2E,// âļŪ + [DEGREE] = 0x000B0,// ° + [THINK] = 0x1F914,// ðĪ + [GRIN] = 0x1F600,// ïŋ― + [MONOCL] = 0x1F9D0,// ð§ + [DRUG0] = 0x1F92A,// ðĪŠ + [DRUG1] = 0x1F974,// ðĨī + [CLOWN] = 0x1F921,// ðĪĄ + [MNDBLWN] = 0x1F92F,// ðĪŊ + [MONEY] = 0x1F911,// ðĪ + [SHTUP] = 0x1F910,// ðĪ + [PARTY] = 0x1F973,// ðĨģ + [SMRK] = 0x1F60F,// ð + [WEARY] = 0x1F629,// ðĐ + [UNAMU] = 0x1F612,// ð + [SPY] = 0x1F575,//ðĩ + [DAFUQ] = 0x1F47A,// ðš + [FIST0] = 0x1F91B,// ðĪ + [FIST1] = 0x1F91C,// ðĪ + [FIST2] = 0x270A, // â + [FIST3] = 0x1F44A,// ð + [WIFIHAND] = 0x1F44B,// ð + [OKOK] = 0x1F44C,// ð + [EFFU] = 0x1F595,// ð + [SPOCK] = 0x1F596,// ð + [INUP] = 0x1F446,// ð + [THDN] = 0x1F44E,// ð + [THUP] = 0x1F44D,// ð + [TUMBLER] = 0x1F943,// ðĨ + [DRAGON0] = 0x1F409,// ð + [DRAGON1] = 0x1F432,// ðē + [TIGER0] = 0x1F405,// ð
+ [TIGER1] = 0x1F42F,// ðŊ + [COOL] = 0x1F192,// ð + [UCHART] = 0x1F4C8,// ð + [DCHART] = 0x1F4C9,// ð + [BCHART] = 0x1F4CA,// ð + [NOPRCY] = 0x1F572,// ðē + [PRCY] = 0x1F571,// ðą + [BBB] = 0x1F171,// ð
ą + [POO] = 0x1F4A9,// ðĐ + [HUNDR] = 0x1F4AF,// ðŊ + [EGGPL] = 0x1F346,// ð + [WATER] = 0x1F4A6,// ðĶ + [LIT] = 0x1F525,// ðĨ + [SNEK] = 0x1F40D,// ð + [PENGUIN] = 0x1F427,// ð§ + [BOAR] = 0x1F417,// ð + [MONKEY] = 0x1F412,// ð + [CHICK] = 0x1F425,// ðĨ + [DASH] = 0x1F4A8,// ðĻ + [DIZZY] = 0x1F4AB,// ðŦ + [KEEB] = 0x1F5AE,// ðŪ + [HOLE] = 0x1F573,// ðģ + [SAUCER] = 0x1F6F8// ðļ + }; +//#endif // UNICODEMAP_ENABLE |