esp-nimble-cpp update

This commit is contained in:
iranl
2025-07-03 21:29:54 +02:00
parent 5c3a683a75
commit aaa22640cc
3 changed files with 7 additions and 7 deletions

View File

@@ -175,6 +175,11 @@ bool NukiNetwork::wifiConnected()
}
}
String NukiNetwork::localIP()
{
return _device->localIP();
}
#ifdef NUKI_HUB_UPDATER
void NukiNetwork::initialize()
{
@@ -1731,9 +1736,4 @@ void NukiNetwork::disableMqtt()
_device->mqttDisable();
_mqttEnabled = false;
}
String NukiNetwork::localIP()
{
return _device->localIP();
}
#endif

View File

@@ -39,6 +39,7 @@ public:
const String networkBSSID() const;
const NetworkDeviceType networkDeviceType();
void setKeepAliveCallback(std::function<void()> reconnectTick);
String localIP();
NetworkDevice* device();
@@ -50,7 +51,6 @@ public:
void registerMqttReceiver(MqttReceiver* receiver);
void disableAutoRestarts(); // disable on OTA start
void disableMqtt();
String localIP();
bool reconnect(bool force = false);
void subscribe(const char* prefix, const char* path);

View File

@@ -4,7 +4,7 @@ dependencies:
esp-nimble-cpp:
git: https://github.com/h2zero/esp-nimble-cpp.git
version: 2.3.1
version: 8af38e7eb9ae779bf54708c029f33a875d5e8d62
espressif/libsodium: "^1.0.20~2"