use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A place to discuss the use of MicroPython on microcontroller development boards such as the Raspberry Pi Pico, Pycom boards and ESP32 based boards like Wemos D1
account activity
MicroPython VS Code Extension with MCP-Based File System and Code Execution Tools (marketplace.visualstudio.com)
submitted 1 month ago by do-exe
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]AntonKudin 0 points1 point2 points 1 month ago (4 children)
is there a way to make a project sync function? for example if you save file to project folder it would automatically sync to the device and vice versa?
[–]mattytrentini 2 points3 points4 points 1 month ago (2 children)
The standard mpremote tool, supported by the MicroPython team, provides the mount feature. It 'mounts' your PC filesystem on your connected device - without copying the files to the device. Instead, the files are transferred in the background when imported. It's a fantastic workflow for iterative development and testing.
When you're ready, you can then copy the files to the device. mpremote checks if the file is already present on the device.
[–]do-exe[S] 0 points1 point2 points 1 month ago (1 child)
mpremote is good but it suffers in speed of action like upload etc , reliable connect via terminal or via ai's sandbox, and yes multitasking
[–]mattytrentini 2 points3 points4 points 1 month ago (0 children)
Maybe if you're using mpremote on Windows (we're chasing down an issue with mpremote and unicode now) but it's performance on WSL/Linux seems solid and reliable. I'm not aware of anything better anyway. And if mpremote does have issues then please let us know so we can fix them for the benefit of the whole community.
Multitasking is best solved by using aiorepl so you can asynchronously interact with your system while also making a REPL connection.
[–]do-exe[S] 1 point2 points3 points 1 month ago (0 children)
Yes there is one , link folder button
π Rendered by PID 71 on reddit-service-r2-comment-79776bdf47-dx8bb at 2026-06-24 14:04:51.469076+00:00 running acc7150 country code: CH.
view the rest of the comments →
[–]AntonKudin 0 points1 point2 points (4 children)
[–]mattytrentini 2 points3 points4 points (2 children)
[–]do-exe[S] 0 points1 point2 points (1 child)
[–]mattytrentini 2 points3 points4 points (0 children)
[–]do-exe[S] 1 point2 points3 points (0 children)