Files
dragonpilot/panda/tests/get_version.py
Comma Device 5c73e264e9 Release 260308
2026-03-08 23:26:57 +08:00

8 lines
179 B
Python
Executable File

#!/usr/bin/env python3
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()))