-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb_GUI.html
More file actions
36 lines (27 loc) · 1.09 KB
/
Copy pathweb_GUI.html
File metadata and controls
36 lines (27 loc) · 1.09 KB
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
<!--
PyWebsockets 04.21.2024
_________________________
Web_GUI.html
Written by Warren
HTML interface to connect to the websocket server: (ie. python.exe .\Connect.py)
-->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Local WebSocket Server</title>
<script src="io_SocketClient.js" charset="utf-8"></script>
</head>
<body>
<div id="connectButtons">
<input id="pyConnect" type="button" value="Connect" />
<input id="pyDisconnect" class="w3-bar-item w3-black w3-hover-red" type="button" value="Disconnect" />
</div><br>
Data to Send <input id="pyOutput" type="text" value="X Y Z" />
<input id="pySend" type="button" value="Send Data" />
<br><br>
Data Received <div id="pyInput" style="width:500px; height:100px;"></div> <br><br>
<br><br><br><br><br>
<div id="pyStatus"></div>
<script src="js_interface.js" charset="utf-8"></script>
</body>
</html>