Page 1 of 1

What modules are pre-installed in esp8266 firmware binary?

Posted: Mon Jan 15, 2018 5:21 am
by kkumar326
I'm looking for the list of added modules (.py) as here: https://github.com/micropython/micropyt ... 66/modules
in already built esp8266 firmware here: http://micropython.org/download#esp8266

Where can I find them?

Thanks!

Re: What modules are pre-installed in esp8266 firmware binary?

Posted: Mon Jan 15, 2018 6:52 am
by Roberthh
You can see the list of all active modules with:

Code: Select all

help("modules")

Re: What modules are pre-installed in esp8266 firmware binary?

Posted: Mon Jan 15, 2018 7:12 am
by kkumar326
Roberthh wrote:
Mon Jan 15, 2018 6:52 am
You can see the list of all active modules with:

Code: Select all

help("modules")
Thanks a lot :D