Micropython integrated development for VSCode
- Flashing Micropython firmwares into devices, current support flashing ESP8266, ESP32 boards using
esptool.py
. - Generate new project with supported files.
- Support send project files into board.
- Support Serial Monitor for debugging your scripts.
This extension required python
with pip
(python package installer) installed on your system operation.
If you do not have already installed Python, you can downloading from the official site. You can use python 2.x but I'm recommend using 3.x will better.
Pip is a installer for python modules that both downloads and installs the modules, if you are not already installed pip, please click here.
Ampy allows you to interact with the file system created on the chip. This module is required for this extension. You can install ampy by pip:
pip install adafruit-ampy
Remote Shell for MicroPython. This module is required for this extension. You can install rshell by pip:
sudo pip3 install rshell
or:
sudo pip install rshell
First, you need to generate new project by open Getting Started menu.
To open Getting Started... menu, you can press shortcut ⌘ + ⇧ + P keys, then find from commands list with keyword: Micropython: Gettings Started
.
You can integrate with existing project by creating .micropythonrc
file into your project root directory. This file stores build and debug settings for your project.
You can run project by move to script file from prject directory. From VSCode status bar, press ▶ button in the bottom right. Or using Run
command from commands list.
To stop running script, you can stop by press ◼ button in the bottom right. Or using Stop
command from commands list.
From Getting Started menu, select Flash Firmware then follow the step-by-step instructions.
This extension has no settings for this release. You just press ⌘ + ⇧ + P then type prefix Micropython to see tasks list:
- Micropython: Getting started
- Micropython: Run...
- Micropython: Stop...
- ...
This extension has been tested on MacOS. If you have any trouble with your OS. Please contact me soon by open issue or via email address: [email protected]. All requests appropriate!
Users appreciate release notes as you update your extension.
First release