|
@@ -43,7 +43,7 @@ class SwitchbotBulb(SwitchbotDevice):
|
|
self._state: dict[str, Any] = {}
|
|
self._state: dict[str, Any] = {}
|
|
|
|
|
|
@property
|
|
@property
|
|
- def on(self) -> bool:
|
|
|
|
|
|
+ def on(self) -> bool | None:
|
|
"""Return if bulb is on."""
|
|
"""Return if bulb is on."""
|
|
return self.is_on()
|
|
return self.is_on()
|
|
|
|
|
|
@@ -125,12 +125,6 @@ class SwitchbotBulb(SwitchbotDevice):
|
|
self._update_state(result)
|
|
self._update_state(result)
|
|
return result[1] == 0x80
|
|
return result[1] == 0x80
|
|
|
|
|
|
- async def turn_off(self) -> bool:
|
|
|
|
- """Turn device off."""
|
|
|
|
- result = await self._sendcommand(BULB_OFF_KEY)
|
|
|
|
- self._update_state(result)
|
|
|
|
- return result[1] == 0x00
|
|
|
|
-
|
|
|
|
def is_on(self) -> bool | None:
|
|
def is_on(self) -> bool | None:
|
|
"""Return bulb state from cache."""
|
|
"""Return bulb state from cache."""
|
|
return self._get_adv_value("isOn")
|
|
return self._get_adv_value("isOn")
|