Update lora.cpp

This commit is contained in:
Daniël Koek 2024-03-24 16:48:22 +00:00
parent 0744e7195b
commit 2640bd873f

View file

@ -139,8 +139,8 @@ bool Lora::sendMessage(std::string message) {
} }
ESP_LOGD(TAG, "Sending: %s", message); ESP_LOGD(TAG, "Sending: %s", message);
this->write_array((uint8_t *) &messageFixed, size); this->write_array((uint8_t *) &messageFixed, size);
bool result = this->waitCompleteResponse(5000, 5000); // bool result = this->waitCompleteResponse(5000, 5000);
return result; return true;
} }
void Lora::loop() { void Lora::loop() {
if (!available()) { if (!available()) {