1
0

const.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 = "WoSensorTHP"
  32. IO_METER = "WoIOSensorTH"
  33. MOTION_SENSOR = "WoPresence"
  34. COLOR_BULB = "WoBulb"
  35. CEILING_LIGHT = "WoCeiling"
  36. LOCK = "WoLock"
  37. LOCK_PRO = "WoLockPro"
  38. BLIND_TILT = "WoBlindTilt"
  39. HUB2 = "WoHub2"
  40. class LockStatus(Enum):
  41. LOCKED = 0
  42. UNLOCKED = 1
  43. LOCKING = 2
  44. UNLOCKING = 3
  45. LOCKING_STOP = 4 # LOCKING_BLOCKED
  46. UNLOCKING_STOP = 5 # UNLOCKING_BLOCKED
  47. NOT_FULLY_LOCKED = 6 # LATCH_LOCKED - Only EU lock type