|
@@ -7,7 +7,7 @@ from typing import Any
|
|
|
|
|
|
from switchbot.models import SwitchBotAdvertisement
|
|
|
|
|
|
-from .device import SwitchbotDevice
|
|
|
+from .device import SwitchbotDevice, SwitchbotSequenceDevice
|
|
|
|
|
|
REQ_HEADER = "570f"
|
|
|
BULB_COMMMAND_HEADER = "4701"
|
|
@@ -25,16 +25,10 @@ CW_KEY = f"{BULB_COMMAND}17"
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
+from .device import ColorMode
|
|
|
|
|
|
-class ColorMode(Enum):
|
|
|
|
|
|
- OFF = 0
|
|
|
- COLOR_TEMP = 1
|
|
|
- RGB = 2
|
|
|
- EFFECT = 3
|
|
|
-
|
|
|
-
|
|
|
-class SwitchbotBulb(SwitchbotDevice):
|
|
|
+class SwitchbotBulb(SwitchbotSequenceDevice):
|
|
|
"""Representation of a Switchbot bulb."""
|
|
|
|
|
|
def __init__(self, *args: Any, **kwargs: Any) -> None:
|
|
@@ -141,18 +135,3 @@ class SwitchbotBulb(SwitchbotDevice):
|
|
|
"%s: Bulb update state: %s = %s", self.name, result.hex(), self._state
|
|
|
)
|
|
|
self._fire_callbacks()
|
|
|
-
|
|
|
- def update_from_advertisement(self, advertisement: SwitchBotAdvertisement) -> None:
|
|
|
- """Update device data from advertisement."""
|
|
|
- current_state = self._get_adv_value("sequence_number")
|
|
|
- super().update_from_advertisement(advertisement)
|
|
|
- new_state = self._get_adv_value("sequence_number")
|
|
|
- _LOGGER.debug(
|
|
|
- "%s: Bulb update advertisement: %s (seq before: %s) (seq after: %s)",
|
|
|
- self.name,
|
|
|
- advertisement,
|
|
|
- current_state,
|
|
|
- new_state,
|
|
|
- )
|
|
|
- if current_state != new_state:
|
|
|
- asyncio.ensure_future(self.update())
|