Skip to content
Snippets Groups Projects
Commit 77246501 authored by Quentin Bolsee's avatar Quentin Bolsee
Browse files

Update README.md

parent 610c0d53
Branches main
No related tags found
No related merge requests found
......@@ -45,7 +45,13 @@ import machine
import time
# inject
print(f"\3f=open('main.py', 'wb')\nf.write({open('main.py', 'rb').read()})\nf.close()\nimport machine\nmachine.reset()")
with open("main.py", "rb") as f:
print("\x03", end="")
print("f = open('main.py', 'wb')")
print("f.write(")
print(f.read())
print(")")
print("f.close()")
# blink
p = machine.Pin(25, machine.Pin.OUT)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment