7
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

秋葉原ロボット部Advent Calendar 2023

Day 10

M5Stackでパラパラ漫画

Last updated at Posted at 2023-12-09

M5StackをGopherくん基板にはめ込むものを作りました。M"Go"Stackです。

image.png

はめこんだM5stackでパラパラ漫画を作ります。
画像はmattnさんが作成したものを使わせてもらいました。

このレポジトリをgit cloneしてSDカードに画像をコピーします。
そして以下のようなスケッチを作成して書き込みます。

#include <M5Stack.h>

void setup() {
  // M5Stackの初期化
  M5.begin();
  M5.Lcd.clear(TFT_BLACK);
}

void loop() {

  M5.update();
  M5.Lcd.drawJpgFile(SD,"/dir1/out01.jpg", 60, 20);
  delay(10);
  M5.Lcd.drawJpgFile(SD,"/dir1/out02.jpg", 60, 20);
  delay(10);
  M5.Lcd.drawJpgFile(SD,"/dir1/out03.jpg", 60, 20);
  delay(10);
 
}

loop()のなかで表示する画像を切り替えているだけですね。

7
0
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
7
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?