Updated hoerman_door to esphome 2025.11.3...

Breaking changes existed in 2025.11.0
See https://github.com/esphome/esphome/pull/11704 for more information
This commit is contained in:
2025-12-04 01:47:24 +01:00
parent 1f7c437c3e
commit 4a0035d607
6 changed files with 40 additions and 16 deletions

View File

@@ -37,12 +37,12 @@ void LogCore(int Level, const char *msg, const unsigned char *data = NULL, size_
str[3] = '\0';
strncat(newmsg, str, sizeof(str));
}
ESP_LOGD(TAG, newmsg);
ESP_LOGD(EM_TAG, newmsg);
free(newmsg);
}
else
{
ESP_LOGD(TAG, msg);
ESP_LOGD(EM_TAG, msg);
}
}
//#else
@@ -195,7 +195,7 @@ void HCIEmulator::poll()
}
else
{
ESP_LOGD(TAG, "skipped frame");
ESP_LOGD(EM_TAG, "skipped frame");
}
m_skipFrame = false;