1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-15 00:03:51 +01:00

[zwave_proxy] Send HomeID upon client connect (#11037)

This commit is contained in:
Keith Burzinski
2025-10-05 22:47:55 -05:00
committed by GitHub
parent f757a19e82
commit cfd241ff29
3 changed files with 30 additions and 9 deletions

View File

@@ -1389,6 +1389,11 @@ void APIConnection::complete_authentication_() {
this->send_time_request();
}
#endif
#ifdef USE_ZWAVE_PROXY
if (zwave_proxy::global_zwave_proxy != nullptr) {
zwave_proxy::global_zwave_proxy->api_connection_authenticated(this);
}
#endif
}
bool APIConnection::send_hello_response(const HelloRequest &msg) {