How to find number of free bytes in ESP32 memory / heap?
This approach works for Arduino / PlatformIO as well as ESP-IDF projects.
#include <esp_heap_caps.h>
uint32_t freeHeapBytes = heap_caps_get_free_size(MALLOC_CAP_DEFAULT);
This approach works for Arduino / PlatformIO as well as ESP-IDF projects.
#include <esp_heap_caps.h>
uint32_t freeHeapBytes = heap_caps_get_free_size(MALLOC_CAP_DEFAULT);