發表文章

目前顯示的是有「範例」標籤的文章

EV3 Python 程式範例

用 Python 撰寫程式控制 EV3  EV3 主機的狀態燈 Code #!/usr/bin/env pybricks-micropython from pybricks . hubs import EV3Brick from pybricks . tools import wait from pybricks . parameters import Color # Initialize the EV3 ev3 = EV3Brick () # Turn on a red light ev3 . light . on ( Color . RED ) # Wait wait ( 1000 ) # Turn the light off ev3 . light . off () 以下是其他 EV3 Python 範例程式