1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 00:31:58 +00:00
This commit is contained in:
J. Nick Koston
2026-01-30 21:22:04 -06:00
parent 67febb13c0
commit 1b6ae4348b

View File

@@ -55,7 +55,7 @@ template<size_t N> struct FixedString {
/// Example:
/// PROGMEM_STRING_TABLE(MyStrings, "foo", "bar", "baz");
/// ProgmemStr str = MyStrings::get_progmem_str(index); // For ArduinoJson
/// const LogString *log_str = MyStrings::get_log_str(index); // For ESP_LOG*
/// const LogString *log_str = MyStrings::get_log_str(index); // For logging
///
template<FixedString... Strs> struct ProgmemStringTable {
static constexpr size_t COUNT = sizeof...(Strs);