What modules are pre-installed in esp8266 firmware binary?

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
Post Reply
kkumar326
Posts: 16
Joined: Wed Nov 15, 2017 5:30 am

What modules are pre-installed in esp8266 firmware binary?

Post by kkumar326 » Mon Jan 15, 2018 5:21 am

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!

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

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

Post by Roberthh » Mon Jan 15, 2018 6:52 am

You can see the list of all active modules with:

Code: Select all

help("modules")

kkumar326
Posts: 16
Joined: Wed Nov 15, 2017 5:30 am

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

Post by kkumar326 » Mon Jan 15, 2018 7:12 am

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

Post Reply