Skip to content

Commit

Permalink
Fixed comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
shalinnijel2 committed May 20, 2024
1 parent ad36c16 commit ad41b63
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions iso15118/secc/controller/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ad41b63

Please sign in to comment.