mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-14 19:44:05 +08:00
81da8ac9f4
date: 2024-06-11T01:36:39 master commit: f8cb04e4a8b032b72a909f68b808a50936184bee
14 lines
230 B
Python
Executable File
14 lines
230 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import time
|
|
from panda import PandaJungle
|
|
|
|
if __name__ == "__main__":
|
|
jungle = PandaJungle()
|
|
|
|
while True:
|
|
for bus in range(3):
|
|
print(bus, jungle.can_health(bus))
|
|
print()
|
|
time.sleep(1)
|