mirror of
https://github.com/ajouatom/openpilot.git
synced 2026-02-18 21:13:56 +08:00
8 lines
173 B
Python
8 lines
173 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
from panda import Panda
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
for p in Panda.list():
|
||
|
|
pp = Panda(p)
|
||
|
|
print(f"{pp.get_serial()[0]}: {pp.get_version()}")
|