Skip to content

Commit

Permalink
2024.02.6b4
Browse files Browse the repository at this point in the history
  • Loading branch information
wills106 authored Feb 22, 2024
1 parent e79b8ac commit fb0c1cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/solax_modbus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ async def async_lowlevel_write_register(self, unit, address, payload):
builder.reset()
builder.add_16bit_int(payload)
payload = builder.to_registers()
return self._client.write_register(address, payload[0], **kwargs)
return await self._client.write_register(address, payload[0], **kwargs)

async def async_write_register(self, unit, address, payload):
"""Write register."""
Expand Down
2 changes: 1 addition & 1 deletion custom_components/solax_modbus/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/wills106/homsassistant-solax-modbus/issues",
"requirements": ["pymodbus>=3.5.2"],
"version": "2024.02.5.3"
"version": "2024.02.5.4"
}

0 comments on commit fb0c1cb

Please sign in to comment.