Skip to Content

Dimmer with ESP8266/ESP32 MQTT – Publish and Subscribe with Arduino IDE. Connecting to Home Assistant, Node-RED, Amazon AWS, and openHAB

This project shows how to use MQTT communication protocol with the ESP32 to publish messages and subscribe to topics from MQTT broker under servers like Home Assistant, Node RED, Amazon AWS, and openHAB. As an example, we’ll control the dimmer. The server can be either local or on the cloud.

The ESP32 we’ll be programmed using Arduino IDE. The PubSubClient library provides a client for doing simple publish/subscribe messaging with a server that supports MQTT.

You can upload the following code to your ESP32. The code is commented on where you need to make changes. 

You need to edit the code with your own SSID, password and MQTT broker IP address.


  1. #include <RBDdimmer.h>
  2. #define outputPin 4
  3. #define zerocross 5
  4. dimmerLamp dimmer(outputPin, zerocross); //initialase port for dimmer for ESP8266, ESP32, Arduino due boards
  5. #include <WiFi.h> // For ESP8266 #include <ESP8266WiFi.h>
  6. #include <PubSubClient.h>
  7. // WiFi Network Credentials
  8. const char *ssid = "REPLACE_WITH_YOUR_SSID"; // name of your WiFi network
  9. const char *password = "REPLACE_WITH_YOUR_PASSWORD"; // password of the WiFi network
  10. // MQTT server Credentials.
  11. // const char *HA_USER = "_____";
  12. // const char *HA_PASS = "_____";
  13. IPAddress broker(XXX,XXX,XXX,XXX); // IP address of your MQTT broker eg.
  14. const char *ID = "Example_Dimmer"; // Name of our device, must be unique!!!
  15. char *STATE_TOPIC = "dimmer/power/state"; // Topic to publish the light state to
  16. char msg[50];
  17. WiFiClient wclient;
  18. PubSubClient client(wclient); // Setup MQTT client
  19. // Handle incomming messages from the broker
  20. void callback(char* topic, byte* payload, unsigned int length) {
  21. String response;
  22. int power_L;
  23. for (int i = 0; i < length; i++) {
  24. response += (char)payload[i];
  25. }
  26. Serial.print("Message arrived [");
  27. Serial.print(topic);
  28. Serial.print("] ");
  29. Serial.println(response);
  30. power_L=response.toInt();
  31. dimmer.setPower(power_L);
  32. delay(50);
  33. snprintf (msg, 50, "%ld", dimmer.getPower());
  34. client.publish(STATE_TOPIC, msg);
  35. Serial.print("State ");
  36. Serial.println(msg);
  37. }
  38. // Connect to WiFi network
  39. void setup_wifi() {
  40. Serial.print("\nConnecting to ");
  41. Serial.println(ssid);
  42. WiFi.mode(WIFI_STA);
  43. WiFi.begin(ssid, password);
  44. while (WiFi.status() != WL_CONNECTED) { // Wait for connection
  45. delay(500);
  46. Serial.print(".");
  47. }
  48. Serial.println();
  49. Serial.println("WiFi connected");
  50. Serial.print("IP address: ");
  51. Serial.println(WiFi.localIP());
  52. }
  53. // Reconnect to client
  54. void reconnect() {
  55. // Loop until we're reconnected
  56. while (!client.connected()) {
  57. Serial.print("Attempting MQTT connection...");
  58. // Attempt to connect
  59. if(client.connect(ID,HA_USER,HA_PASS)) {
  60. client.subscribe(TOPIC);
  61. Serial.println("connected");
  62. Serial.print("Subcribed to: ");
  63. Serial.println(TOPIC);
  64. Serial.println('\n');
  65. } else {
  66. Serial.println(" try again in 5 seconds");
  67. // Wait 5 seconds before retrying
  68. delay(5000);
  69. }
  70. }
  71. }
  72. void setup() {
  73. dimmer.begin(NORMAL_MODE, OND); //Initialize the dimmer
  74. Serial.begin(115200); // Start serial communication at 115200 baud
  75. delay(100);
  76. setup_wifi(); // Connect to network
  77. client.setServer(broker, 1883);
  78. client.setCallback(callback);// Initialize the callback routine
  79. }
  80. void loop() {
  81. if (!client.connected()) // Reconnect if connection is lost
  82. {
  83. reconnect();
  84. }
  85. client.loop();
  86. }

The MQTT broker publishes the dimmer value (0~100) on the dimmer/power/state topic. The ESP32 is subscribed to those topics. So, it ESP32 receives the dimming value (0~100).

For use the dimmer 2-4 or more lines need to add the topics, and change callback function for read topics:

  1. char *STATE_TOPIC1 = "dimmer/power1/state";
  2. char *STATE_TOPIC2 = "dimmer/power2/state";
  3. char *STATE_TOPIC3 = "dimmer/power3/state";
  4. char *STATE_TOPIC4 = "dimmer/power4/state";
Dimmer with ESP8266/ESP32 MQTT – Publish and Subscribe with Arduino IDE. Connecting to Home Assistant, Node-RED, Amazon AWS, and openHAB
Administrator March 28, 2025
Share this post
Archive
Sign in to leave a comment