mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-14 08:20:03 +08:00
12 lines
209 B
Python
Executable file
12 lines
209 B
Python
Executable file
import sys
|
|
import pm3
|
|
|
|
def main():
|
|
print('Hello world')
|
|
#p=pm3.open("/dev/ttyACM0")
|
|
p=pm3.get_current_dev()
|
|
pm3.console(p, "hw status")
|
|
#pm3.close(p)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|