From cf54518bc94cd48641020e13c5890c6dfd7809c0 Mon Sep 17 00:00:00 2001 From: Markus Sattler Date: Sat, 23 May 2015 09:57:11 +0200 Subject: [PATCH] disable debug --- tests/webSocket.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/webSocket.html b/tests/webSocket.html index f05d770..65bf0ab 100644 --- a/tests/webSocket.html +++ b/tests/webSocket.html @@ -5,7 +5,7 @@ var connection = new WebSocket('ws://10.11.2.1:81/test', ['esp8266']); connection.onopen = function () { - connection.send('Message from Browser to ESP8266 yay its Working!!'); + connection.send('Message from Browser to ESP8266 yay its Working!! ' + new Date()); connection.send('ping'); }; @@ -18,7 +18,7 @@ connection.onmessage = function (e) { }; setInterval(function() { - connection.send('Message from Browser to ESP8266 yay its Working!!'); + connection.send('Message from Browser to ESP8266 yay its Working!! ' + new Date()); }, 10000);