21 lines
605 B
C++
21 lines
605 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <cstdint>
|
|
#include <utility>
|
|
|
|
class Utils {
|
|
public:
|
|
static uint32_t getChipId();
|
|
static uint64_t generateDtuSerial();
|
|
static int getTimezoneOffset();
|
|
static void restartDtu();
|
|
static bool checkJsonAlloc(const JsonDocument& doc, const char* function, const uint16_t line);
|
|
static void removeAllFiles();
|
|
|
|
/* OpenDTU-OnBatter-specific utils go here: */
|
|
template<typename T>
|
|
static std::pair<T, String> getJsonValueFromStringByPath(String const& jsonText, String const& path);
|
|
};
|