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; }