mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-12 21:02:13 +08:00
9 lines
147 B
Python
9 lines
147 B
Python
#!/usr/bin/env python3
|
|
|
|
from openpilot.tools.zookeeper import Zookeeper
|
|
|
|
if __name__ == "__main__":
|
|
z = Zookeeper()
|
|
z.set_device_power(False)
|
|
|