1
0

light_strip.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. from __future__ import annotations
  2. import asyncio
  3. import logging
  4. from typing import Any
  5. from switchbot.models import SwitchBotAdvertisement
  6. from .device import SwitchbotDevice, SwitchbotSequenceDevice
  7. REQ_HEADER = "570f"
  8. STRIP_COMMMAND_HEADER = "4901"
  9. STRIP_REQUEST = f"{REQ_HEADER}4A01"
  10. STRIP_COMMAND = f"{REQ_HEADER}{STRIP_COMMMAND_HEADER}"
  11. # Strip keys
  12. STRIP_ON_KEY = f"{STRIP_COMMAND}01"
  13. STRIP_OFF_KEY = f"{STRIP_COMMAND}02"
  14. RGB_BRIGHTNESS_KEY = f"{STRIP_COMMAND}12"
  15. BRIGHTNESS_KEY = f"{STRIP_COMMAND}14"
  16. _LOGGER = logging.getLogger(__name__)
  17. from .device import ColorMode
  18. class SwitchbotLightStrip(SwitchbotSequenceDevice):
  19. """Representation of a Switchbot light strip."""
  20. def __init__(self, *args: Any, **kwargs: Any) -> None:
  21. """Switchbot light strip constructor."""
  22. super().__init__(*args, **kwargs)
  23. self._state: dict[str, Any] = {}
  24. @property
  25. def on(self) -> bool | None:
  26. """Return if bulb is on."""
  27. return self.is_on()
  28. @property
  29. def rgb(self) -> tuple[int, int, int] | None:
  30. """Return the current rgb value."""
  31. if "r" not in self._state or "g" not in self._state or "b" not in self._state:
  32. return None
  33. return self._state["r"], self._state["g"], self._state["b"]
  34. @property
  35. def brightness(self) -> int | None:
  36. """Return the current brightness value."""
  37. return self._get_adv_value("brightness") or 0
  38. @property
  39. def color_modes(self) -> set[ColorMode]:
  40. """Return the supported color modes."""
  41. return {ColorMode.RGB}
  42. @property
  43. def min_temp(self) -> int:
  44. """Return minimum color temp."""
  45. return 0
  46. @property
  47. def max_temp(self) -> int:
  48. """Return maximum color temp."""
  49. return 0
  50. @property
  51. def color_mode(self) -> ColorMode:
  52. """Return the current color mode."""
  53. return ColorMode(self._get_adv_value("color_mode") or 0)
  54. async def update(self) -> None:
  55. """Update state of device."""
  56. result = await self._sendcommand(STRIP_REQUEST)
  57. self._update_state(result)
  58. async def turn_on(self) -> bool:
  59. """Turn device on."""
  60. result = await self._sendcommand(STRIP_ON_KEY)
  61. self._update_state(result)
  62. return result[1] == 0x80
  63. async def turn_off(self) -> bool:
  64. """Turn device off."""
  65. result = await self._sendcommand(STRIP_OFF_KEY)
  66. self._update_state(result)
  67. return result[1] == 0x00
  68. async def set_brightness(self, brightness: int) -> bool:
  69. """Set brightness."""
  70. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  71. result = await self._sendcommand(f"{BRIGHTNESS_KEY}{brightness:02X}")
  72. self._update_state(result)
  73. return result[1] == 0x80
  74. async def set_rgb(self, brightness: int, r: int, g: int, b: int) -> bool:
  75. """Set rgb."""
  76. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  77. assert 0 <= r <= 255, "r must be between 0 and 255"
  78. assert 0 <= g <= 255, "g must be between 0 and 255"
  79. assert 0 <= b <= 255, "b must be between 0 and 255"
  80. result = await self._sendcommand(
  81. f"{RGB_BRIGHTNESS_KEY}{brightness:02X}{r:02X}{g:02X}{b:02X}"
  82. )
  83. self._update_state(result)
  84. return result[1] == 0x80
  85. def is_on(self) -> bool | None:
  86. """Return bulb state from cache."""
  87. return self._get_adv_value("isOn")
  88. def _update_state(self, result: bytes) -> None:
  89. """Update device state."""
  90. if len(result) < 10:
  91. return
  92. self._state["r"] = result[3]
  93. self._state["g"] = result[4]
  94. self._state["b"] = result[5]
  95. _LOGGER.debug(
  96. "%s: Bulb update state: %s = %s", self.name, result.hex(), self._state
  97. )
  98. self._fire_callbacks()