Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -1872,7 +1872,7 @@ async def _async_optimization_strategy(self) -> None:
break

# Negative net consumption above 100w means we have solar surplus to charge batteries while covering the house
if rec.estimated_net_consumption <= 0.1:
if rec.estimated_net_consumption <= -0.1:
charged += (
rec.estimated_net_consumption * -1
) # Convert negative to positive for charging
Expand Down
Loading