どのプログラミング言語も大体は「Hello World」で始まってますよね。
今回はm5stack Core2でもHello Worldを表示させてみよう。
「Hello World」の表示
サンプルコード
#include <M5Core2.h> void setup() { // put your setup code here, to run once: M5.begin(true, true, true, true); M5.Lcd.setTextSize(3); M5.Lcd.print("Hello world"); } void loop() { // put your main code here, to run repeatedly: }