Problems after flash

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
User avatar
Roberthh
Posts: 3667
Joined: Sat May 09, 2015 4:13 pm
Location: Rhineland, Europe

Re: Problems after flash

Post by Roberthh » Wed Mar 29, 2017 2:13 pm

That looks OK. Mp complains because it does not find main.py. So you might create one at the REPL prompt, even if it's empty:

Code: Select all

f = open("main.py", "w")
f.write("# main.py: initial code for applications\n")
f.close()

Post Reply