You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.9 KiB
HTML
82 lines
2.9 KiB
HTML
|
6 years ago
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<title>Adafruit ESPTool</title>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<script>
|
||
|
|
// Redirect to HTTPS if HTTP is requested.
|
||
|
|
if (window.location.protocol === 'http:') {
|
||
|
|
window.location.href = 'https:' + window.location.href.substring(5);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<!-- import the web page's stylesheets along with the themes -->
|
||
|
|
<link rel="stylesheet" href="https://use.typekit.net/qtk5kiq.css">
|
||
|
|
<link rel="stylesheet" href="/css/style.css">
|
||
|
|
<link rel="stylesheet" href="/css/light.css" id="light" class="alternate" disabled>
|
||
|
|
<link rel="stylesheet" href="/css/dark.css" id="dark" class="alternate" disabled>
|
||
|
|
|
||
|
|
<!-- import the webpage's javascript file -->
|
||
|
|
<script src="/js/script.js" defer></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<header class="header">
|
||
|
|
<div class="left">
|
||
|
|
<img src="https://cdn.glitch.com/32d343f2-d0c9-4c18-bd6f-e22516f696a5%2Fadafruit-logo.svg" class="Adafruit-Logo">
|
||
|
|
</div>
|
||
|
|
<div class="right">
|
||
|
|
<select id="baudRate"></select>
|
||
|
|
<button id="butConnect" type="button">Connect</button>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
<main class="main">
|
||
|
|
<div id="notSupported" class="notSupported">
|
||
|
|
Sorry, <b>Web Serial</b> is not supported on this device, make sure you're
|
||
|
|
running Chrome 78 or later and have enabled the
|
||
|
|
<code>#enable-experimental-web-platform-features</code> flag in
|
||
|
|
<code>chrome://flags</code>
|
||
|
|
</div>
|
||
|
|
<div class="subheader">
|
||
|
|
<div class="title left">
|
||
|
|
Adafruit ESPTool
|
||
|
|
</div>
|
||
|
|
<div class="right">
|
||
|
|
<label for="darkmode">
|
||
|
|
Dark Mode
|
||
|
|
</label>
|
||
|
|
<div class="onoffswitch">
|
||
|
|
<input type="checkbox" name="darkmode" class="onoffswitch-checkbox" id="darkmode">
|
||
|
|
<label class="onoffswitch-label" for="darkmode">
|
||
|
|
<span class="onoffswitch-inner"></span>
|
||
|
|
<span class="onoffswitch-switch"></span>
|
||
|
|
</label>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div id="log"></div>
|
||
|
|
</main>
|
||
|
|
<footer class="footer">
|
||
|
|
<div class="left">
|
||
|
|
<label for="autoscroll">Autoscroll</label>
|
||
|
|
<div class="onoffswitch">
|
||
|
|
<input type="checkbox" name="autoscroll" class="onoffswitch-checkbox" id="autoscroll">
|
||
|
|
<label class="onoffswitch-label" for="autoscroll">
|
||
|
|
<span class="onoffswitch-inner"></span>
|
||
|
|
<span class="onoffswitch-switch"></span>
|
||
|
|
</label>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="right">
|
||
|
|
<span id="fpsCounter"></span>
|
||
|
|
<button id="butClear" type="button">Clear Text</button>
|
||
|
|
</div>
|
||
|
|
<div class="remix clear">
|
||
|
|
<button>Remix with Glitch</button>
|
||
|
|
</div>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|