How to change Access Point Default Password?

General discussions and questions abound development of code with MicroPython that is not hardware specific.
Target audience: MicroPython Users.
Post Reply
magus66
Posts: 1
Joined: Tue Aug 27, 2019 6:33 am

How to change Access Point Default Password?

Post by magus66 » Tue Aug 25, 2020 7:06 am

Hi there!

I searched Google as well as this forum but wasn't successful:

how do I change the standard, default password for the AP from "micropythoN" to something else?

Thanks.

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: How to change Access Point Default Password?

Post by pythoncoder » Tue Aug 25, 2020 4:14 pm

Here is where the magic happens. So it would seem to be an undocumented feature of

AbstractNIC.config(param=value, ...)

This is implemented (on ESP8266) here.
Peter Hinch
Index to my micropython libraries.

Christian Walther
Posts: 169
Joined: Fri Aug 19, 2016 11:55 am

Re: How to change Access Point Default Password?

Post by Christian Walther » Wed Aug 26, 2020 7:47 pm

Not undocumented, however the non-obvious part is that you also need to set authmode.

Post Reply