esptool-js-openDTU/index.html
Amey Inamdar a6c417bb40 Initial commit for esptool-js
* Chip detection and read MAC address works
* Support tested for ESP32, ESP32-S2 and ESP32-C3

Signed-off-by: Amey Inamdar <amey@espressif.com>
2021-04-18 23:16:46 +05:30

26 lines
816 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ESP Tool</title>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="node_modules/xterm/css/xterm.css" />
<link
href="https://fonts.googleapis.com/css?family=Orbitron"
rel="stylesheet"
/>
<link rel="icon" href="favicon.ico" />
<script src="node_modules/xterm/lib/xterm.js"></script>
</head>
<body>
<h1>ESP Tool</h1>
<input class="button" type="button" id="connectButton" value="Connect" />
<input class="button" type="button" id="disconnectButton" value="Disconnect" />
<hr/>
<br/>
<div id="terminal"></div>
<script src="index.js" type="module"></script>
</body>
</html>