Skip to content

Commit

Permalink
Bump a version
Browse files Browse the repository at this point in the history
Signed-off-by: Serge Arbuzov <info@whitediver.com>
  • Loading branch information
Arbuzov committed Apr 22, 2023
1 parent 46cd341 commit 9f0cf78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions custom_components/delonghi_primadonna/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __init__(self, config: dict, hass: HomeAssistant) -> None:
self.notify = False
self.steam_nozzle = NOZZLE_STATE[-1]
self.service = SERVICE_STATE[0]
self.status = DEVICE_STATUS[0]
self.status = DEVICE_STATUS[5]

async def disconnect(self):
_LOGGER.info('Disconnect from %s', self.mac)
Expand All @@ -181,7 +181,7 @@ async def _connect(self):
f'A device with address {self.mac} could not be found.')
self._client = BleakClient(self._device)
_LOGGER.info('Connect to %s', self.mac)
await self._client.connect(timeout=20.0)
await self._client.connect()
await self._client.start_notify(
uuid.UUID(CONTROLL_CHARACTERISTIC),
self._handle_data
Expand Down
2 changes: 1 addition & 1 deletion custom_components/delonghi_primadonna/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"documentation": "https://github.com/Arbuzov/home_assistant_delonghi_primadonna",
"iot_class": "local_polling",
"issue_tracker": "https://github.com/Arbuzov/home_assistant_delonghi_primadonna/issues",
"version": "1.3.3"
"version": "1.4.3"
}

0 comments on commit 9f0cf78

Please sign in to comment.