diff --git a/components/cover/time_based.rst b/components/cover/time_based.rst index e5a5150e9..df66b4df3 100644 --- a/components/cover/time_based.rst +++ b/components/cover/time_based.rst @@ -80,16 +80,16 @@ Configuration variables: Handle stop_action: ------------------------ For some cover controllers, separate switches for UP and DOWN action are used while a stop is issued when sending a counter command. -This can be handled at the **stop_action** by using the folling lamda function: +This can be handled at the **stop_action** by using the following lamda function: .. code-block:: yaml stop_action: - lambda: !lambda |- - if (id(cover).last_operation() == CoverOperation::COVER_OPERATION_OPENING) { + if (id(cover).get_last_operation() == CoverOperation::COVER_OPERATION_OPENING) { // Cover is currently opening id(cover_button_down).press(); - } else if (id(cover).last_operation() == CoverOperation::COVER_OPERATION_CLOSING) { + } else if (id(cover).get_last_operation() == CoverOperation::COVER_OPERATION_CLOSING) { // Cover is currently closing id(cover_button_up).press(); }