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.

input.js 303B

12345678
  1. var slider = document.getElementById("range1");
  2. var output = document.getElementById("l_pwm");
  3. output.innerHTML = slider.value; // Display the default slider value
  4. // Update the current slider value (each time you drag the slider handle)
  5. slider.oninput = function() {
  6. output.innerHTML = this.value;
  7. }