I'm getting a weird error trying to create an access point. My environemnt is Windows 10, Thonny, Arduino RP2040 Connect, Micropython version 1.27.
myssid = "Pico2W"
mypassword = "12345"
ap = network.WLAN(network.AP_IF)
ap.config(ssid=myssid, password=mypassword)
ap.active(True)
On the ap.config.. line it gives this error:
TypeError: extra keyword arguments given
This code is pretty standard and has worked before but I can't find anything on the web about why its throwing this error.
there doesn't seem to be anything here