code style

This commit is contained in:
Links
2018-05-12 11:34:12 +02:00
parent a796079b0c
commit 9ce044e550

View File

@ -20,7 +20,6 @@
#define USE_SERIAL Serial #define USE_SERIAL Serial
ESP8266WiFiMulti WiFiMulti; ESP8266WiFiMulti WiFiMulti;
ESP8266WebServer server(80); ESP8266WebServer server(80);
@ -127,7 +126,7 @@ void loop() {
counter++; counter++;
bool ping = (counter % 2); bool ping = (counter % 2);
int i = webSocket.connectedClients(ping); int i = webSocket.connectedClients(ping);
USE_SERIAL.printf("%d Connected websocket clients ping: %d", i, ping); USE_SERIAL.printf("%d Connected websocket clients ping: %d\n", i, ping);
last_10sec = millis(); last_10sec = millis();
} }
} }