From 5a404d98fc84c132b4fd8a1cb8f835192056f318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Fri, 17 May 2024 16:00:21 +0100 Subject: [PATCH] Update ebyte_lora.cpp --- esphome/components/ebyte_lora/ebyte_lora.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/ebyte_lora/ebyte_lora.cpp b/esphome/components/ebyte_lora/ebyte_lora.cpp index b3c3ac55df..461bd87cf6 100644 --- a/esphome/components/ebyte_lora/ebyte_lora.cpp +++ b/esphome/components/ebyte_lora/ebyte_lora.cpp @@ -251,7 +251,7 @@ void EbyteLoraComponent::set_config_() { // this-> set_mode_(CONFIGURATION) // this->write_array(data, sizeof(data)); // this->setup_wait_response_(5000); - for (int i = 0; i < sizeof(data); i++) { + for (int i = 0; i <= sizeof(data); i++) { ESP_LOGD(TAG, "values: %c%c%c%c%c%c%c%c", BYTE_TO_BINARY(data[i])); } }