ESP32 list modules

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 list modules

Post by input » Wed May 03, 2017 12:20 pm

I tried to list modules with :
import os
print dir (os)

But that doesn't seem to work. Is there a way to look which modules are available.
Another question is: is it possible to use something like "git clone"in the python promt.
I am really interesting in download files from the internet and I read that the 8266 have that with WebREPL.

I hope the Micropythondoc is coming soon online.

Thanks

shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

Re: ESP32 list modules

Post by shaoziyang » Wed May 03, 2017 2:20 pm

print(dir(os))

input
Posts: 15
Joined: Sun Apr 23, 2017 9:37 am

Re: ESP32 list modules

Post by input » Wed May 03, 2017 2:29 pm

Thank you :)

Do you also know how to download files from the internet.

Thanks

shaoziyang
Posts: 363
Joined: Sun Apr 17, 2016 1:55 pm

Re: ESP32 list modules

Post by shaoziyang » Thu May 04, 2017 1:56 pm

I have not try ESP32 module, download file maybe same as ESP8266.

You can refer to the following docs:

http://docs.micropython.org/en/latest/e ... k_tcp.html

Post Reply