remove unused variables

This commit is contained in:
technyon
2024-11-24 05:41:46 +01:00
parent 4bcd3f6af0
commit 335a9f6dba
2 changed files with 2 additions and 3 deletions

View File

@@ -142,11 +142,12 @@ void NukiNetworkLock::initialize()
{ {
_network->subscribe(_mqttPath, mqtt_topic_lock_log_rolling_last); _network->subscribe(_mqttPath, mqtt_topic_lock_log_rolling_last);
} }
/*
_network->addReconnectedCallback([&]() _network->addReconnectedCallback([&]()
{ {
_reconnected = true; _reconnected = true;
}); });
*/
} }
void NukiNetworkLock::update() void NukiNetworkLock::update()

View File

@@ -85,9 +85,7 @@ private:
char _mqttPath[181] = {0}; char _mqttPath[181] = {0};
bool _firstTunerStatePublish = true; bool _firstTunerStatePublish = true;
int64_t _lastMaintenanceTs = 0;
bool _haEnabled = false; bool _haEnabled = false;
bool _reconnected = false; //SETBACK
bool _disableNonJSON = false; bool _disableNonJSON = false;
String _keypadCommandName = ""; String _keypadCommandName = "";