add deprecated warning for loop in async mode

fix sync mode
This commit is contained in:
Markus Sattler
2016-01-23 18:41:45 +01:00
parent 5c2c257526
commit 790a922d5a
3 changed files with 10 additions and 3 deletions

View File

@ -98,15 +98,15 @@ void WebSocketsServer::begin(void) {
DEBUG_WEBSOCKETS("[WS-Server] Server Started.\n");
}
#if (WEBSOCKETS_NETWORK_TYPE != NETWORK_ESP8266_ASYNC)
/**
* called in arduino loop
*/
void WebSocketsServer::loop(void) {
#if (WEBSOCKETS_NETWORK_TYPE != NETWORK_ESP8266_ASYNC)
handleNewClients();
handleClientData();
#endif
}
#endif
/**
* set callback function