// esp_info.h #ifndef ESP_INFO_H #define ESP_INFO_H #pragma once #include void prettyPrintBytes(size_t bytes); void printESPInfo(); String getESPInfoHTML(); float getFlashUsagePercent(); size_t getProgramFlashSize(); // Add this size_t getAvailableFlashSize(); // Add this String getRAMInfoHTML(); float readInternalTemperature(); // Add this to esp_info.h #endif