mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-08-01 14:16:47 +08:00
5eb75de249
git-subtree-dir: panda git-subtree-split: c371fe688dbad4c53635905d3471a01c185e811d old-commit-hash: c251b312d87d26b5ed347b267f6f1570793f9b91
10 lines
180 B
Python
Executable File
10 lines
180 B
Python
Executable File
#!/usr/bin/env python
|
|
from panda import Panda
|
|
|
|
if __name__ == "__main__":
|
|
for p in Panda.list():
|
|
pp = Panda(p)
|
|
print("%s: %s" % (pp.get_serial()[0], pp.get_version()))
|
|
|
|
|