From f44126cedeecb3e6d761db793719594471ffc720 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Tue, 26 Mar 2024 16:30:54 +0000 Subject: [PATCH] Update lora.cpp --- esphome/components/lora/lora.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/lora/lora.cpp b/esphome/components/lora/lora.cpp index 3e710084b4..cc5c0a051b 100644 --- a/esphome/components/lora/lora.cpp +++ b/esphome/components/lora/lora.cpp @@ -154,6 +154,7 @@ void Lora::loop() { bool pin_data_found = false; if (!this->available()) return; + ESP_LOGD(TAG, "Reading serial"); while (this->available()) { uint8_t c; if (this->read_byte(&c)) {