Skip to content

Commit cf54518

Browse files
committed
disable debug
1 parent 2798232 commit cf54518

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/webSocket.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
var connection = new WebSocket('ws://10.11.2.1:81/test', ['esp8266']);
66

77
connection.onopen = function () {
8-
connection.send('Message from Browser to ESP8266 yay its Working!!');
8+
connection.send('Message from Browser to ESP8266 yay its Working!! ' + new Date());
99
connection.send('ping');
1010
};
1111

@@ -18,7 +18,7 @@
1818
};
1919

2020
setInterval(function() {
21-
connection.send('Message from Browser to ESP8266 yay its Working!!');
21+
connection.send('Message from Browser to ESP8266 yay its Working!! ' + new Date());
2222
}, 10000);
2323

2424
</script>

0 commit comments

Comments
 (0)