bulb.py 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. from __future__ import annotations
  2. import asyncio
  3. from enum import Enum
  4. from typing import Any
  5. from switchbot.models import SwitchBotAdvertisement
  6. from .device import SwitchbotDevice
  7. REQ_HEADER = "570f"
  8. BULB_COMMMAND_HEADER = "4701"
  9. BULB_REQUEST = f"{REQ_HEADER}4801"
  10. BULB_COMMAND = f"{REQ_HEADER}{BULB_COMMMAND_HEADER}"
  11. # Bulb keys
  12. BULB_ON_KEY = f"{BULB_COMMAND}01"
  13. BULB_OFF_KEY = f"{BULB_COMMAND}02"
  14. RGB_BRIGHTNESS_KEY = f"{BULB_COMMAND}12"
  15. CW_BRIGHTNESS_KEY = f"{BULB_COMMAND}13"
  16. BRIGHTNESS_KEY = f"{BULB_COMMAND}14"
  17. RGB_KEY = f"{BULB_COMMAND}16"
  18. CW_KEY = f"{BULB_COMMAND}17"
  19. class ColorMode(Enum):
  20. OFF = 0
  21. COLOR_TEMP = 1
  22. RGB = 2
  23. EFFECT = 3
  24. class SwitchbotBulb(SwitchbotDevice):
  25. """Representation of a Switchbot bulb."""
  26. def __init__(self, *args: Any, **kwargs: Any) -> None:
  27. """Switchbot bulb constructor."""
  28. super().__init__(*args, **kwargs)
  29. self._state: dict[str, Any] = {}
  30. self._update_task: asyncio.Task = None
  31. async def update(self, interface: int | None = None) -> None:
  32. """Update state of device."""
  33. result = await self._sendcommand(BULB_REQUEST)
  34. self._update_state(result)
  35. async def turn_on(self) -> bool:
  36. """Turn device on."""
  37. result = await self._sendcommand(BULB_ON_KEY)
  38. self._update_state(result)
  39. return result[1] == 0x80
  40. async def turn_off(self) -> bool:
  41. """Turn device off."""
  42. result = await self._sendcommand(BULB_OFF_KEY)
  43. self._update_state(result)
  44. return result[1] == 0x00
  45. async def set_brightness(self, brightness: int) -> bool:
  46. """Set brightness."""
  47. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  48. result = await self._sendcommand(f"{BRIGHTNESS_KEY}{brightness:02X}")
  49. self._update_state(result)
  50. return result[1] == 0x80
  51. async def set_color_temp(self, brightness: int, color_temp: int) -> bool:
  52. """Set color temp."""
  53. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  54. assert 2700 <= color_temp <= 6500, "Color Temp must be between 0 and 100"
  55. result = await self._sendcommand(
  56. f"{CW_BRIGHTNESS_KEY}{brightness:02X}{color_temp:04X}"
  57. )
  58. self._update_state(result)
  59. return result[1] == 0x80
  60. async def set_rgb(self, brightness: int, r: int, g: int, b: int) -> bool:
  61. """Set rgb."""
  62. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  63. assert 0 <= r <= 255, "r must be between 0 and 255"
  64. assert 0 <= g <= 255, "g must be between 0 and 255"
  65. assert 0 <= b <= 255, "b must be between 0 and 255"
  66. result = await self._sendcommand(
  67. f"{RGB_BRIGHTNESS_KEY}{brightness:02X}{r:02X}{g:02X}{b:02X}"
  68. )
  69. self._update_state(result)
  70. return result[1] == 0x80
  71. async def turn_off(self) -> bool:
  72. """Turn device off."""
  73. result = await self._sendcommand(BULB_OFF_KEY)
  74. self._update_state(result)
  75. return result[1] == 0x00
  76. def is_on(self) -> bool | None:
  77. """Return blub state from cache."""
  78. return self._get_adv_value("isOn")
  79. @property
  80. def on(self) -> bool:
  81. """Return if bulb is on."""
  82. return self.is_on()
  83. @property
  84. def rgb(self) -> tuple[int, int, int] | None:
  85. """Return the current rgb value."""
  86. if "r" not in self._state or "g" not in self._state or "b" not in self._state:
  87. return None
  88. return self._state["r"], self._state["g"], self._state["b"]
  89. @property
  90. def color_temp(self) -> int | None:
  91. """Return the current color temp value."""
  92. if "cw" not in self._state:
  93. return None
  94. return self._state["cw"]
  95. @property
  96. def brightness(self) -> int | None:
  97. """Return the current brightness value."""
  98. return self._get_adv_value("brightness")
  99. @property
  100. def color_mode(self) -> ColorMode:
  101. """Return the current color mode."""
  102. return ColorMode(self._get_adv_value("color_mode") or 0)
  103. def _update_state(self, result: bytes) -> None:
  104. """Update device state."""
  105. self._state["r"] = result[3]
  106. self._state["g"] = result[4]
  107. self._state["b"] = result[5]
  108. self._state["cw"] = int(result[6:7].hex(), 16)
  109. self._fire_callbacks()
  110. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  111. """Update device data from advertisement."""
  112. current_state = self._get_adv_value("sequence_number")
  113. super().update_from_advertisement()
  114. if current_state != self._get_adv_value("sequence_number"):
  115. asyncio.ensure_future(self.update())