Skip to Content

Dimmer controller – ESP32/8266 web server with slider Arduino code.


In this Dimmer control with the web-server project, we will learn how to build with ESP8266 and ESP32 the slider web-server that will control the dimming voltage level of the dimmer connected to the ESP8266 / ESP32 GPIO pin.

This will be achieved through an HTML slider that we will add to the web-server page. The slider will be moved to set the slider value. In response, this slider value will set the dimmer value.

Also, we use the library WiFiManager allows you to connect your dimmer project based on ESP8266/ESP32 to different Access Points (AP) without having to hard-code and upload new code to your board. Additionally, you can also add custom parameters (variables or MQTT server/port address) and manage multiple SSID connections with the WiFiManager library.

Below you will find 2 code examples. One for 1 channel dimmer and 2nd code for 4 channels dimmer with 4 sliders on the webpage.


1 channel DIMMER CODE

  1. #include <AsyncTCP.h>
  2. #include <RBDdimmer.h> //https://rocketcontroller.com/dimmer-connection-to-microcontroller-and-arduino-library-examples/
  3. #define outputPin 16
  4. #define zerocross 5 // seting of pins
  5. dimmerLamp dimmer(outputPin, zerocross); //initialase port for dimmer for ESP8266, ESP32, Arduino due boards
  6. #if defined(ESP8266)
  7. #include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
  8. #else
  9. #include <WiFi.h> //For ESP32
  10. #endif
  11. #include <ESPAsyncWebServer.h>
  12. #include <ESPAsyncWiFiManager.h> //https://github.com/knolleary/pubsubclient
  13. //gets called when WiFiManager enters configuration mode
  14. void configModeCallback (AsyncWiFiManager *myWiFiManager) {
  15. Serial.println("Entered config mode");
  16. Serial.println(WiFi.softAPIP());
  17. //if you used auto generated SSID, print it
  18. Serial.println(myWiFiManager->getConfigPortalSSID());
  19. }
  20. AsyncWebServer server(80);
  21. DNSServer dns;
  22. String sliderValue = "0";
  23. const char* PARAM_INPUT = "value";
  24. const char index_html[] PROGMEM = R"rawliteral(
  25. <!DOCTYPE HTML><html>
  26. <head>
  27. <meta name="viewport" content="width=device-width, initial-scale=1">
  28. <title>Dimmer ESP Controller</title>
  29. <style>
  30. html {font-family: Arial; display: inline-block; text-align: center;}
  31. h2 {font-size: 2.3rem;}
  32. p {font-size: 1.9rem;}
  33. body {max-width: 400px; margin:0px auto; padding-bottom: 25px;}
  34. .slider { -webkit-appearance: none; margin: 14px; width: 360px; height: 25px; background: #FFD65C;
  35. outline: none; -webkit-transition: .2s; transition: opacity .2s;}
  36. .slider::-webkit-slider-thumb {-webkit-appearance: none; appearance: none; width: 35px; height: 35px; background: #003249; cursor: pointer;}
  37. .slider::-moz-range-thumb { width: 35px; height: 35px; background: #003249; cursor: pointer; }
  38. .button { background-color: #003249; border: none; color: white; padding: 16px 40px;}
  39. </style>
  40. </head>
  41. <body>
  42. <h2>RocketController Dimmer</h2>
  43. <p><span id="textSliderValue">%SLIDERVALUE%</span></p>
  44. <p><input type="range" onchange="updateSliderPWM(this)" id="pwmSlider" min="0" max="100" value="%SLIDERVALUE%" step="1" class="slider"></p>
  45. </br>
  46. <p><a href=/output/on\><button class=\"button\">WiFi RST</button></a></p>
  47. <script>
  48. function updateSliderPWM(element) {
  49. var sliderValue = document.getElementById("pwmSlider").value;
  50. document.getElementById("textSliderValue").innerHTML = sliderValue;
  51. console.log(sliderValue);
  52. var xhr = new XMLHttpRequest();
  53. xhr.open("GET", "/slider?value="+sliderValue, true);
  54. xhr.send();
  55. }
  56. </script>
  57. </body>
  58. </html>
  59. )rawliteral";
  60. // Replaces placeholder with button section in your web page
  61. String processor(const String& var){
  62. //Serial.println(var);
  63. if (var == "SLIDERVALUE"){
  64. return sliderValue;
  65. }
  66. return String();
  67. }
  68. void setup() {
  69. // put your setup code here, to run once:
  70. Serial.begin(115200);
  71. dimmer.begin(NORMAL_MODE, OND);
  72. //WiFiManager. Local intialization. Once its business is done, there is no need to keep it around
  73. AsyncWiFiManager wifiManager(&server,&dns);
  74. //reset settings - for testing
  75. //wifiManager.resetSettings();
  76. //set callback that gets called when connecting to previous WiFi fails, and enters Access Point mode
  77. //wifiManager.setAPCallback(configModeCallback);
  78. //fetches ssid and pass and tries to connect
  79. //and goes into a blocking loop awaiting configuration
  80. if (!wifiManager.autoConnect("WiFi-Dimmer")) {
  81. Serial.println("failed to connect and hit timeout");
  82. //reset and try again, or maybe put it to deep sleep
  83. //ESP.resetSettings();
  84. //ESP.reset();
  85. //ESP.restart();
  86. delay(1000);
  87. }
  88. //if you get here you have connected to the WiFi
  89. Serial.println("connected!");
  90. // Route for root / web page
  91. server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
  92. request->send_P(200, "text/html", index_html, processor);
  93. });
  94. // Send a GET request to <ESP_IP>/slider?value=<inputMessage>
  95. server.on("/slider", HTTP_GET, [] (AsyncWebServerRequest *request) {
  96. String inputMessage;
  97. // GET input1 value on <ESP_IP>/slider?value=<inputMessage>
  98. if (request->hasParam(PARAM_INPUT)) {
  99. inputMessage = request->getParam(PARAM_INPUT)->value();
  100. sliderValue = inputMessage;
  101. dimmer.setPower(sliderValue.toInt()); //DIMMING
  102. }
  103. else {
  104. inputMessage = "No message sent";
  105. }
  106. //Serial.println(inputMessage);
  107. Serial.println(sliderValue);
  108. request->send(200, "text/plain", "OK");
  109. });
  110. // Start server
  111. server.begin();
  112. }
  113. void loop() {
  114. // put your main code here, to run repeatedly:
  115. }


4 channels DIMMER CODE

  1. #include <AsyncTCP.h>
  2. #include <RBDdimmer.h> //https://rocketcontroller.com/dimmer-connection-to-microcontroller-and-arduino-library-examples/
  3. #define outputPin 16
  4. #define zerocross 5 // seting of pins
  5. dimmerLamp dimmer(outputPin, zerocross); //initialase port for dimmer for ESP8266, ESP32, Arduino due boards
  6. #if defined(ESP8266)
  7. #include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
  8. #else
  9. #include <WiFi.h> //for ESP32
  10. #endif
  11. #include <ESPAsyncWebServer.h>
  12. #include <ESPAsyncWiFiManager.h> //https://github.com/knolleary/pubsubclient
  13. //gets called when WiFiManager enters configuration mode
  14. void configModeCallback (AsyncWiFiManager *myWiFiManager) {
  15. Serial.println("Entered config mode");
  16. Serial.println(WiFi.softAPIP());
  17. //if you used auto generated SSID, print it
  18. Serial.println(myWiFiManager->getConfigPortalSSID());
  19. }
  20. AsyncWebServer server(80);
  21. DNSServer dns;
  22. //=====
  23. String sliderValue = "0";
  24. String sliderValue2 = "0";
  25. String sliderValue3 = "0";
  26. String sliderValue4 = "0";
  27. const char* PARAM_INPUT = "value";
  28. const char index_html[] PROGMEM = R"rawliteral(
  29. <!DOCTYPE HTML><html>
  30. <head>
  31. <meta name="viewport" content="width=device-width, initial-scale=1">
  32. <title>Dimmer ESP Controller</title>
  33. <style>
  34. html {font-family: Arial; display: inline-block; text-align: center;}
  35. h2 {font-size: 2.3rem;}
  36. p {font-size: 1.9rem;}
  37. body {max-width: 400px; margin:0px auto; padding-bottom: 25px;}
  38. .slider { -webkit-appearance: none; margin: 14px; width: 360px; height: 25px; background: #FFD65C;
  39. outline: none; -webkit-transition: .2s; transition: opacity .2s;}
  40. .slider::-webkit-slider-thumb {-webkit-appearance: none; appearance: none; width: 35px; height: 35px; background: #003249; cursor: pointer;}
  41. .slider::-moz-range-thumb { width: 35px; height: 35px; background: #003249; cursor: pointer; }
  42. .button { background-color: #003249; border: none; color: white; padding: 16px 40px;}
  43. </style>
  44. </head>
  45. <body>
  46. <h2>Dimmer ESP Controller</h2>
  47. <p><span id="textSliderValue">%SLIDERVALUE%</span></p>
  48. <p><input type="range" onchange="updateSliderPWM(this)" id="pwmSlider" min="0" max="100" value="%SLIDERVALUE%" step="1" class="slider"></p>
  49. </br>
  50. <h2>Dimmer ESP Controller2</h2>
  51. <p><span id="textSliderValue2">%SLIDERVALUE2%</span></p>
  52. <p><input type="range" onchange="updateSliderPWM2(this)" id="pwmSlider" min="0" max="100" value2="%SLIDERVALUE2%" step="1" class="slider"></p>
  53. </br>
  54. <h2>Dimmer ESP Controller3</h2>
  55. <p><span id="textSliderValue3">%SLIDERVALUE3%</span></p>
  56. <p><input type="range" onchange="updateSliderPWM3(this)" id="pwmSlider" min="0" max="100" value3="%SLIDERVALUE3%" step="1" class="slider"></p>
  57. </br>
  58. <h2>Dimmer ESP Controller4</h2>
  59. <p><span id="textSliderValue4">%SLIDERVALUE4%</span></p>
  60. <p><input type="range" onchange="updateSliderPWM4(this)" id="pwmSlider" min="0" max="100" value4="%SLIDERVALUE4%" step="1" class="slider"></p>
  61. </br>
  62. <p><a href=/output/on\><button class=\"button\">WiFi RST</button></a></p>
  63. <script>
  64. function updateSliderPWM (element) {
  65. var sliderValue = document.getElementById("pwmSlider").value;
  66. document.getElementById("textSliderValue").innerHTML = sliderValue;
  67. console.log(sliderValue);
  68. var xhr = new XMLHttpRequest();
  69. xhr.open("GET", "/slider?value="+sliderValue, true);
  70. xhr.send();
  71. }
  72. function updateSliderPWM2 (element) {
  73. var sliderValue2 = document.getElementById("pwmSlider2").value2;
  74. document.getElementById("textSliderValue2").innerHTML = sliderValue2;
  75. console.log(sliderValue2);
  76. var xhr = new XMLHttpRequest();
  77. xhr.open("GET", "/slider?value="+sliderValue2, true);
  78. xhr.send();
  79. }
  80. function updateSliderPWM3 (element) {
  81. var sliderValue3 = document.getElementById("pwmSlider3").value3;
  82. document.getElementById("textSliderValue3").innerHTML = sliderValue3;
  83. console.log(sliderValue3);
  84. var xhr = new XMLHttpRequest();
  85. xhr.open("GET", "/slider?value="+sliderValue3, true);
  86. xhr.send();
  87. }
  88. function updateSliderPWM4 (element) {
  89. var sliderValue4 = document.getElementById("pwmSlider4").value4;
  90. document.getElementById("textSliderValue4").innerHTML = sliderValue4;
  91. console.log(sliderValue4);
  92. var xhr = new XMLHttpRequest();
  93. xhr.open("GET", "/slider?value="+sliderValue4, true);
  94. xhr.send();
  95. }
  96. </script>
  97. </body>
  98. </html>
  99. )rawliteral";
  100. // Replaces placeholder with button section in your web page
  101. String processor(const String& var){
  102. //Serial.println(var);
  103. if (var == "SLIDERVALUE"){
  104. return sliderValue;
  105. }
  106. if (var == "SLIDERVALUE2"){
  107. return sliderValue2;
  108. }
  109. if (var == "SLIDERVALUE3"){
  110. return sliderValue3;
  111. }
  112. if (var == "SLIDERVALUE4"){
  113. return sliderValue4;
  114. }
  115. return String();
  116. }
  117. void setup() {
  118. // put your setup code here, to run once:
  119. Serial.begin(115200);
  120. dimmer.begin(NORMAL_MODE, OND);
  121. //WiFiManager
  122. //Local intialization. Once its business is done, there is no need to keep it around
  123. AsyncWiFiManager wifiManager(&server,&dns);
  124. //reset settings - for testing
  125. //wifiManager.resetSettings();
  126. //set callback that gets called when connecting to previous WiFi fails, and enters Access Point mode
  127. //wifiManager.setAPCallback(configModeCallback);
  128. //fetches ssid and pass and tries to connect
  129. //and goes into a blocking loop awaiting configuration
  130. if (!wifiManager.autoConnect("WiFi-Dimmer")) {
  131. Serial.println("failed to connect and hit timeout");
  132. //reset and try again, or maybe put it to deep sleep
  133. //ESP.resetSettings();
  134. //ESP.reset();
  135. //ESP.restart();
  136. delay(1000);
  137. }
  138. //if you get here you have connected to the WiFi
  139. Serial.println("connected...yeey :)");
  140. // Route for root / web page
  141. server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
  142. request->send_P(200, "text/html", index_html, processor);
  143. });
  144. // Send a GET request to <ESP_IP>/slider?value=<inputMessage>
  145. server.on("/slider", HTTP_GET, [] (AsyncWebServerRequest *request) {
  146. String inputMessage;
  147. // GET input1 value on <ESP_IP>/slider?value=<inputMessage>
  148. if (request->hasParam(PARAM_INPUT)) {
  149. inputMessage = request->getParam(PARAM_INPUT)->value();
  150. sliderValue = inputMessage;
  151. dimmer.setPower(sliderValue.toInt());
  152. }
  153. String inputMessage2;
  154. // GET input1 value on <ESP_IP>/slider?value=<inputMessage>
  155. if (request->hasParam(PARAM_INPUT)) {
  156. inputMessage2 = request->getParam(PARAM_INPUT)->value();
  157. sliderValue2 = inputMessage2;
  158. }
  159. else {
  160. inputMessage = "No message sent";
  161. }
  162. //Serial.println(inputMessage);
  163. Serial.println(sliderValue);
  164. Serial.print("DIM2");
  165. Serial.println(sliderValue2);
  166. Serial.print("DIM3");
  167. Serial.println(sliderValue3);
  168. Serial.print("DIM4");
  169. Serial.println(sliderValue4);
  170. request->send(200, "text/plain", "OK");
  171. });
  172. // Start server
  173. server.begin();
  174. }
  175. void loop() {
  176. // put your main code here, to run repeatedly:
  177. }


Step 1. Setting Wi-Fi access.

The WiFiManager is a great library do add to your ESP8266/ESP32 projects because using this library you no longer have to hard-code your network credentials (SSID and password). Your ESP will automatically join a known network or set up an Access Point that you can use to configure the network credentials. Here’s how this process works:

  • When your ESP8266/ESP32 boots, it is set up in Station mode and tries to connect to a previously saved Access Point (a known SSID and password combination);
  • If this process fails, it sets the ESP into Access Point mode;
  • Using any Wi-Fi-enabled device with a browser, connect to the newly created Access Point (WiFi-Dimmer);
  • After establishing a connection with the “WiFi-Dimmer”, you can go to the default IP address 192.168.4.1 to open a web page that allows you to configure your SSID and password;
  • Once a new SSID and password are set, the ESP reboots and tries to connect;

If it establishes a connection, the process is completed successfully. Otherwise, it will be set up as an Access Point.


Step 2. Web server slider and dimming.

  • The ESP8266/ESP32 hosts a web-server that displays a web page with a slider;
  • When you move the slider, you make an HTTP request to the ESP8266/ESP32 with the new slider value;
  • The HTTP request comes in the following format: GET/slider?value=SLIDERVALUE, in which SLIDERVALUE is a number between 0 and 100;
  • From the HTTP request, the ESP8266/ESP32 gets the current value of the slider;
  • The ESP8266 adjusts the dimmer value accordingly to the slider value: dimmer.setPower(sliderValue.toInt()); //DIMMING;

For 4ch dimmer, on the web page, you got 4 sliders.



Dimmer controller – ESP32/8266 web server with slider Arduino code.
Administrator March 28, 2025
Share this post
Archive
Sign in to leave a comment