Skip to Content

Dimmer with ESP32 – ESP RainMaker Cloud platform + Mobile APP.

ESP RainMaker® is a complete system for building AIoT products with a minimal amount of code, empowering your team to develop and deploy secure, customized AIoT solutions. It covers all Espressif chips and modules, device firmware, voice-assistant integrations, phone apps and cloud backend. This helps you save a large investment in cloud, gain independence and focus on innovating your core-value offering.

In this Dimmer tutorial, we will introduce you to ESP RainMaker with ESP32 using Arduino IDE. Create Arduino code for dimming, upload to the microcontroller, and connect to the mobile APP. https://rainmaker.espressif.com/ 

Ready-made support for Amazon Alexa & Google Assistant integration through smart-home skills and actions. You can also create your own custom skills.

A sample sketch for a Dimmer has been included. Let’s quickly look at the code that enables this.

  1. //This example demonstrates the ESP RainMaker with the Dimmer
  2. #include "RMaker.h"
  3. #include "WiFi.h"
  4. #include "WiFiProv.h"
  5. #include <RBDdimmer.h> //Dimmer connection to microcontroller and Arduino library. https://rocketcontroller.com/dimmer-connection-to-microcontroller-and-arduino-library-examples/
  6. #define DEFAULT_POWER_MODE true
  7. #define DEFAULT_DIMMER_LEVEL 50
  8. const char *service_name = "PROV_1234";
  9. const char *pop = "abcd1234";
  10. //GPIO for push button
  11. #if CONFIG_IDF_TARGET_ESP32C3
  12. static int gpio_0 = 9;
  13. static int gpio_dimmer = 7;
  14. static int gpio_zerocross 5 // seting of pins
  15. #else
  16. //GPIO for virtual device
  17. static int gpio_0 = 0;
  18. static int gpio_dimmer = 23;
  19. static int gpio_zerocross 5 // seting of pins
  20. #endif
  21. dimmerLamp dimmer(gpio_dimmer, gpio_zerocross);
  22. bool dimmer_state = true;
  23. // The framework provides some standard device types like switch, lightbulb, fan, temperature sensor.
  24. // But, you can also define custom devices using the 'Device' base class object, as shown here
  25. static Device my_device("Dimmer", "custom.device.dimmer", &gpio_dimmer);
  26. void sysProvEvent(arduino_event_t *sys_event)
  27. {
  28. switch (sys_event->event_id) {
  29. case ARDUINO_EVENT_PROV_START:
  30. #if CONFIG_IDF_TARGET_ESP32S2
  31. Serial.printf("\nProvisioning Started with name \"%s\" and PoP \"%s\" on SoftAP\n", service_name, pop);
  32. printQR(service_name, pop, "softap");
  33. #else
  34. Serial.printf("\nProvisioning Started with name \"%s\" and PoP \"%s\" on BLE\n", service_name, pop);
  35. printQR(service_name, pop, "ble");
  36. #endif
  37. break;
  38. default:;
  39. }
  40. }
  41. void write_callback(Device *device, Param *param, const param_val_t val, void *priv_data, write_ctx_t *ctx)
  42. {
  43. const char *device_name = device->getDeviceName();
  44. const char *param_name = param->getParamName();
  45. if(strcmp(param_name, "Power") == 0) {
  46. Serial.printf("Received value = %s for %s - %s\n", val.val.b? "true" : "false", device_name, param_name);
  47. dimmer_state = val.val.b;
  48. (dimmer_state == false) ? dimmer.setPower(OFF) : dimmer.setPower(ON);
  49. param->updateAndReport(val);
  50. } else if (strcmp(param_name, "Level") == 0) {
  51. Serial.printf("\nReceived value = %d for %s - %s\n", val.val.i, device_name, param_name);
  52. param->updateAndReport(val);
  53. dimmer.setPower(val.val.i); // DIMMING
  54. }
  55. }
  56. void setup()
  57. {
  58. Serial.begin(115200);
  59. pinMode(gpio_0, INPUT);
  60. dimmer.begin(NORMAL_MODE, ON);
  61. Node my_node;
  62. my_node = RMaker.initNode("ESP RainMaker Node");
  63. //Create custom dimmer device
  64. my_device.addNameParam();
  65. my_device.addPowerParam(DEFAULT_POWER_MODE);
  66. my_device.assignPrimaryParam(my_device.getParamByName(ESP_RMAKER_DEF_POWER_NAME));
  67. //Create and add a custom level parameter
  68. Param level_param("Level", "custom.param.level", value(DEFAULT_DIMMER_LEVEL), PROP_FLAG_READ | PROP_FLAG_WRITE);
  69. level_param.addBounds(value(0), value(100), value(1));
  70. level_param.addUIType(ESP_RMAKER_UI_SLIDER);
  71. my_device.addParam(level_param);
  72. my_device.addCb(write_callback);
  73. //Add custom dimmer device to the node
  74. my_node.addDevice(my_device);
  75. //This is optional
  76. RMaker.enableOTA(OTA_USING_PARAMS);
  77. //If you want to enable scheduling, set time zone for your region using setTimeZone().
  78. //The list of available values are provided here https://rainmaker.espressif.com/docs/time-service.html
  79. // RMaker.setTimeZone("Asia/Shanghai");
  80. // Alternatively, enable the Timezone service and let the phone apps set the appropriate timezone
  81. RMaker.enableTZService();
  82. RMaker.enableSchedule();
  83. RMaker.start();
  84. WiFi.onEvent(sysProvEvent);
  85. #if CONFIG_IDF_TARGET_ESP32S2
  86. WiFiProv.beginProvision(WIFI_PROV_SCHEME_SOFTAP, WIFI_PROV_SCHEME_HANDLER_NONE, WIFI_PROV_SECURITY_1, pop, service_name);
  87. #else
  88. WiFiProv.beginProvision(WIFI_PROV_SCHEME_BLE, WIFI_PROV_SCHEME_HANDLER_FREE_BTDM, WIFI_PROV_SECURITY_1, pop, service_name);
  89. #endif
  90. }
  91. void loop()
  92. {
  93. if(digitalRead(gpio_0) == LOW) { //Push button pressed
  94. // Key debounce handling
  95. delay(100);
  96. int startTime = millis();
  97. while(digitalRead(gpio_0) == LOW) delay(50);
  98. int endTime = millis();
  99. if ((endTime - startTime) > 10000) {
  100. // If key pressed for more than 10secs, reset all
  101. Serial.printf("Reset to factory.\n");
  102. RMakerFactoryReset(2);
  103. } else if ((endTime - startTime) > 3000) {
  104. Serial.printf("Reset Wi-Fi.\n");
  105. // If key pressed for more than 3secs, but less than 10, reset Wi-Fi
  106. RMakerWiFiReset(2);
  107. } else {
  108. // Toggle device state
  109. dimmer_state = !dimmer_state;
  110. Serial.printf("Toggle State to %s.\n", dimmer_state ? "true" : "false");
  111. my_device.updateAndReportParam(ESP_RMAKER_DEF_POWER_NAME, dimmer_state);
  112. (dimmer_state == false) ? dimmer.setPower(OFF) : dimmer.setPower(ON);
  113. }
  114. }
  115. delay(100);
  116. }

The switch can be controlled with the mobile APP, as well as Alexa and Google Voice Assistant skills.

When we execute this code:

  • The device will first check if a Wi-Fi network is configured. If the network is not configured, it will launch the provisioning process. The device can then be configured using the phone apps mentioned above.
  • If a Wi-Fi configuration is found, it will connect to the configured network.
  • Once connected, it will connect to the RainMaker cloud, looking for commands to modify its parameter (switch state in this case).
  • The device will also look for commands on the local Wi-Fi network.
  • When somebody changes the switch state using phone apps or voice integrations, the write_callback() gets called.


Getting Started

Before you even get started, a few points to note

  • For using RainMaker, you first have to get started with the ESP32 support in Arduino.
  • RainMaker support is not yet part of a stable esp32-arduino release. So we will use the master branch of the ESP32 Arduino repository. We will update here and elsewhere once this support is available in a stable release.

Once your Arduino is set-up with the ESP32 support, follow these steps

  1. Open the Arduino IDE, go to Tools and set the following
  • Board: “ESP32 Dev Module”
  • Flash Size: “4MB” (according to your ESP32 controller)
  • Partition Scheme: “RainMaker”
  • Core Debug Level: “Info”
  • Port: Choose the appropriate ESP32 port as per your Host platform from the list. By connecting/disconnecting your ESP32 board, you can find out the port number.

2. Upload the Sketch onto your ESP32 board by clicking on the Upload button in the IDE, or going to Sketch -> Upload

3. Go to Tools -> Serial Monitor. Choose 115200 as Baud. If you do not see anything in the monitor window, reset your board (using the RST button).

4. Download the ESP RainMaker phone app, sign-up or sign-in and you are ready to go.

5. Follow the instructions in the Serial Monitor to add the switch from the RainMaker app. (If you do not see the instructions, double check the “Core Debug Level: Info” option under Tools)

Any control from the phone app should now reflect on the device and any change on the device (by pressing the BOOT button) should reflect in the mobile app.

You can press and hold the BOOT button for more than 3 seconds and then release for Resetting Wi-Fi, and for more than 10 seconds to Reset to Factory defaults.

1

 

2

 

3

 

1

 

2

 

3

 



Dimmer with ESP32 – ESP RainMaker Cloud platform + Mobile APP.
Administrator March 28, 2025
Share this post
Archive
Sign in to leave a comment