From 0f8c3ebfd71cebeec3b7bc28c40fd572e56a9a97 Mon Sep 17 00:00:00 2001 From: klaudiusz223 Date: Sun, 24 Dec 2023 21:24:42 +0100 Subject: [PATCH] set supports stop --- esphome/components/time_based_tilt/time_based_tilt_cover.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/time_based_tilt/time_based_tilt_cover.cpp b/esphome/components/time_based_tilt/time_based_tilt_cover.cpp index a40316d176..fdf406b5de 100644 --- a/esphome/components/time_based_tilt/time_based_tilt_cover.cpp +++ b/esphome/components/time_based_tilt/time_based_tilt_cover.cpp @@ -197,6 +197,7 @@ CoverTraits TimeBasedTiltCover::get_traits() { traits.set_supports_position(true); traits.set_supports_tilt(this->tilt_close_duration_ !=0 && this->tilt_open_duration_ !=0); traits.set_supports_toggle(true); + traits.set_supports_stop(true); traits.set_is_assumed_state(this->assumed_state_); return traits; }