From ad41b63303e7520c82f2c7b49f9cc92fbe185bec Mon Sep 17 00:00:00 2001 From: Shalin Nijel <89510971+shalinnijel2@users.noreply.github.com> Date: Mon, 20 May 2024 12:25:19 +0100 Subject: [PATCH] Fixed comment. --- iso15118/secc/controller/interface.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/iso15118/secc/controller/interface.py b/iso15118/secc/controller/interface.py index 8c1a262b..bb1f42f4 100644 --- a/iso15118/secc/controller/interface.py +++ b/iso15118/secc/controller/interface.py @@ -383,8 +383,9 @@ async def stop_charger(self) -> None: @abstractmethod async def is_contactor_opened(self) -> bool: """ - Sends a command to the SECC to get the contactor status is opened to terminate - energy flow + This method is used to check if the contactor is open. + Used in PowerDelivery when the EV requests to + stop energy transfer. Relevant for: - all protocols @@ -394,7 +395,10 @@ async def is_contactor_opened(self) -> bool: @abstractmethod async def is_contactor_closed(self) -> Optional[bool]: """ - Sends a command to the SECC to get the contactor status is closed + This method is used to check if the contactor is closed. + In AC, this method is called in PowerDelivery when the EV requests to + start energy transfer. + In DC, this method is called during CableCheck. Relevant for: - all protocols