Nano 33 IOT Access Point with no password

I am trying to use the WiFiNINA AP_SimpleWebServer example - it states in the header that it is for creating an access point with no password. But the sketch fails unless there is a ssid and password at least 8 characters long - as explained here

Is it possible to create an access point with no password?

OK, well lots of help here...figured it out myself so I thought I would pass on the info - simply leave the password part out of the initialization;

status = WiFi.beginAP(ssid);

or

WiFi.softAP(ssid);

depending on which library you are using.

I can understand why, you aparently did not read the guidelines otherwise you would given us the information we needed to answer your question. A simple thing like posting your code, which where the problem was, would probably have gotten you an answer in short order.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.