-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firework Activator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="controls-container">
<div class="control-group">
<span class="control-label">Voltage</span>
<div class ="slider-container">
<input type="range" id="voltageSlider" min="0.5" max="5.0" step="0.1" value="5.0">
<input type="number" id="VoltageInput" value="5.0">
<span class="unit">V</span>
</div>
</div>
<div class="control-group">
<span class="control-label">Real-time Current</span>
<div class="slider-container">
<span id="currentValue">0</span>
<span class="unit">mA</span>
</div>
</div>
<div class="control-group">
<span class="control-label">Ignition Duration</span>
<div class="slider-container">
<input type="range" id="durationSlider" min="0.5" max="10" step="0.1" value="3.0">
<input type="number" id="durationInput" value="3.0">
<span class="unit">s</span>
</div>
</div>
<div class="control-group">
<span class="control-label">Status</span>
<div class="status-indicator">
<div id="statusCircle" class="status-circle"></div>
<span id="statusText" class="status-text">Armed</span>
</div>
</div>
</div>
<div class="container">
<button id="activateButton">Activate</button>
</div>
<script src="script.js"></script>
</body>
</html>