We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2798232 commit cf54518Copy full SHA for cf54518
tests/webSocket.html
@@ -5,7 +5,7 @@
5
var connection = new WebSocket('ws://10.11.2.1:81/test', ['esp8266']);
6
7
connection.onopen = function () {
8
- connection.send('Message from Browser to ESP8266 yay its Working!!');
+ connection.send('Message from Browser to ESP8266 yay its Working!! ' + new Date());
9
connection.send('ping');
10
};
11
@@ -18,7 +18,7 @@
18
19
20
setInterval(function() {
21
22
}, 10000);
23
24
</script>
0 commit comments