I have to send multiple files (about 1000) content (for a total of about 1 MB or more) via MQTT to a remote broker.
Since ESP32-WROOM-32 has limited RAM I can't read all files and put in a buffer before publish it.
Is there any way to perform a "chuncked/segmented" publishing with esp-mqtt library?
It seems that
Code: Select all
esp_mqtt_client_publish
Thanks