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.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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="16x16">
  7. <link href="/style.css" rel="stylesheet" type="text/css">
  8. </head>
  9. <body>
  10. <div class="topbar">
  11. ESP8266 Treppenlicht Controller
  12. </div>
  13. <div class="control">
  14. <div class="brightness">
  15. </div>
  16. <div class="onoff">
  17. toggle all
  18. <label id="l_onoff"></label>
  19. <label class="switch">
  20. <input type="checkbox">
  21. <span class="slider round"></span>
  22. </label>
  23. </div>
  24. <div class="pwm">
  25. <label id="label_pwm"></label>
  26. <input type="range" min="1" max="100" value="50" class="rangeslider" id="range1">
  27. </div>
  28. <div class="timer">
  29. <label id="label_timer"></label>
  30. <input type="range" min="1" max="100" value="50" class="rangeslider" id="timer_range">
  31. </div>
  32. </div>
  33. </body>
  34. <script src="/input.js"></script>
  35. </html>