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>
|
|
|
|
<link href="/favicon.png" rel="icon" type="image/png" sizes="10x10">
|
|
|
|
<link href="/style.css" rel="stylesheet" type="text/css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2021-07-05 18:15:57 +02:00
|
|
|
<div class="topbar">Treppenlicht</div>
|
|
|
|
|
|
|
|
<div class="param_block">
|
|
|
|
Active Brightness: <output id="out_act_pwm" class="val_range">50</output> %
|
|
|
|
<div class="slider">
|
2021-07-05 19:51:55 +02:00
|
|
|
<input type="range" class="regler" id="range_act_pwm" min="0" max="100" value="50">
|
2021-07-05 18:15:57 +02:00
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</div>
|
|
|
|
|
2021-07-05 18:15:57 +02:00
|
|
|
|
|
|
|
<div class="param_block">
|
|
|
|
Idle Brightness: <output id="out_idl_pwm" class="val_range">50</output> %
|
|
|
|
<div class="slider">
|
2021-07-05 19:51:55 +02:00
|
|
|
<input type="range" class="regler" id="range_idl_pwm" min="0" max="100" value="50">
|
2021-07-05 18:15:57 +02:00
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
</div>
|
2021-06-24 11:34:05 +02:00
|
|
|
|
2021-07-05 18:15:57 +02:00
|
|
|
<div class="param_block">
|
|
|
|
Time per stair: <output id="out_tim_sta" class="val_range">50</output> %
|
|
|
|
|
|
|
|
<div class="slider">
|
2021-07-05 19:51:55 +02:00
|
|
|
<input type="range" class="regler" id="range_tim_sta" min="0" max="100" value="50">
|
2021-07-05 18:15:57 +02:00
|
|
|
</div>
|
2021-06-24 13:41:20 +02:00
|
|
|
</div>
|
2021-06-24 11:34:05 +02:00
|
|
|
|
2021-07-05 18:15:57 +02:00
|
|
|
<div class="param_block">
|
|
|
|
On Time: <output id="out_tim_on" class="val_range">50</output> %
|
|
|
|
<div class="slider">
|
2021-07-05 19:51:55 +02:00
|
|
|
<input type="range" class="regler" id="range_tim_on" min="0" max="100" value="50">
|
2021-07-05 18:15:57 +02:00
|
|
|
</div>
|
|
|
|
|
2021-06-24 13:41:20 +02:00
|
|
|
</div>
|
2021-06-23 17:01:47 +02:00
|
|
|
|
2021-06-26 10:49:29 +02:00
|
|
|
<div class="terminal">
|
|
|
|
<input type="button" id="clear_term" value="clear" onclick="clearTerminal();">
|
2021-06-30 20:33:16 +02:00
|
|
|
<input type="checkbox" id="scroll" name="scroll" value="scroll" checked>
|
2021-06-26 10:49:29 +02:00
|
|
|
<label for="scroll"> autoscroll </label>
|
2021-06-30 20:33:16 +02:00
|
|
|
<textarea id="term">waiting for log messages ... </textarea>
|
2021-06-26 10:49:29 +02:00
|
|
|
</div>
|
|
|
|
|
2021-06-23 17:01:47 +02:00
|
|
|
</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>
|