From ff8b7e950db561f145f78416cb9f9e73ddcc73e7 Mon Sep 17 00:00:00 2001 From: Florian Date: Fri, 14 Feb 2025 10:08:19 +0100 Subject: [PATCH] Test --- components/tc_bus/tc_bus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/tc_bus/tc_bus.cpp b/components/tc_bus/tc_bus.cpp index b486225b..504f1e19 100644 --- a/components/tc_bus/tc_bus.cpp +++ b/components/tc_bus/tc_bus.cpp @@ -737,7 +737,7 @@ namespace esphome enqueue_command(COMMAND_TYPE_SELECT_DEVICE_GROUP, 0, 1, 0, 400); // class 1 enqueue_command(COMMAND_TYPE_REQUEST_VERSION, 0, 0, serial_number, 400); - this->set_timeout("wait_for_identification", 2500, [this]() { + this->set_timeout("wait_for_identification", 3000, [this]() { this->identify_model_ = false; this->identify_timeout_callback_.call(); ESP_LOGE(TAG, "Identification response not received in time. The device model may not support identification."); @@ -778,7 +778,7 @@ namespace esphome reading_memory_count_ = 0; reading_memory_max_ = (model_data.memory_size / 4); - this->set_timeout("wait_for_memory_reading", reading_memory_max_ * 400, [this]() { + this->set_timeout("wait_for_memory_reading", reading_memory_max_ * 600, [this]() { memory_buffer_.clear(); reading_memory_ = false; reading_memory_serial_number_ = 0;