22 lines
664 B
HTML
22 lines
664 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="zh-CN">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>USB Monitor Controller</title>
|
||
|
|
<link rel="stylesheet" href="./assets/main.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="container">
|
||
|
|
<button id="connect-button">连接设备</button>
|
||
|
|
<button id="disconnect-button">断开连接</button>
|
||
|
|
<button id="start-button">开始发送</button>
|
||
|
|
<button id="stop-button">停止发送</button>
|
||
|
|
</div>
|
||
|
|
<div class="canvas-container">
|
||
|
|
<canvas id="monitor-canvas" width="350" height="172"></canvas>
|
||
|
|
</div>
|
||
|
|
<script src="./assets/main.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|