1
0
Fork 0
qmk_firmware/users/yet-another-developer/unicode.c
Yet Another Developer 3d53ea439c [Keymap] Ergodash keymap for yet-another-developer (#7046)
* Initialize ergodash rev 1 keymap

./util/new_keymap.sh ergodash/rev1 yet-another-developer

* Add user space configurations referenced from drashna

* Start community layout for ergodash in ortho_5x14

* Remove unused layers

* Add userspace layers

* Add Userspace gitignore

Hide Secrets

* Remove userspace unused drashna features

* Scrap default keymap and follow drashna's template

* Add code referenced from kuchosauronad0

* Make sure that the author is named Developer

* Replace middle keys del and bksp with curly brace

* Reduce ONESHOT_TIMEOUT from 3sec to 2sec

* Remove adjust key AG_SWAP

* Disable UNICODEMAP_ENABLE, remove code causing build fail

* Increase TAPPING_TERM to 240

Reason:  Because Space is also LOWER, space sometimes not registering.
PS: I dont want to #define RETRO_TAPPING yet

* Update KC_MAKE to use :flash

* Remove TAP_ONCE, use tap_code

Signed-off-by: Developer <anotherdeveloper@icloud.com>

* Remove redundant code implementation of keyboard_post_init_user

https://github.com/qmk/qmk_firmware/pull/7046

users/yet-another-developer/leader.c
```
  static bool has_ran_yet;
  if (!has_ran_yet) {
    has_ran_yet = true;
    startup_user();
```
Comment for lines +11  – +14
 @drashna: Not needed anymore. You can use keyboard_post_init_user now.

Signed-off-by: Developer <anotherdeveloper@icloud.com>
2019-10-20 11:07:56 -07:00

63 lines
1.9 KiB
C
Raw Permalink Blame History

#include "unicode.h"
//#ifdef UNICODEMAP_ENABLE
const uint32_t PROGMEM unicode_map[] = {
[BANG] = 0x0203D,// ‽
[IRONY] = 0x02E2E,// ⸮
[DEGREE] = 0x000B0,// °
[THINK] = 0x1F914,// 🤔
[GRIN] = 0x1F600,// <20>
[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