-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (33 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
40 lines (33 loc) · 1.16 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
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>tumult v1.1.0</title>
<link rel="stylesheet" href="index.css">
<script type="module" src="index.js"></script>
<h1>tumult v1.1.0</h1>
<h2>by nycki, 2024</h2>
<p>this is a cassette modem. it modulates and demodulates data to audio using the system microphone and speakers. plug in a recording device like a cassette player!</p>
<p>current status: can transmit and receive raw text in KCS format.</p>
<p>View the code and design notes <a href="https://github.com/nycki93/cassette-modem">here!</a></p>
<h2>⚠ CAUTION: HARSH NOISE ⚠</h2>
<h2>transmit</h2>
<div>
<button id="tx-start">start</button>
<button id="tx-stop">stop</button>
</div>
<textarea id="tx-outgoing"></textarea>
<textarea id="tx-echo"></textarea>
<h2>receive</h2>
<div>
<button id="rx-start">start</button>
<button id="rx-stop">stop</button>
<button id="rx-clear">clear</button>
<label>
input device
<select id="rx-select">
<option value="default">default</option>
</select>
</label>
<button id="rx-refresh-options">refresh options</button>
</div>
<textarea id="rx-incoming"></textarea>