remove unused code

This commit is contained in:
technyon
2022-07-03 21:18:01 +02:00
parent 621dc14f77
commit c4ab84cd5c
2 changed files with 0 additions and 21 deletions

View File

@@ -30,13 +30,9 @@ public:
void setLockActionReceivedCallback(bool (*lockActionReceivedCallback)(const char* value));
void setConfigUpdateReceivedCallback(void (*configUpdateReceivedCallback)(const char* path, const char* value));
void setMqttDataReceivedForwardCallback(void (*callback)(char*, uint8_t*, unsigned int));
void restartAndConfigureWifi();
void onMqttDataReceived(char*& topic, byte*& payload, unsigned int& length) override;
private:
void publishFloat(const char* topic, const float value, const uint8_t precision = 2);
void publishInt(const char* topic, const int value);
@@ -57,5 +53,4 @@ private:
bool (*_lockActionReceivedCallback)(const char* value) = nullptr;
void (*_configUpdateReceivedCallback)(const char* path, const char* value) = nullptr;
void (*_mqttTopicReceivedForwardCallback)(char*, uint8_t*, unsigned int) = nullptr;
};