light_strip.py 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. from __future__ import annotations
  2. import logging
  3. from typing import Any
  4. from .base_light import SwitchbotSequenceBaseLight
  5. from .device import REQ_HEADER, ColorMode
  6. STRIP_COMMMAND_HEADER = "4901"
  7. STRIP_REQUEST = f"{REQ_HEADER}4A01"
  8. STRIP_COMMAND = f"{REQ_HEADER}{STRIP_COMMMAND_HEADER}"
  9. # Strip keys
  10. STRIP_ON_KEY = f"{STRIP_COMMAND}01"
  11. STRIP_OFF_KEY = f"{STRIP_COMMAND}02"
  12. RGB_BRIGHTNESS_KEY = f"{STRIP_COMMAND}12"
  13. BRIGHTNESS_KEY = f"{STRIP_COMMAND}14"
  14. _LOGGER = logging.getLogger(__name__)
  15. class SwitchbotLightStrip(SwitchbotSequenceBaseLight):
  16. """Representation of a Switchbot light strip."""
  17. @property
  18. def color_modes(self) -> set[ColorMode]:
  19. """Return the supported color modes."""
  20. return {ColorMode.RGB}
  21. async def update(self) -> None:
  22. """Update state of device."""
  23. result = await self._send_command(STRIP_REQUEST)
  24. self._update_state(result)
  25. async def turn_on(self) -> bool:
  26. """Turn device on."""
  27. result = await self._send_command(STRIP_ON_KEY)
  28. self._update_state(result)
  29. return self._check_command_result(result, 1, {0x80})
  30. async def turn_off(self) -> bool:
  31. """Turn device off."""
  32. result = await self._send_command(STRIP_OFF_KEY)
  33. self._update_state(result)
  34. return self._check_command_result(result, 1, {0x00})
  35. async def set_brightness(self, brightness: int) -> bool:
  36. """Set brightness."""
  37. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  38. result = await self._send_command(f"{BRIGHTNESS_KEY}{brightness:02X}")
  39. self._update_state(result)
  40. return self._check_command_result(result, 1, {0x80})
  41. async def set_color_temp(self, brightness: int, color_temp: int) -> bool:
  42. """Set color temp."""
  43. # not supported on this device
  44. async def set_rgb(self, brightness: int, r: int, g: int, b: int) -> bool:
  45. """Set rgb."""
  46. assert 0 <= brightness <= 100, "Brightness must be between 0 and 100"
  47. assert 0 <= r <= 255, "r must be between 0 and 255"
  48. assert 0 <= g <= 255, "g must be between 0 and 255"
  49. assert 0 <= b <= 255, "b must be between 0 and 255"
  50. result = await self._send_command(
  51. f"{RGB_BRIGHTNESS_KEY}{brightness:02X}{r:02X}{g:02X}{b:02X}"
  52. )
  53. self._update_state(result)
  54. return self._check_command_result(result, 1, {0x80})
  55. def _update_state(self, result: bytes | None) -> None:
  56. """Update device state."""
  57. if not result or len(result) < 10:
  58. return
  59. self._state["r"] = result[3]
  60. self._state["g"] = result[4]
  61. self._state["b"] = result[5]
  62. self._override_adv_data = {
  63. "isOn": result[1] == 0x80,
  64. "color_mode": result[10],
  65. }
  66. _LOGGER.debug("%s: update state: %s = %s", self.name, result.hex(), self._state)
  67. self._fire_callbacks()