Module Integration Guides
...
ESP-IDF
Update Configurations
1 min
with bytebeam you can remotely update the device configuration in the field at any time, this will make sure that the device has optimal configurartion at all time you can use the bytebeam add action handler function to add the handler for update config action // handler for update config action int handle update config(bytebeam client t bytebeam client, char args, char action id) { // log the received arguments and action id to serial for the refrence esp logi(tag, "updateconfig action received !"); esp logi(tag, "< args %s, actionid %s >\n", args, actionid); // // parse the received json here // // // update the actual device configurations here // // // publish action status here // return 0; } // add the handler for update config action bytebeam add action handler(\&bytebeam client, handle update config, "update config"); have a look at https //github com/bytebeamio/bytebeam esp idf sdk/tree/main/examples/receive data/update config example app for a full fledged example showing how you can update the device configurations and publish the status response to bytebeam cloud follow the below steps to trigger device config updates ) add device configurations and create a new device config version on bytebeam as per the instructions mentioned in the docid\ g fyye2wlcdwk72fbi eq guide once, new device config version is created, trigger device config update as per the instructions mentioned in the docid\ wfioirzhlpgcsfo4tuckt guide progress of the device config update can be monitored on bytebeam platform using action status


