remove unneeded file

This commit is contained in:
proddy
2024-02-14 14:46:20 +01:00
parent b6accb8d02
commit f5ec9e9602

View File

@@ -1,17 +0,0 @@
#ifndef ESPUtils_h
#define ESPUtils_h
#include <Arduino.h>
class ESPUtils {
public:
static String defaultDeviceValue(const String & prefix = "") {
#ifndef EMSESP_STANDALONE
return prefix + String(static_cast<uint32_t>(ESP.getEfuseMac()), HEX);
#else
return "ems-esp";
#endif
}
};
#endif