proxmark3/client/experimental_client_with_swig/testembedded.py

14 lines
301 B
Python
Executable file

#!/usr/bin/env python3
import pm3
p=pm3.pm3()
p.console("hw status")
p.console("hw version")
for line in p.grabbed_output.split('\n'):
if "Unique ID" in line:
print(line)
if "uC:" in line:
print(line)
print("Device:", p.name)
p.console("Rem passthru remark! :coffee:", True)