Simple! Easy! Quick! Start your micropython code!
-
Simple code editing tools based on TK, similar as mu-editor.
-
Run automatic serial port search, prompt to connect hardware, theoretically support any connection of MicroPython firmware.
-
No judgment mechanism is added in the process of serial port connection, which can be used as a general serial port tool to receive data.
-
Hardware connected to MicroPython does not appear in upyCraft IDE's prompt to burn firmware.
-
Green single file under Windows, out of the box, or using Python for cross-platform operation.
- Python 3.5.4 +
- requirements.txt
1. into releases download editor.exe.
double click it.
run pip insrall mpy-editor
in your cmd(shell), then input editor
run it.
pip install mpy-editor
editor
When opened, the current list of devices is displayed. Hardware has not been inserted yet.
Connect to your hardware and the port number of the current hardware will appear.
Click 'COM5' as shown in the figure to connect successfully.
Click the button(Run) code, as shown in figure of the built-in code print(' hello world!')
.
- create editor.spec
pyinstaller -w -F editor.py -i logo.ico
- modify editor.spec
in 9 line editor.spec add datas=[('mpy\\img','img')],
- create editor.exe
pyinstaller -w -F editor.spec -i logo.ico
python setup.py sdist build
# pip install twine
twine upload dist/* --verbose