From 9ef7291b87a47346efd03e8bfebdc06035fe38d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Koek?= Date: Tue, 26 Mar 2024 18:02:27 +0000 Subject: [PATCH] Update lora.cpp --- esphome/components/lora/lora.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/lora/lora.cpp b/esphome/components/lora/lora.cpp index 57a9a08a91..f399557df5 100644 --- a/esphome/components/lora/lora.cpp +++ b/esphome/components/lora/lora.cpp @@ -161,8 +161,8 @@ void Lora::loop() { ESP_LOGD(TAG, "PIN: %u ", data[1]); ESP_LOGD(TAG, "VALUE: %u ", data[2]); ESP_LOGD(TAG, "RSSI: %u ", data[3]); - rssi_ = (char) data[3]; - this->update_needed_ = true; + this->rssi_sensor_->publish_state(data[3]); + this->message_text_sensor_->publish_state("Got something"); } else { ESP_LOGD(TAG, "WEIRD"); }