mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
compile with swig files if available
This commit is contained in:
parent
2f6261badb
commit
f37088095b
17 changed files with 198 additions and 593 deletions
13
client/experimental_client_with_swig/testembedded_grab.py
Executable file
13
client/experimental_client_with_swig/testembedded_grab.py
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import pm3
|
||||
from output_grabber import OutputGrabber
|
||||
|
||||
out = OutputGrabber()
|
||||
p=pm3.pm3()
|
||||
print("Device:", p.name)
|
||||
with out:
|
||||
p.console("hw status")
|
||||
for line in out.capturedtext.split('\n'):
|
||||
if "Unique ID" in line:
|
||||
print(line)
|
Loading…
Add table
Add a link
Reference in a new issue