mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
12 lines
133 B
Python
12 lines
133 B
Python
|
import Arm2D
|
||
|
import PyInfo
|
||
|
|
||
|
line = Arm2D.Line()
|
||
|
res = line.on()
|
||
|
line.off()
|
||
|
line.moveTo(20)
|
||
|
|
||
|
while True:
|
||
|
line.off()
|
||
|
line.on()
|