2022-06-29 19:31:55 -04:00
|
|
|
<!DOCTYPE html>
|
2022-07-08 19:57:19 -04:00
|
|
|
<html style="height: 100%;">
|
2022-06-29 19:31:55 -04:00
|
|
|
<head>
|
|
|
|
<title>Simple client</title>
|
2022-07-12 17:12:39 -04:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2022-06-29 19:31:55 -04:00
|
|
|
<script src="/serial.js" defer=true></script>
|
2022-07-28 07:03:22 -04:00
|
|
|
<link rel="stylesheet" href="/style.css">
|
2022-08-02 11:43:40 -04:00
|
|
|
<link rel="stylesheet" href="http://circuitpython.org/assets/css/webworkflow-8.css">
|
2022-06-29 19:31:55 -04:00
|
|
|
</head>
|
2022-07-08 19:57:19 -04:00
|
|
|
<body style="flex-direction: column; display: flex; height: 100%; width: 100%; margin: 0; font-size: 1rem;">
|
2022-07-12 17:12:39 -04:00
|
|
|
<div style="flex: auto; display: flex; overflow: auto; flex-direction: column;">
|
2022-07-08 19:57:19 -04:00
|
|
|
<pre id="log" style="margin:0; margin-top: auto;"></pre>
|
2022-07-12 17:12:39 -04:00
|
|
|
<span style="height: 1px;"></span>
|
2022-07-08 19:57:19 -04:00
|
|
|
</div>
|
|
|
|
<div id="controls" style="flex: none; display: flex;">
|
|
|
|
<fieldset style="display: inline-block; padding: 0;">
|
|
|
|
<legend>Ctrl</legend>
|
|
|
|
<button id="c">C</button>
|
|
|
|
<button id="d">D</button>
|
|
|
|
</fieldset>
|
|
|
|
<textarea id="input" rows="1" spellcheck="false" wrap="off" style="resize: none; flex: auto; font-size: 1rem;" autocapitalize="none" autocomplete="off" autocorrect="off"></textarea>
|
|
|
|
<button onclick="onSubmit(); return false;">Send</button>
|
|
|
|
</div>
|
2022-06-29 19:31:55 -04:00
|
|
|
</body>
|
|
|
|
</html>
|