aboutsummaryrefslogtreecommitdiffstats
path: root/web/index.html
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2024-03-09 00:12:36 +0000
committers-ol <s+removethis@s-ol.nu>2024-03-09 00:12:36 +0000
commitf9dd9fda0d0c6ba501c7e847fc07fbdd68855ab5 (patch)
tree00f04b16eae0aa6730aaf22d4e23259f60fbc1b6 /web/index.html
parentsimulator: implement direct control commands/loop (diff)
downloadt937-serial-f9dd9fda0d0c6ba501c7e847fc07fbdd68855ab5.tar.gz
t937-serial-f9dd9fda0d0c6ba501c7e847fc07fbdd68855ab5.zip
web: add manual control
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
index 286d42b..9e79aa0 100644
--- a/web/index.html
+++ b/web/index.html
@@ -4,6 +4,29 @@
<title>T-937/M Reflow Oven</title>
</head>
<body>
+ <nav>
+ <label id="status"></label>
+ </nav>
+ <aside>
+ <section>
+ <h1>device</h1>
+ <button id="connect">connect</button>
+ <button id="disconnect">disconnect</button>
+ </section>
+ <section>
+ <h1>manual control</h1>
+ <div>
+ <label for="heat">heat</label>
+ <input type="range" min="0" max="255" id="heat" value="0" />
+ <input type="checkbox" id="heat_mode" />
+ </div>
+ <div>
+ <label for="cool">cool</label>
+ <input type="range" min="0" max="255" id="cool" value="0" />
+ <input type="checkbox" id="cool_mode" />
+ </div>
+ </section>
+ </aside>
<script type="module" src="main.js" ></script>
</body>
</html>