2021-06-23 02:13:48 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2021-06-23 16:30:27 +02:00
|
|
|
|
2021-06-23 17:01:47 +02:00
|
|
|
<head>
|
|
|
|
<title>ESP8266 Treppenlicht</title>
|
|
|
|
<!-- main style sheet -->
|
|
|
|
<link href="/favicon.png" rel="icon" type="image/png" sizes="10x10">
|
|
|
|
<link href="/style.css" rel="stylesheet" type="text/css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="kopfzeile" style="text-align: center;">
|
|
|
|
<b>Treppenlicht</b>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ueberschrift">
|
2021-06-23 16:30:27 +02:00
|
|
|
<center>Helligkeit</center>
|
2021-06-23 17:01:47 +02:00
|
|
|
<div class="slider">
|
|
|
|
<label id="label_pwm">
|
|
|
|
</label>
|
|
|
|
<input type="range" class="testregler" min="0" max="100">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="ueberschrift">
|
|
|
|
<center>Helligkeit bei Dunkelheit</center>
|
|
|
|
<div class="slider">
|
|
|
|
<label id="label_geschwindigkeit">
|
|
|
|
</label>
|
|
|
|
<input type="range" class="testregler" min="0" max="100">
|
2021-06-23 16:30:27 +02:00
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="ueberschrift">
|
2021-06-23 16:30:27 +02:00
|
|
|
<center>Laufgeschwindigkeit</center>
|
2021-06-23 17:01:47 +02:00
|
|
|
<div class="slider">
|
|
|
|
<label id="label_geschwindigkeit">
|
|
|
|
</label>
|
|
|
|
<input type="range" class="testregler" min="0" max="100">
|
2021-06-23 02:13:48 +02:00
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="ueberschrift">
|
|
|
|
<center>Licht-An-Zeit</center>
|
|
|
|
<div class="slider">
|
|
|
|
<label id="label_geschwindigkeit">
|
|
|
|
</label>
|
|
|
|
<input type="range" class="testregler" min="0" max="100">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
2021-06-23 02:13:48 +02:00
|
|
|
|
2021-06-23 17:01:47 +02:00
|
|
|
<script src="/input.js"></script>
|
2021-06-23 02:13:48 +02:00
|
|
|
|
2021-06-23 17:01:47 +02:00
|
|
|
</html>
|