Update ebyte_lora.cpp

This commit is contained in:
Daniël Koek 2024-04-25 13:37:18 +01:00
parent 6d4f491b49
commit 27e3b8616b

View file

@ -251,7 +251,7 @@ void EbyteLoraComponent::set_mode_(ModeType mode) {
bool EbyteLoraComponent::can_send_message_() { bool EbyteLoraComponent::can_send_message_() {
// High means no more information is needed // High means no more information is needed
if (this->pin_aux_->digital_read()) { if (this->pin_aux_->digital_read()) {
if (!this->starting_to_check_ == 0 && !this->time_out_after_ == 0) { if (!(this->starting_to_check_ == 0) && !(this->time_out_after_ == 0)) {
this->starting_to_check_ = 0; this->starting_to_check_ = 0;
this->time_out_after_ = 0; this->time_out_after_ = 0;
this->flush(); this->flush();