* Disable a bunch of reactive modes * Enable rgb matrix for Corne Keyboard * Convert CRKBD to rgb matrix * Add Gergo keyboard layout * Make Diablo 3 tap dance better * Add basic support for Planck EZ * Fix RGB Matrix stuff * Fix keycodes for Planck EZ * Update CRKBD OLED stuff * Fix typo for sleep on ergodox glow * Improve my gergo layout * Scrolling OLED key logger! * Change gergo layout * Hnadle unicode keycodes if unicode is disabled * Disable COMMAND/CONSOLE for gergo * Fix right side control * Re-enable LTO for all platforms Since I got updated arm gcc binaries that no longer error out on lto * Update formatting to match newer community standards Poor 2 space * Re-alight startup animation to use new HUE range * Streamline gitlab ci scripts * Disabled Space Cadet * Add support for breathing table * Enable new LTO Option And clean up defines that will now be repeatitive * Remove vscode settings * Additional formatting cleanup of config.h files
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include "quantum.h"
 | 
						|
 | 
						|
void send_unicode_hex_string(const char* str);
 | 
						|
 | 
						|
/* use X(n) to call the  */
 | 
						|
#ifdef UNICODEMAP_ENABLE
 | 
						|
enum unicode_name {
 | 
						|
    THINK, // thinking face 🤔
 | 
						|
    GRIN, // grinning face 😊
 | 
						|
    SMRK, // smirk 😏
 | 
						|
    WEARY, // good shit 😩
 | 
						|
    UNAMU, // unamused 😒
 | 
						|
 | 
						|
    SNEK, // snke 🐍
 | 
						|
    PENGUIN, // 🐧
 | 
						|
    DRAGON, // 🐉
 | 
						|
    MONKEY, // 🐒
 | 
						|
    CHICK, // 🐥
 | 
						|
    BOAR, // 🐗
 | 
						|
 | 
						|
    OKOK, // 👌
 | 
						|
    EFFU, // 🖕
 | 
						|
    INUP, // 👆
 | 
						|
    THUP, // 👍
 | 
						|
    THDN, // 👎
 | 
						|
 | 
						|
    BBB, // dat B 🅱
 | 
						|
    POO, // poop 💩
 | 
						|
    HUNDR, // 100 💯
 | 
						|
    EGGPL, // EGGPLANT 🍆
 | 
						|
    WATER, // wet 💦
 | 
						|
    TUMBLER, // 🥃
 | 
						|
 | 
						|
    LIT, // fire 🔥
 | 
						|
    BANG, // ‽
 | 
						|
    IRONY, // ⸮
 | 
						|
    DEGREE // °
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
const uint32_t PROGMEM unicode_map[] = {
 | 
						|
    [THINK]     = 0x1F914,
 | 
						|
    [GRIN]      = 0x1F600,
 | 
						|
    [BBB]       = 0x1F171,
 | 
						|
    [POO]       = 0x1F4A9,
 | 
						|
    [HUNDR]     = 0x1F4AF,
 | 
						|
    [SMRK]      = 0x1F60F,
 | 
						|
    [WEARY]     = 0x1F629,
 | 
						|
    [EGGPL]     = 0x1F346,
 | 
						|
    [WATER]     = 0x1F4A6,
 | 
						|
    [LIT]       = 0x1F525,
 | 
						|
    [UNAMU]     = 0x1F612,
 | 
						|
    [SNEK]      = 0x1F40D,
 | 
						|
    [PENGUIN]   = 0x1F427,
 | 
						|
    [BOAR]      = 0x1F417,
 | 
						|
    [MONKEY]    = 0x1F412,
 | 
						|
    [CHICK]     = 0x1F425,
 | 
						|
    [DRAGON]    = 0x1F409,
 | 
						|
    [OKOK]      = 0x1F44C,
 | 
						|
    [EFFU]      = 0x1F595,
 | 
						|
    [INUP]      = 0x1F446,
 | 
						|
    [THDN]      = 0x1F44E,
 | 
						|
    [THUP]      = 0x1F44D,
 | 
						|
    [TUMBLER]   = 0x1F943,
 | 
						|
    [BANG]      = 0x0203D,
 | 
						|
    [IRONY]     = 0x02E2E,
 | 
						|
    [DEGREE]    = 0x000B0
 | 
						|
 };
 | 
						|
#endif // UNICODEMAP_ENABLE
 |