Skip to content

Commit

Permalink
Fixed issue #23 Issue on Config
Browse files Browse the repository at this point in the history
Fixed issue #23 Issue on Config / Setup - Missing Parameter
  • Loading branch information
dave-code-ruiz authored Apr 28, 2023
1 parent 4085fb0 commit 81292d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/elkbledom/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async def async_step_manual(self, user_input: "dict[str, Any] | None" = None):

async def toggle_light(self):
if not self._instance:
self._instance = BLEDOMInstance(self.mac, False, self.hass)
self._instance = BLEDOMInstance(self.mac, False, 120, self.hass)
try:
await self._instance.update()
if self._instance.is_on:
Expand Down

0 comments on commit 81292d7

Please sign in to comment.