General Question: How Can You Control the MicroPython Entrypoint #17448
-
Hi all, I'm getting a grip on the MicroPython project as a whole, and I'm finding the REPL very pleasant to work with (on a Eventually every project will have to go from the REPL to But there's still the last 10%, and there is my question. Do you know how can I can invoke e.g. Thank you, Jack |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
All ports that I have worked with so far automatically run Try Google |
Beta Was this translation helpful? Give feedback.
-
In most projects there is no need to use the compiler. Assume you have a project file >>> import my_project
>>> my_project.run() To auto-run create a file import my_project
my_project.run() Ensure |
Beta Was this translation helpful? Give feedback.
Sounds like
main.py
is the key. Thanks Peter.Jack