You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using the example AP_SimpleWebServer, and i can connect one client, but not two.
After adding the line in setup(), WiFi.setPins(8, 7, 4, 2); code runs and I can connect my Android phone to this web server and point my phones Chrome browser to 196.168.1.1 and the web page generated by the server displays correctly.
However I'm trying to connect a second phone to the web server, and the phone fails to make the connection.
the comment at the code "clients" indicates more than one can connect
WiFiClient client = server.available(); // listen for incoming clients
Anyone get this to work?
The text was updated successfully, but these errors were encountered:
I know your question is months old at this stage and you've probably already found your answer - but the WINC1500 only supports 1 client in AP mode. If you want more, you'll have to look at different hardware. I suggest the ESP8266 or ESP32 which support up to 4 clients in AP mode.
I'm using the example AP_SimpleWebServer, and i can connect one client, but not two.
After adding the line in setup(), WiFi.setPins(8, 7, 4, 2); code runs and I can connect my Android phone to this web server and point my phones Chrome browser to 196.168.1.1 and the web page generated by the server displays correctly.
However I'm trying to connect a second phone to the web server, and the phone fails to make the connection.
the comment at the code "clients" indicates more than one can connect
WiFiClient client = server.available(); // listen for incoming clients
Anyone get this to work?
The text was updated successfully, but these errors were encountered: