Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed comment. #407

Merged
merged 1 commit into from
May 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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