Rmaker.h Library | Download Zip



Rmaker.h Library | Download Zip

// Initialize the device RMaker.init();

void setup() Serial.begin(115200);

Introduction: What is rmaker.h? In the rapidly evolving world of Internet of Things (IoT), firmware development can often be a bottleneck. Enter the rmaker.h library—a powerful, Arduino-compatible header file specifically designed for ESP32 and ESP8266 microcontrollers. This library acts as a streamlined wrapper for ESP-RainMaker , Espressif’s cloud platform that enables device provisioning, control, and Over-the-Air (OTA) updates without needing a separate mobile app from the developer. rmaker.h library download zip

// Set callback for commands RMaker.onParameterUpdate([](const char *deviceName, const char *paramName, const char *value) Serial.printf("Device: %s, Param: %s, Value: %s\n", deviceName, paramName, value); if (strcmp(paramName, "Power") == 0) if (strcmp(value, "true") == 0) digitalWrite(LED_BUILTIN, HIGH); else digitalWrite(LED_BUILTIN, LOW); ); // Initialize the device RMaker

// Create a power parameter (on/off) RMakerParameter *powerParam = RMaker.addParameter("Power", "bool", NULL, NULL, NULL); powerParam->addRange("bool", "false", "true"); This library acts as a streamlined wrapper for


Content by . Last review Dr 31/08/25.