acid-drop- Hacking the planet from a LilyGo T-Deck using custom firmware |
git clone git://git.acid.vegas/acid-drop.git |
Log | Files | Refs | Archive | README | LICENSE |
U8g2FontUTF8FullCJK.ino (4441B)
1 /******************************************************************************* 2 * U8g2 CJK(Chinese, Japanese and Korean) font example 3 * Please note this font is 1,704,862 in size and cannot fit in many platform. 4 * This font is generated by U8g2 tools: 5 * u8g2/tools/font/bdfconv/bdfconv -v -f 1 -m "32-127,4352-4607,11904-12255,12288-19903,19968-40943,43360-43391,44032-55203,55216-55295,63744-64255,65072-65103,65280-65519,110592-110959,127488-127743,131072-173791" unifont_jp-14.0.02.bdf -o u8g2_font_unifont_t_cjk.h -n u8g2_font_unifont_t_cjk 6 ******************************************************************************/ 7 8 /******************************************************************************* 9 * Start of Arduino_GFX setting 10 * 11 * Arduino_GFX try to find the settings depends on selected board in Arduino IDE 12 * Or you can define the display dev kit not in the board list 13 * Defalult pin list for non display dev kit: 14 * Arduino Nano, Micro and more: CS: 9, DC: 8, RST: 7, BL: 6, SCK: 13, MOSI: 11, MISO: 12 15 * ESP32 various dev board : CS: 5, DC: 27, RST: 33, BL: 22, SCK: 18, MOSI: 23, MISO: nil 16 * ESP32-C3 various dev board : CS: 7, DC: 2, RST: 1, BL: 3, SCK: 4, MOSI: 6, MISO: nil 17 * ESP32-S2 various dev board : CS: 34, DC: 38, RST: 33, BL: 21, SCK: 36, MOSI: 35, MISO: nil 18 * ESP32-S3 various dev board : CS: 40, DC: 41, RST: 42, BL: 48, SCK: 36, MOSI: 35, MISO: nil 19 * ESP8266 various dev board : CS: 15, DC: 4, RST: 2, BL: 5, SCK: 14, MOSI: 13, MISO: 12 20 * Raspberry Pi Pico dev board : CS: 17, DC: 27, RST: 26, BL: 28, SCK: 18, MOSI: 19, MISO: 16 21 * RTL8720 BW16 old patch core : CS: 18, DC: 17, RST: 2, BL: 23, SCK: 19, MOSI: 21, MISO: 20 22 * RTL8720_BW16 Official core : CS: 9, DC: 8, RST: 6, BL: 3, SCK: 10, MOSI: 12, MISO: 11 23 * RTL8722 dev board : CS: 18, DC: 17, RST: 22, BL: 23, SCK: 13, MOSI: 11, MISO: 12 24 * RTL8722_mini dev board : CS: 12, DC: 14, RST: 15, BL: 13, SCK: 11, MOSI: 9, MISO: 10 25 * Seeeduino XIAO dev board : CS: 3, DC: 2, RST: 1, BL: 0, SCK: 8, MOSI: 10, MISO: 9 26 * Teensy 4.1 dev board : CS: 39, DC: 41, RST: 40, BL: 22, SCK: 13, MOSI: 11, MISO: 12 27 ******************************************************************************/ 28 #include <U8g2lib.h> 29 #include <Arduino_GFX_Library.h> 30 31 #define GFX_BL DF_GFX_BL // default backlight pin, you may replace DF_GFX_BL to actual backlight pin 32 33 /* More dev device declaration: https://github.com/moononournation/Arduino_GFX/wiki/Dev-Device-Declaration */ 34 #if defined(DISPLAY_DEV_KIT) 35 Arduino_GFX *gfx = create_default_Arduino_GFX(); 36 #else /* !defined(DISPLAY_DEV_KIT) */ 37 38 /* More data bus class: https://github.com/moononournation/Arduino_GFX/wiki/Data-Bus-Class */ 39 Arduino_DataBus *bus = create_default_Arduino_DataBus(); 40 41 /* More display class: https://github.com/moononournation/Arduino_GFX/wiki/Display-Class */ 42 Arduino_GFX *gfx = new Arduino_ILI9341(bus, DF_GFX_RST, 0 /* rotation */, false /* IPS */); 43 44 #endif /* !defined(DISPLAY_DEV_KIT) */ 45 /******************************************************************************* 46 * End of Arduino_GFX setting 47 ******************************************************************************/ 48 49 /* more fonts at: https://github.com/moononournation/ArduinoFreeFontFile.git */ 50 51 void setup(void) 52 { 53 gfx->begin(); 54 gfx->fillScreen(BLACK); 55 gfx->setUTF8Print(true); // enable UTF8 support for the Arduino print() function 56 57 #ifdef GFX_BL 58 pinMode(GFX_BL, OUTPUT); 59 digitalWrite(GFX_BL, HIGH); 60 #endif 61 62 /* select one font below and uncomment, chill7 and cubic11 are smaller size but lack of Korea characters */ 63 // gfx->setFont(u8g2_font_chill7_h_cjk); 64 // gfx->setFont(u8g2_font_cubic11_h_cjk); 65 gfx->setFont(u8g2_font_quan7_h_cjk); 66 // gfx->setFont(u8g2_font_unifont_t_cjk); 67 gfx->setCursor(0, 14); 68 69 gfx->setTextColor(RED); 70 gfx->println("世界你好,今天的天氣真好啊!"); 71 gfx->println(); 72 73 gfx->setTextColor(YELLOW); 74 gfx->println("世界你好,今天的天气真好啊!"); 75 gfx->println(); 76 77 gfx->setTextColor(GREEN); 78 gfx->println("こんにちは世界、今日はいいお天気ですね!"); 79 gfx->println(); 80 81 gfx->setTextColor(BLUE); 82 gfx->println("안녕하세요 세계, 오늘 날씨가 너무 좋습니다!"); 83 gfx->println(); 84 85 gfx->setTextColor(MAGENTA); 86 gfx->println("Hello world, the weather is so nice today!"); 87 } 88 89 void loop() 90 { 91 }