From aea649e8f57dc6134baf479981861bf56368864f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Thu, 19 Sep 2024 09:47:32 +0100 Subject: [PATCH] Update ebyte_lora_component.cpp --- esphome/components/ebyte_lora/ebyte_lora_component.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/ebyte_lora/ebyte_lora_component.cpp b/esphome/components/ebyte_lora/ebyte_lora_component.cpp index 1fde4a7a61..2dc31cda4c 100644 --- a/esphome/components/ebyte_lora/ebyte_lora_component.cpp +++ b/esphome/components/ebyte_lora/ebyte_lora_component.cpp @@ -525,7 +525,7 @@ void EbyteLoraComponent::request_repeater_info_() { } uint8_t data[2]; data[0] = REQUEST_REPEATER_INFO; // Request - data[1] = this->network_id_; // for unique id + data[1] = this->network_id_; // for unique id ESP_LOGD(TAG, "Asking for repeater info"); this->write_array(data, sizeof(data)); this->setup_wait_response_(5000);