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-24 11:34:05 +02:00
|
|
|
Helligkeit
|
|
|
|
<!--<label id="label_pwm">
|
|
|
|
</label>-->
|
|
|
|
<div class="slider">
|
|
|
|
<input type="range" class="regler" value="50" min="1" max="100"
|
|
|
|
oninput="this.nextElementSibling.value = this.value">
|
2021-06-24 13:08:28 +02:00
|
|
|
|
2021-06-24 11:34:05 +02:00
|
|
|
<output>50</output>
|
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</div>
|
|
|
|
<div class="ueberschrift">
|
2021-06-24 11:34:05 +02:00
|
|
|
Helligkeit bei Dunkelheit
|
2021-06-24 13:08:28 +02:00
|
|
|
<!--<label id="label_pwm_dark">
|
2021-06-24 11:34:05 +02:00
|
|
|
</label>-->
|
|
|
|
<div class="slider">
|
|
|
|
<input type="range" class="regler" value="50" min="1" max="100"
|
|
|
|
oninput="this.nextElementSibling.value = this.value">
|
|
|
|
<output>50</output>
|
2021-06-23 16:30:27 +02:00
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</div>
|
2021-06-24 11:34:05 +02:00
|
|
|
|
|
|
|
<div class="ueberschrift">
|
|
|
|
Laufgeschwindigkeit
|
|
|
|
<!--<label id="label_geschwindigkeit">
|
|
|
|
</label>-->
|
|
|
|
<div class="slider">
|
|
|
|
<input type="range" class="regler" value="50" min="1" max="100"
|
|
|
|
oninput="this.nextElementSibling.value = this.value">
|
|
|
|
<output>50</output>
|
|
|
|
</div>
|
2021-06-23 02:13:48 +02:00
|
|
|
</div>
|
2021-06-24 11:34:05 +02:00
|
|
|
|
|
|
|
<div class="ueberschrift">
|
|
|
|
Licht-An-Zeit
|
2021-06-24 13:08:28 +02:00
|
|
|
<!-- <label id="label_time">
|
2021-06-24 11:34:05 +02:00
|
|
|
</label>-->
|
|
|
|
<div class="slider">
|
|
|
|
<input type="range" class="regler" value="50" min="1" max="100"
|
|
|
|
oninput="this.nextElementSibling.value = this.value">
|
|
|
|
<output>50</output>
|
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</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>
|