system-bus-radio/In Javascript/airgap.html

65 lines
2.1 KiB
HTML
Raw Normal View History

2016-03-04 18:41:03 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>System Bus Radio</title>
2016-11-22 19:07:00 +01:00
<meta name="description" content="System Bus Radio JS Port: Play AM radio waves from a computer without an AM radio using only your web browser.">
2016-03-04 18:41:03 +01:00
<link rel="stylesheet" href="main.css">
<script src="./airgap.js"></script>
2016-03-04 18:41:03 +01:00
</head>
<body>
<div class="header">
System Bus Radio
</div>
<div class="content">
</br>
<input type="button" value="Play Song" onclick="start()">
<input type="button" value="Stop Song" onclick="end()"></br></br>
<textarea id="logs" style="width:70%;min-height:100px">Tested with Chrome at 1560Khz</textarea>
2016-12-01 03:46:38 +01:00
<p style="font-size:14px">Feel free to edit the code below or copy and paste any <em>valid</em> code.<br>Column one is time in <i>milliseconds</i>, and column two is <i>frequency</i>.<br>If you are opening this file locally (file://) Chrome will give you errors. Try using <code>php -S localhost:8000</code> or similar for a quick web server.</p>
<textarea id="tones" style="width:70%;min-height:200px">
400 2673
400 2349
400 2093
400 2349
400 2673
400 0
400 2673
400 0
790 2673
400 2349
400 2349
400 0
790 2349
400 2673
400 3136
400 0
790 3136
400 2673
400 2349
400 2093
400 2349
400 2673
400 0
400 2673
400 0
400 2673
400 0
400 2673
400 2349
400 0
400 2349
400 2673
400 2349
790 2093</textarea>
2016-10-27 00:52:17 +02:00
<div style="font-size:14px">Ported by <a href="https://github.com/quanyang">Yeo Quan Yang</a> & maintained by <a href="https://github.com/rocketinventor">Elliot Gerchak</a>.
<br>
2016-10-27 01:18:18 +02:00
Original machine code by <a href="https://github.com/fulldecent">William Entriken</a>.</div><br/>
2016-03-05 00:22:03 +01:00
<div style="font-size:14px">Project site at <a href="https://github.com/fulldecent/system-bus-radio">https://github.com/fulldecent/system-bus-radio</a></div><br/>
<div style="font-size:14px">List of computers that work and what frequency to try at <a href="https://github.com/fulldecent/system-bus-radio/blob/master/TEST-DATA.tsv">https://github.com/fulldecent/system-bus-radio/blob/master/TEST-DATA.tsv</a></div>
</div>
2016-03-04 18:41:03 +01:00
</body>
2016-03-05 00:22:03 +01:00
</html>