mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-16 00:02:07 +08:00
3f8e95952a
version: sunnypilot v2026.002.000 (dev)
date: 2026-06-29T03:29:47
master commit: 31dc4d8e52
10 lines
193 B
Python
Executable File
10 lines
193 B
Python
Executable File
#!/usr/bin/env python3
|
|
from panda import PandaJungle
|
|
|
|
if __name__ == "__main__":
|
|
for p in PandaJungle.list():
|
|
pp = PandaJungle(p)
|
|
print(f"{pp.get_serial()[0]}: {pp.get_version()}")
|
|
|
|
|