ESP32 documentation

All ESP32 boards running MicroPython.
Target audience: MicroPython users with an ESP32 board.
Post Reply
input
Posts: 15
Joined: Sun Apr 23, 2017 9:37 am

ESP32 documentation

Post by input » Fri Apr 28, 2017 3:05 pm

Can I use this wiki to work with the ESP32 http://docs.micropython.org/en/latest/e ... ckref.html
And is it possible to upload a pythonscript from Windows to the ESP32, for example I like to try the wifi.

Thanks

User avatar
Roberthh
Posts: 3667
Joined: Sat May 09, 2015 4:13 pm
Location: Rhineland, Europe

Re: ESP32 documentation

Post by Roberthh » Sat Apr 29, 2017 6:33 am

Until there is a matching documentation, the one for the esp8266 should give the best match. But you have to try. For uploading scripts to the device you can use all USB based tools, like rshell, ampy, mpfshell, or what you find on the board. There is no official support for telnet or ftp (yet). If you build your own image, you can place your favorite scripts into flash as frozen bytecode. Just put the into the modules directory and run build & flash.

Post Reply