bulb.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. async def update(self, interface: int | None = None) -> None:
  31. """Update state of device."""
  32. result = await self._sendcommand(BULB_REQUEST)
  33. self._update_state(result)
  34. async def turn_on(self) -> bool:
  35. """Turn device on."""
  36. result = await self._sendcommand(BULB_ON_KEY)
  37. self._update_state(result)
  38. return result[1] == 0x80
  39. async def turn_off(self) -> bool:
  40. """Turn device off."""
  41. result = await self._sendcommand(BULB_OFF_KEY)
  42. self._update_state(result)
  43. return result[1] == 0x00
  44. async def set_brightness(self, brightness: int) -> bool:
  45. """Set brightness."""
  46. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  47. result = await self._sendcommand(f"{BRIGHTNESS_KEY}{brightness:02X}")
  48. self._update_state(result)
  49. return result[1] == 0x80
  50. async def set_color_temp(self, brightness: int, color_temp: int) -> bool:
  51. """Set color temp."""
  52. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  53. assert 2700 <= color_temp <= 6500, "Color Temp must be between 0 and 100"
  54. result = await self._sendcommand(
  55. f"{CW_BRIGHTNESS_KEY}{brightness:02X}{color_temp:04X}"
  56. )
  57. self._update_state(result)
  58. return result[1] == 0x80
  59. async def set_rgb(self, brightness: int, r: int, g: int, b: int) -> bool:
  60. """Set rgb."""
  61. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  62. assert 0 <= r <= 255, "r must be between 0 and 255"
  63. assert 0 <= g <= 255, "g must be between 0 and 255"
  64. assert 0 <= b <= 255, "b must be between 0 and 255"
  65. result = await self._sendcommand(
  66. f"{RGB_BRIGHTNESS_KEY}{brightness:02X}{r:02X}{g:02X}{b:02X}"
  67. )
  68. self._update_state(result)
  69. return result[1] == 0x80
  70. async def turn_off(self) -> bool:
  71. """Turn device off."""
  72. result = await self._sendcommand(BULB_OFF_KEY)
  73. self._update_state(result)
  74. return result[1] == 0x00
  75. def is_on(self) -> bool | None:
  76. """Return blub state from cache."""
  77. return self._get_adv_value("isOn")
  78. @property
  79. def on(self) -> bool:
  80. """Return if bulb is on."""
  81. return self.is_on()
  82. @property
  83. def rgb(self) -> tuple[int, int, int] | None:
  84. """Return the current rgb value."""
  85. if "r" not in self._state or "g" not in self._state or "b" not in self._state:
  86. return None
  87. return self._state["r"], self._state["g"], self._state["b"]
  88. @property
  89. def color_temp(self) -> int | None:
  90. """Return the current color temp value."""
  91. if "cw" not in self._state:
  92. return None
  93. return self._state["cw"]
  94. @property
  95. def brightness(self) -> int | None:
  96. """Return the current brightness value."""
  97. return self._get_adv_value("brightness")
  98. @property
  99. def color_mode(self) -> ColorMode:
  100. """Return the current color mode."""
  101. return ColorMode(self._get_adv_value("color_mode") or 0)
  102. def _update_state(self, result: bytes) -> None:
  103. """Update device state."""
  104. self._state["r"] = result[3]
  105. self._state["g"] = result[4]
  106. self._state["b"] = result[5]
  107. self._state["cw"] = int(result[6:7].hex(), 16)
  108. self._fire_callbacks()
  109. def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
  110. """Update device data from advertisement."""
  111. current_state = self._get_adv_value("sequence_number")
  112. super().update_from_advertisement()
  113. if current_state != self._get_adv_value("sequence_number"):
  114. asyncio.ensure_future(self.update())