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

sphero boltで遊ぶAdvent Calendar 2024

Day 23

出力: LEDマトリクスのドット絵

Last updated at Posted at 2024-12-22

背景

8x8のLEDマトリクスは切り替え表示できるようです。
spheroV2にも準備されているようなので、ドット絵の作成と切り替え動作を試しました。

Scratch

マトリクスアニメーションはマトリクスにありました。

image.png

+のボタンをクリックすると自作のデータを新規作成しました。
左から2番目のspheroが跳ねているボタンを押すと、フレームを追加できました。
上のxボタンを押すと前の画面に戻り、レボタンを押すとマトリクスアニメーションの窓が閉じました。
image.png

ここで+のボタンをクリックするとフレームを新規作成しました。
編集したいフレームを選んで鉛筆アイコンを押すとドット絵を編集しました。
image.png

色を選んで、変更するドットをクリックして編集しました。
image.png

「アニメーションをループ再生する。」

image.png

spheroV2

sphero_edu.pyのメソッドを調べると、アニメーションはregister_matrix_animationでフレームデータを登録して、play_matrix_animationでアニメーションを再生するようです。

また、フレームデータは使用する色をカラーパレットのリストに登録してから、ドットの色をカラーパレットのインデックスで指定するようです。

ここでは、8x8のpngファイルで作成しておいたファイルを指定したフォルダ内から読み込み、再生するようにしました。

chatGPT先生と相談しながら作成しましたが、依頼した手順よりも良い方法を回答された(カラーパレットを作りながらフレームデータを作成)ので、その手法を採用して一部修正して作成しました。

import os
import time

import glob
from PIL import Image
from spherov2.sphero_edu import SpheroEduAPI
from spherov2.types import Color
from spherov2 import scanner

def extract_palette_and_frames(folder_path):
    """
    指定フォルダから8x8のPNGファイルを読み込み、カラーパレットとフレームデータを作成する。
    """
    frames = []
    palette = []
    color_map = {}

    # フォルダ内のすべてのPNGファイルをフレーム番号順にソート
    png_files = sorted(glob.glob(os.path.join(folder_path, "*.png")))
    print(f"Found {len(png_files)} PNG files in {folder_path}.")

    for file in png_files:
        # 画像を読み込む
        img = Image.open(file).convert("RGB")  # RGB形式で読み込む
        if img.size != (8, 8):
            raise ValueError(f"Image {file} is not 8x8 pixels.")

        # フレームデータを格納
        frame = []
        for y in range(8):
            row = []
            for x in range(8):
                color = img.getpixel((x, y))
                if color not in color_map:
                    color_map[color] = len(palette)  # カラーパレットに追加
                    palette.append(Color(r=color[0], g=color[1], b=color[2]))
                row.append(color_map[color])  # パレットのインデックスを格納
            frame.append(row)
        frames.append(frame)

    return palette, frames

def main():
    folder_path = "./frames"  # PNGファイルが格納されているフォルダ
    print("Extracting palette and frames...")
    palette, frames = extract_palette_and_frames(folder_path)

    print(f"Palette: {len(palette)} colors")
    print(f"Frames: {len(frames)} frames")

    # Sphero Boltに接続してアニメーションを登録
    print("Connecting to Sphero Bolt...")
    toy = scanner.find_BOLT()
    if toy is None:
        print("Failed to connect to Sphero Bolt.")
        return

    with SpheroEduAPI(toy) as droid:
        print("Connected to Bolt.")
        droid.reset_aim()
        droid.set_stabilization(True)
        droid.set_front_led(Color(r=20, g=20, b=20))  # LED を白に設定

        # アニメーションを登録
        droid.register_matrix_animation(
            frames=frames,
            palette=palette,
            fps=10,  # フレームレート
            transition=False  # トランジションなし
        )
        print("Animation registered. Playing now!")

        # アニメーションを再生
        droid.play_matrix_animation(0)
        time.sleep(10)
        droid.clear_matrix()

if __name__ == "__main__":
    main()

framesという名前のフォルダにフレーム画像を連番で作成しました。
image.png

実行結果はこちらです。

git\spherov2.py\spherov2\test>python BoltTest_matrixAnimation2.py
Extracting palette and frames...
Found 4 PNG files in ./frames.
Palette: 2 colors
Frames: 4 frames
Connecting to Sphero Bolt...
Connected to Bolt.
Animation registered. Playing now!

まとめ

spheroV2を用いて、sphero boltのマトリクスにアニメーションを表示しました。
8x8のドット絵のデータを引用すると、演出が捗りそうです。

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