10 lines
200 B
Python
10 lines
200 B
Python
|
from mini_bdx_runtime.rustypot_position_hwi import HWI
|
||
|
from mini_bdx_runtime.duck_config import DuckConfig
|
||
|
import time
|
||
|
|
||
|
duck_config = DuckConfig()
|
||
|
|
||
|
hwi = HWI(duck_config)
|
||
|
hwi.turn_off()
|
||
|
time.sleep(1)
|