ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>ESP8266 Treppenlicht</title>
  5. <!-- main style sheet -->
  6. <link href="/favicon.png" rel="icon" type="image/png" sizes="10x10">
  7. <link href="/style.css" rel="stylesheet" type="text/css">
  8. </head>
  9. <body>
  10. <div class="kopfzeile" style="text-align: center;">
  11. <b>Treppenlicht</b>
  12. </div>
  13. <div class="ueberschrift">
  14. Helligkeit
  15. <!--<label id="label_pwm">
  16. </label>-->
  17. <div class="slider">
  18. <input type="range" class="regler" value="50" min="1" max="100"
  19. oninput="this.nextElementSibling.value = this.value">
  20. <output>50</output>
  21. </div>
  22. </div>
  23. <div class="ueberschrift">
  24. Helligkeit bei Dunkelheit
  25. <!--<label id="label_geschwindigkeit">
  26. </label>-->
  27. <div class="slider">
  28. <input type="range" class="regler" value="50" min="1" max="100"
  29. oninput="this.nextElementSibling.value = this.value">
  30. <output>50</output>
  31. </div>
  32. </div>
  33. <div class="ueberschrift">
  34. Laufgeschwindigkeit
  35. <!--<label id="label_geschwindigkeit">
  36. </label>-->
  37. <div class="slider">
  38. <input type="range" class="regler" value="50" min="1" max="100"
  39. oninput="this.nextElementSibling.value = this.value">
  40. <output>50</output>
  41. </div>
  42. </div>
  43. <div class="ueberschrift">
  44. Licht-An-Zeit
  45. <!-- <label id="label_geschwindigkeit">
  46. </label>-->
  47. <div class="slider">
  48. <input type="range" class="regler" value="50" min="1" max="100"
  49. oninput="this.nextElementSibling.value = this.value">
  50. <output>50</output>
  51. </div>
  52. </div>
  53. </body>
  54. <script src="/input.js"></script>
  55. </html>