We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 505f16c commit 22f37d0Copy full SHA for 22f37d0
1 file changed
__init__.py
@@ -41,7 +41,7 @@
41
)
42
43
44
-def setup(hass: HomeAssistant, base_config: ConfigType) -> bool:
+async def async_setup(hass: HomeAssistant, base_config: ConfigType) -> bool:
45
"""Set up waterfurnace platform."""
46
47
config = base_config[DOMAIN]
@@ -140,6 +140,8 @@ def shutdown(event):
140
self.device_client.register_callback(self.dispatcher_new_data)
141
self.device_client.register_callback(self.reset_fail_counter)
142
143
+ _LOGGER.info(f"Connected to {self.host}")
144
+
145
while True:
146
if self._shutdown:
147
_LOGGER.debug("Graceful shutdown")
0 commit comments