mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-26 05:22:07 +08:00
14ff1fb436
version: sunnypilot v2026.002.000 (dev)
date: 2026-06-09T06:39:10
master commit: 01a843e0ac
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()}")
|
|
|
|
|