more logging

This commit is contained in:
Daniël Koek 2024-03-26 15:52:22 +00:00
parent d89a29d451
commit b73abb12e6

View file

@ -8,6 +8,7 @@ void Lora::update() {
this->starting_to_check_ = 0; this->starting_to_check_ = 0;
this->time_out_after_ = 0; this->time_out_after_ = 0;
} else { } else {
ESP_LOGD(TAG, "Aux pin is High! Can send again!");
// it has taken too long to complete, error out! // it has taken too long to complete, error out!
if ((millis() - this->starting_to_check_) > this->time_out_after_) { if ((millis() - this->starting_to_check_) > this->time_out_after_) {
ESP_LOGD(TAG, "Timeout error! Resetting timers"); ESP_LOGD(TAG, "Timeout error! Resetting timers");
@ -92,6 +93,7 @@ bool Lora::can_send_message_() {
// If it is high then all good and settings have been saved // If it is high then all good and settings have been saved
this->starting_to_check_ = 0; this->starting_to_check_ = 0;
this->time_out_after_ = 0; this->time_out_after_ = 0;
ESP_LOGD(TAG, "Aux pin is High! Can send again!");
return true; return true;
} else { } else {