← index #6787Issue #306
Related · medium · value 1.320
QUERY · ISSUE

stm32: network WLAN(AP_IF).isconnected() always returns True

openby fragmuffinopened 2021-01-19updated 2026-03-25
port-stm32

The documentation for network.WLAN.isconnected() states:

In AP mode returns True when a station is connected. Returns False otherwise.

ref: http://docs.micropython.org/en/v1.13/library/network.WLAN.html#network.WLAN.isconnected

However, when I run the following code on a PYBD_SF6W:

import utime as time
import network
from urandom import randint
import machine

# Access Point
def make_ap():
    print("Access Point...")
    ap = network.WLAN(network.AP_IF)
    ap.config(essid='MyPyboard:{:04d}'.format(randint(1, 10000)))
    ap.active(True)

    while not ap.active():
        time.sleep(0.1)

    print("  AP_IF: {!r}".format(ap.ifconfig()))
    return ap

# ----- Mainline
print('machine.reset_cause()', machine.reset_cause())
ap = make_ap()  # network.WLAN in AP_IF mode
while True:
    time.sleep(1)
    print('isconnected()', ap.isconnected())

I get the output:

MicroPython v1.13-274-g49dd9ba1a on 2021-01-19; PYBD-SF6W with STM32F767IIK
Type "help()" for more information.
>>>
paste mode; Ctrl-C to cancel, Ctrl-D to finish
=== # pasted above code
machine.reset_cause() 1
Access Point...
  AP_IF: ('192.168.4.1', '255.255.255.0', '192.168.4.1', '0.0.0.0')
isconnected() True
isconnected() True
isconnected() True
DHCPS: client connected: MAC=66:bc:1c:1a:af:f1 IP=192.168.4.16
isconnected() True
isconnected() True
isconnected() True

What I would expect is that before the DHCP connection is made, before any stations are connected to the AP, isconnected() should return False.

CANDIDATE · ISSUE

ESP32 WLAN not modify information

closedby fernandomorseopened 2018-09-06updated 2024-08-27

Reference #305

I checked that

from network import WLAN
wlan = WLAN ()
wlan.status ()
wlan.isconnected ()
wlan.isconfig ()

result:

1010
True
('10 .1.2.141 ',' 255.255.255.0 ', '10 .1.2.1', '10 .1.2.1 ')

turn off my router

result:

1010
True
('0.0.0.0', '0.0.0.0', '0.0.0.0', '10 .1.2.1 ')
status() e isconnected() not changed.

thanks

2 comments
tlvlp · 2019-03-10

Hi, this problem has been resolved recently in the latest official MicroPython releases.
https://github.com/micropython/micropython/commit/21f9329d5d69516064f0ad77af311ac31a6dd009

jonnor · 2024-08-25

Issue has been fixed 5 years ago.

Keyboard

j / / n
next pair
k / / p
previous pair
1 / / h
show query pane
2 / / l
show candidate pane
c
copy suggested comment
r
toggle reasoning
g i
go to index
?
show this help
esc
close overlays

press ? or esc to close

copied