Skip to content
Open
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
2 changes: 1 addition & 1 deletion custom_components/marstek_local_api/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ def _command_kwargs() -> dict[str, Any]:

def _command_delay() -> float:
"""Back off a little between calls; go faster while probing initial contact."""
return 0.2 if is_first_update and not had_success else 1.0
return 2.0 if is_first_update and not had_success else 5.0

if is_first_update:
_LOGGER.debug("First update - fetching device info")
Expand Down