updated libraries for SDK3

This commit is contained in:
richonguzman
2024-09-23 14:31:45 -03:00
parent c110b41b99
commit 8b790ef656
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ namespace TNC_Utils {
}
void checkNewClients() {
WiFiClient new_client = tncServer.available();
WiFiClient new_client = tncServer.accept();
if (new_client.connected()) {
for (int i = 0; i < MAX_CLIENTS; i++) {
WiFiClient* client = clients[i];