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])); } }