I'm a master student from The Technical University of Denmark currently doing my thesis and as a part of it carrying out a large user test in office environments - however I have experienced some problems when connecting multiple Adafruit Feather Huzzah (ESP-12) modules to the same router? Seems like it just suddenly stops working
I am connecting up to 10 Adafruit Feather Huzzah units to one router (http://www.dlink.com/uk/en/home-solutions/connect/routers/dwr-921-4g-lte-router). The router uses a sim-card to connect to either 3G or 4G. I do send a small text package every 1.5 minutes from each of the Adafruit Feather Huzzah units. Altogether I have 25 units in the same room connecting to 3 different routers. All routers use the same channel (12) and have different SSID.
I use the ESP8266WiFi library and the following code to connect:
Serial.printf("Connecting to %s ", ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.print("WiFi connected, IP address: "); Serial.println(WiFi.localIP());
Have anyone in here experienced something similar or maybe I'm making some obvious mistake you can point out
Best regards Mads