diff --git a/esphome/components/lora/lora.cpp b/esphome/components/lora/lora.cpp index 8b5b74943a..1f08b4e081 100644 --- a/esphome/components/lora/lora.cpp +++ b/esphome/components/lora/lora.cpp @@ -139,8 +139,8 @@ bool Lora::sendMessage(std::string message) { } ESP_LOGD(TAG, "Sending: %s", message); this->write_array((uint8_t *) &messageFixed, size); - bool result = this->waitCompleteResponse(5000, 5000); - return result; + // bool result = this->waitCompleteResponse(5000, 5000); + return true; } void Lora::loop() { if (!available()) {