ESP32 上的字符串数组

String Array on ESP32

我需要实现一个字符串数组,例如:

String[] txt = {"some text1", "some text2", "some text3", "some text4"};

标准char[]不适合我。我如何在 Arduino IDE 中为 ESP32 使用字符串数组或列表?

您可以自由使用所有 STL 工具,包括字符串数组。标准注意事项适用(从堆动态分配 RAM,STL 使用大量闪存用于代码等)

#include <string>
#include <array>

std::array<std::string> my_array = {"text1", "text2"};