J. Nick Koston 2 سال پیش
والد
کامیت
62b5e5b39d
2فایلهای تغییر یافته به همراه7 افزوده شده و 2 حذف شده
  1. 2 2
      switchbot/devices/curtain.py
  2. 5 0
      switchbot/devices/device.py

+ 2 - 2
switchbot/devices/curtain.py

@@ -112,7 +112,7 @@ class SwitchbotCurtain(SwitchbotDevice):
         )
 
         if _data in (b"\x07", b"\x00"):
-            _LOGGER.error("Unsuccessfull, please try again")
+            _LOGGER.error("Unsuccessful, please try again")
             return None
 
         self.ext_info_sum["device0"] = {
@@ -145,7 +145,7 @@ class SwitchbotCurtain(SwitchbotDevice):
         )
 
         if _data in (b"\x07", b"\x00"):
-            _LOGGER.error("Unsuccessfull, please try again")
+            _LOGGER.error("Unsuccessful, please try again")
             return None
 
         _state_of_charge = [

+ 5 - 0
switchbot/devices/device.py

@@ -162,6 +162,11 @@ class SwitchbotDevice:
         async with self._connect_lock:
             if not self._client:
                 return
+            _LOGGER.debug(
+                "%s: Disconnecting from SwitchBot Device after timeout of %s",
+                self.name,
+                DISCONNECT_DELAY,
+            )
             await self._client.disconnect()
             self._client = None
             self._read_char = None