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.
12345678 |
- var slider = document.getElementById("range1");
- var output = document.getElementById("l_pwm");
- output.innerHTML = slider.value; // Display the default slider value
-
- // Update the current slider value (each time you drag the slider handle)
- slider.oninput = function() {
- output.innerHTML = this.value;
- }
|