Page 1 of 1

Unintended AP and STA mode at the same time

Posted: Tue Mar 14, 2017 1:02 am
by Pablo Oyarzo
How do I stop the already started AP on the ESP? I see you can use x.disconnect() but I believe this is only for STA mode

Re: Unintended AP and STA mode at the same time

Posted: Tue Mar 14, 2017 8:18 am
by deshipu

Code: Select all

import network

network.WLAN(network.AP_IF).active(False)

Re: Unintended AP and STA mode at the same time

Posted: Tue Mar 14, 2017 8:16 pm
by Pablo Oyarzo
Thank you, it worked.