Skip to content

Commit

Permalink
Fixes Solaredge connection issue, v0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
CJNE committed Aug 27, 2021
1 parent 5ac9ea2 commit c6641b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/sunspec/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def modbus_connect(self):
f"Failed to connect to {self._host}:{self._port} slave id {self._slave_id}"
)
_LOGGER.debug("Client connected, perform initial scan")
client.scan()
client.scan(connect=False)
return client

def read_model(self, model_id) -> dict:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/sunspec/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
NAME = "SunSpec"
DOMAIN = "sunspec"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "0.0.10"
VERSION = "0.0.11"

ATTRIBUTION = "Data provided by SunSpec alliance - https://sunspec.org"
ISSUE_URL = "https://github.com/cjne/ha-sunspec/issues"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/sunspec/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "sunspec",
"name": "SunSpec",
"version": "0.0.10",
"version": "0.0.11",
"documentation": "https://github.com/cjne/ha-sunspec",
"issue_tracker": "https://github.com/cjne/ha-sunspec/issues",
"dependencies": [],
Expand Down

0 comments on commit c6641b0

Please sign in to comment.