allow choice of wave forms

This commit is contained in:
Lewis Moten
2024-05-06 23:47:45 -04:00
parent 047902cb1f
commit 027035c97b
2 changed files with 16 additions and 6 deletions

View File

@@ -59,6 +59,12 @@
</div>
<div>
<h2>Configuration</h2>
Wave Form: <select id="wave-form" value="sine">
<option value="sine">Sine Wave</option>
<option value="square">Square Wave</option>
<option value="sawtooth">Sawtooth Wave</option>
<option value="triangle">Triangle Wave</option>
</select><br>
Segment Duration: <input id="bit-duration-text" type="number" min="0" max="1000" value="190">ms<br>
Amplitude Threshold: <input id="amplitude-threshold-text" type="number" min="0" max="100" value="75"><br>
Minimum Frequency: <input id="minimum-frequency" type="number" min="20" max="20000" value="900"><br>