aboutsummaryrefslogtreecommitdiffstats
path: root/web/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html38
1 files changed, 23 insertions, 15 deletions
diff --git a/web/index.html b/web/index.html
index 5e8bd6a..34215ff 100644
--- a/web/index.html
+++ b/web/index.html
@@ -24,15 +24,32 @@
<label id="status">(disconnected)</label>
<button id="connect">connect</button>
</div>
+ <h2>temperatures</h2>
<div>
- <label>chamber temp</label>
+ <label>chamber</label>
<label id="temps_chamber">-</label>
</div>
<div>
- <label>controller temp</label>
+ <label>controller</label>
<label id="temps_controller">-</label>
</div>
<div>
+ <label>export traces</label>
+ <button id="export" disabled>download csv</button>
+ </div>
+ <h2>manual controls</h2>
+ <div>
+ <label for="heat">heat</label>
+ <input id="heat" class="grow" type="range" min="0" max="255" value="0" />
+ <input id="heat_mode" type="checkbox" />
+ </div>
+ <div>
+ <label for="cool">cool</label>
+ <input id="cool" class="grow" type="range" min="0" max="255" value="0" />
+ <input id="cool_mode" type="checkbox" />
+ </div>
+ <h2>stored profiles</h2>
+ <div>
<select id="profile" value="" class="grow">
<option value="">none / manual</option>
<option value="0">profile 1</option>
@@ -51,19 +68,6 @@
<button id="write" class="grow" disabled>write</button>
</div>
</section>
- <section>
- <h1>manual control</h1>
- <div>
- <label for="heat">heat</label>
- <input id="heat" class="grow" type="range" min="0" max="255" value="0" />
- <input id="heat_mode" type="checkbox" />
- </div>
- <div>
- <label for="cool">cool</label>
- <input id="cool" class="grow" type="range" min="0" max="255" value="0" />
- <input id="cool_mode" type="checkbox" />
- </div>
- </section>
<section class="grow">
<h1>
<span class="grow">reflow profile</span>
@@ -100,6 +104,10 @@
<option value="" class="new">(new paste)</option>
</select>
</section>
+ <section>
+ help, information and source code:
+ <a href="https://git.s-ol.nu/t937-serial">git.s-ol.nu/t937-serial</a>
+ </section>
</aside>
<svg id="plot" />
<script type="module" src="main.js" ></script>