-
Notifications
You must be signed in to change notification settings - Fork 0
/
led-vorwiderstand.html
53 lines (49 loc) · 1.59 KB
/
led-vorwiderstand.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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>LED Vorwiderstandsrechner :: Elektronik Tools</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="icon" type="image/png" sizes="64x64" href="assets/img/favicon.png">
<!--[if IE]><script>document.charset="UTF-8";</script><![endif]-->
</head>
<body>
<header>
<h1>
<a href="index.html">Elektronik Tools</a>
</h1>
<h2>LED Vorwiderstandsrechner</h2>
</header>
<main>
<section id="form">
<form id="led">
<span>
<label for="U_ges">U<sub>ges</sub> <i>V</i></label>
<input type="number" name="U_ges" value="5">
</span>
<span>
<label for="U_LED">U<sub>LED</sub> <i>V</i></label>
<input type="number" name="U_LED" value="3.2">
</span>
<span>
<label for="I_LED">I<sub>LED</sub> <i>mA</i></label>
<input type="number" name="I_LED" value="20">
</span>
<span>
<label for="R_VorLED">R<sub>VorLED</sub> <i>Ω</i></label>
<input type="number" name="R_VorLED" value="0" class="ergebnis">
</span>
</form>
</section>
</main>
<footer>
<p>
© 2018,2019 <a href="https://malte70.de" rel="me nofollow">malte70</a><br>
© 2018,2019 <a href="https://tmkng.de" rel="me nofollow">tmkng</a><br>
<a href="readme.html">Read Me</a> :: <a href="https://github.com/malte70/elektronik-tools">Github-Projekt</a>
</p>
</footer>
<script type="text/javascript" src="assets/js/led-vorwiderstand.js"></script>
</body>
</html>