aboutsummaryrefslogtreecommitdiffstats
path: root/web/index.html
diff options
context:
space:
mode:
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>