const.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. """Library to handle connection with Switchbot."""
  2. from __future__ import annotations
  3. from enum import Enum
  4. from .enum import StrEnum
  5. DEFAULT_RETRY_COUNT = 3
  6. DEFAULT_RETRY_TIMEOUT = 1
  7. DEFAULT_SCAN_TIMEOUT = 5
  8. class SwitchbotApiError(RuntimeError):
  9. """Raised when API call fails.
  10. This exception inherits from RuntimeError to avoid breaking existing code
  11. but will be changed to Exception in a future release.
  12. """
  13. class SwitchbotAuthenticationError(RuntimeError):
  14. """Raised when authentication fails.
  15. This exception inherits from RuntimeError to avoid breaking existing code
  16. but will be changed to Exception in a future release.
  17. """
  18. class SwitchbotAccountConnectionError(RuntimeError):
  19. """Raised when connection to Switchbot account fails.
  20. This exception inherits from RuntimeError to avoid breaking existing code
  21. but will be changed to Exception in a future release.
  22. """
  23. class SwitchbotModel(StrEnum):
  24. BOT = "WoHand"
  25. CURTAIN = "WoCurtain"
  26. HUMIDIFIER = "WoHumi"
  27. PLUG_MINI = "WoPlug"
  28. CONTACT_SENSOR = "WoContact"
  29. LIGHT_STRIP = "WoStrip"
  30. METER = "WoSensorTH"
  31. METER_PRO = "WoTHP"
  32. METER_PRO_C = "WoTHPc"
  33. IO_METER = "WoIOSensorTH"
  34. MOTION_SENSOR = "WoPresence"
  35. COLOR_BULB = "WoBulb"
  36. CEILING_LIGHT = "WoCeiling"
  37. LOCK = "WoLock"
  38. LOCK_PRO = "WoLockPro"
  39. BLIND_TILT = "WoBlindTilt"
  40. HUB2 = "WoHub2"
  41. class LockStatus(Enum):
  42. LOCKED = 0
  43. UNLOCKED = 1
  44. LOCKING = 2
  45. UNLOCKING = 3
  46. LOCKING_STOP = 4 # LOCKING_BLOCKED
  47. UNLOCKING_STOP = 5 # UNLOCKING_BLOCKED
  48. NOT_FULLY_LOCKED = 6 # LATCH_LOCKED - Only EU lock type