27 lines
777 B
HTML
27 lines
777 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Data Over Audio</title>
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
<script src="index.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Data Over Audio</h1>
|
|
<div class="panels">
|
|
<div>
|
|
<input type="text" id="text-to-send">
|
|
<button id="send-button">Send</button>
|
|
<h2>Sent</h2>
|
|
<textarea id="sent-data" rows="10" cols="40"></textarea><br />
|
|
</div>
|
|
<div>
|
|
<label>
|
|
<input type="checkbox" id="is-listening-checkbox">Listening
|
|
</label>
|
|
<h2>Received</h2>
|
|
<textarea id="received-data" rows="10" cols="40"></textarea><br />
|
|
<canvas id="received-graph"></canvas>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |