mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-20 13:32:04 +08:00
dba8e01e54
git-subtree-dir: panda git-subtree-split: ae816c104a99a8cd4d508ccd6abdc7b93053529c
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()))
|
|
|
|
|