Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Feb 14, 2025
1 parent 2e27efd commit ff8b7e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/tc_bus/tc_bus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit ff8b7e9

Please sign in to comment.