forked from slivero/WebSocket-Arduino
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebsocket.html
44 lines (41 loc) · 991 Bytes
/
websocket.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Ben Socket</title>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'></script>
<script>
$(document).ready(function() {
function debug(str) {
$("#debug").append("<p>"+str+"</p>");
};
// WebSocket needs to be set to IP of arduino.
try{
ws = new WebSocket("ws://192.168.4.2:8080/");
ws.onmessage = function(evt) {
$("#msg").append("<p>"+evt.data+"</p>");
};
ws.onclose = function() {
debug("socket closed");
};
ws.onopen = function() {
debug("connected...");
ws.send("Hello.\n");
};
} catch(exception){
message('<p>Error'+exception);
}
});
$(document).mousedown(function() {
ws.send("0");
});
$(document).mouseup(function() {
ws.send("1");
});
</script>
</head>
<body>
<div id="debug"></div>
<div id="msg"></div>
</body>
</html>