-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
75 lines (54 loc) · 2.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Robonomics ESP Installer</title>
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/simplebar.css" />
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<section class="app">
<div class="container">
<div class="top-wrapper">
<div class="msg invisible" id="customBar" data-simplebar data-simplebar-auto-hide="false" data-simplebar-scrollbar-max-size="70">
<esp-web-install-button class="invisible">
<span slot="unsupported">This browser doesn't support installing things on ESP devices. <span class="bottom-line">Please use Google Chrome or Microsoft Edge desktop version.</span> </span>
</esp-web-install-button>
<p class="description"></p>
</div>
<div class="select-wrapper">
<select name="firmware" required>
<option value="" disabled selected>Select Firmware</option>
<option value="IR-remote_en">IR remote</option>
<option value="energy-monitor_en">Energy Monitor</option>
<option value="SWS-1G-E-11-23">SWS-1G-E-11-23</option>
<option value="SWS-2G-E-11-23">SWS-2G-E-11-23</option>
<option value="airrohr-firmware_en">airrohr-firmware_en</option>
<option value="airrohr-firmware_ru">airrohr-firmware_ru</option>
</select>
<select name="chip" required>
<option class="placeholder" value="" disabled selected>Select chip</option>
</select>
<button disabeld class="btn btn-unsupported">Connect</button>
<esp-web-install-button>
<button class="btn" slot="activate">Connect</button>
</esp-web-install-button>
</div>
</div>
<div class="bottom-wrapper">
<h1>
<span>Robonomics</span>
ESP Installer
</h1>
<a target="_blank" href="https://github.com/airalab">Documentation & code</a>
</div>
</div>
</section>
<script src="libs/simplebar.min.js"></script>
<script src="js/main.js"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/web/install-button.js?module"></script>
</body>
</html>