Call read commands from Web #2116

This commit is contained in:
proddy
2024-10-20 15:02:11 +02:00
parent bd08b7e0e4
commit 798e20a266
25 changed files with 282 additions and 127 deletions

View File

@@ -19,8 +19,9 @@
#ifndef EMSESP_HELPERS_H
#define EMSESP_HELPERS_H
#include "telegram.h" // for EMS_VALUE_* settings
#include <sstream>
#include "telegram.h" // for EMS_VALUE_* settings
#include "common.h"
namespace emsesp {
@@ -82,6 +83,8 @@ class Helpers {
static const char * translated_word(const char * const * strings, const bool force_en = false);
static void splitArguments(const char * data, std::vector<std::string> & arguments);
#ifdef EMSESP_STANDALONE
static char * ultostr(char * ptr, uint32_t value, const uint8_t base);
#endif