Using the Unit RCA ・ 使用 Unit RCA
M5StackのUnit RCAをコントローラーに接続する最小構成。配線とBOMつき。
この構成をエディタで開く・編集する →| 部品 | 役割 | ポート | リンク・価格 |
|---|---|---|---|
| M5Stack CoreS3 | Controller | grove_i2c, grove_analog, grove_uart, mbus, usb_c, sdcard | official page — $59.9 |
| Unit RCA | unit | grove_analog, other:RCA female jack (composite A/V output) | official page — $2.95 |
M5Stack CoreS3とUnit RCAで構成する、最小限のAV出力装置です。Unit RCAからコンポジット映像または音声を出力できます。
# M5Stack CoreS3 + Unit RCA (composite video output)
# Wiring: Unit RCA -> CoreS3 black Port.B (analog/IO)
# Note: This example outputs a simple test pattern.
# The Unit RCA uses the analog pin to generate composite video.
# For actual video generation, a library like M5UnitRCA is needed.
# This code just demonstrates basic GPIO control.
from machine import Pin, ADC
import time
# Port.B pins on CoreS3: GPIO 8 (analog input) and GPIO 9 (digital output)
# Unit RCA uses the analog pin for video signal.
# Here we just toggle a digital pin to show it's connected.
led = Pin(9, Pin.OUT) # Use digital pin as indicator
while True:
led.on()
time.sleep(1)
led.off()
time.sleep(1)
この作り方はAIが構成から生成したものです(未検証)。通電前に配線とコードをご確認ください。
この構成はAIが実在するM5Stack部品から設計し、ポート互換をサーバで検証したものです。編集・共有できます。
エディタで開く →UnitKit は M5Stack® 製品向けの非公式ツール。作りたいものを書くと、部品リストと配線図が出ます。