From aafcdfe39d4b4eba73d53cd7c1cf999debddfc62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Wed, 8 May 2024 09:26:08 +0100 Subject: [PATCH] Update ebyte_lora.cpp --- esphome/components/ebyte_lora/ebyte_lora.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/esphome/components/ebyte_lora/ebyte_lora.cpp b/esphome/components/ebyte_lora/ebyte_lora.cpp index 3208f4178c..455c7a2eed 100644 --- a/esphome/components/ebyte_lora/ebyte_lora.cpp +++ b/esphome/components/ebyte_lora/ebyte_lora.cpp @@ -213,7 +213,9 @@ void EbyteLoraComponent::update() { this->get_current_config_(); return; } else { - if (!this->check_config_()) { + if (this->check_config_()) { + ESP_LOGD(TAG, "Config is good to go!"); + } else { ESP_LOGD(TAG, "Config is not right, have to do something about that!"); } }