From a179a0de22cf03e309bbe08000ef5d23931b9bee Mon Sep 17 00:00:00 2001 From: Kevin Ahrendt Date: Fri, 24 Apr 2026 08:46:11 -0400 Subject: [PATCH] log the update interval for the track progress sensor --- esphome/components/sendspin/sensor/sendspin_sensor.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esphome/components/sendspin/sensor/sendspin_sensor.cpp b/esphome/components/sendspin/sensor/sendspin_sensor.cpp index 4f201f95ef..8710d6dbe6 100644 --- a/esphome/components/sendspin/sensor/sendspin_sensor.cpp +++ b/esphome/components/sendspin/sensor/sendspin_sensor.cpp @@ -10,7 +10,10 @@ static const char *const TAG = "sendspin.sensor"; // --- SendspinTrackProgressSensor --- -void SendspinTrackProgressSensor::dump_config() { LOG_SENSOR("", "Sendspin Track Progress", this); } +void SendspinTrackProgressSensor::dump_config() { + LOG_SENSOR("", "Sendspin Track Progress", this); + LOG_UPDATE_INTERVAL(this); +} // THREAD CONTEXT: Main loop. The registered metadata callback also fires on the main loop // (SendspinHub dispatches metadata from client_->loop()).