uPythonHelper

Discussion about programs, libraries and tools that work with MicroPython. Mostly these are provided by a third party.
Target audience: All users and developers of MicroPython.
Post Reply
casten
Posts: 1
Joined: Sun Jan 08, 2017 8:56 am

uPythonHelper

Post by casten » Sun Jan 08, 2017 9:02 am

Hi Folks,

I've written a small utility in Python + Tkinter to provide easy serial console + filesystem access to uPython. I've only tested it against the an ESP8266 NodeMCU board on Windows. But it's fairly small (< 400 lines) and only requires a couple publicly available Python libraries.

You can find it here: https://github.com/casten/uPythonHelper

I'm open to bug fix + pull requests as my time allows.

I hope folks find it useful.

-Casten

User avatar
rcolistete
Posts: 352
Joined: Thu Dec 31, 2015 3:12 pm
Location: Brazil
Contact:

Re: uPythonHelper

Post by rcolistete » Wed Jan 11, 2017 4:28 pm

Thanks !

It works on Linux (Ubuntu 14.04 64 bits) after installing the following dependencies :
$ sudo apt-get install python3-tk
$ sudo pip3 install serial_device2
Tested on WeMos D1 Mini (ESP8266), connected "Port/Device" is '/dev/ttyUSB0'.

All file functions work well.

But the terminal is not perfect : backspace and arrows don't work.
My "MicroPython Samples". My "MicroPython Firmwares" with many options (double precision, ulab, etc).

Post Reply