proxmark3/client/client_with_swig/testembedded.py
2020-06-14 21:35:23 +02:00

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()