0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

M5Stack Core2 で日本語表示

Last updated at Posted at 2021-08-31

IMG_20210831_100055.jpg

display02/display02.ino
// ---------------------------------------------------------------
/*
	display02.ino
	
						Aug/31/2021
*/
// ---------------------------------------------------------------
#include <M5Core2.h>
#include "CUF_24px.h"

// ---------------------------------------------------------------
void setup()
{
  M5.begin();
  M5.Lcd.setFreeFont(&unicode_24px);
  M5.Lcd.setTextDatum(TC_DATUM);
}

// ---------------------------------------------------------------
void loop()
{
  M5.Lcd.fillScreen(0);
  M5.Lcd.drawString("壁にかかった鏡や、鏡", 160, 60, 1);
  delay(2000);
  M5.Lcd.drawString("国一番の、美人は誰じゃ", 160, 90, 1);  
  delay(4000);
  
  M5.Lcd.fillScreen(0);
  M5.Lcd.drawString("ああ、おきさま、あなたさまこそ", 160, 120, 1);
  delay(2000);
  M5.Lcd.drawString("国一番の、ごきりょうよし", 160, 160, 1);
  delay(4000);

// ---------------------------------------------------------------
}

CUF_24px.h
はこちらにあります。
M5Core2/examples/Advanced/Display/Display_Unicode/

Arduino 1.8.19 で表示した様子
image.png

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?