mirror of
https://github.com/esphome/esphome.git
synced 2024-11-28 17:54:13 +01:00
more logging
This commit is contained in:
parent
d89a29d451
commit
b73abb12e6
1 changed files with 2 additions and 0 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue