Fix Logi Circle cameras not responding to turn on/off commands (#27317)
This commit is contained in:
parent
13956d3516
commit
15c54f34df
1 changed files with 2 additions and 2 deletions
|
@ -148,11 +148,11 @@ class LogiCam(Camera):
|
|||
|
||||
async def async_turn_off(self):
|
||||
"""Disable streaming mode for this camera."""
|
||||
await self._camera.set_streaming_mode(False)
|
||||
await self._camera.set_config("streaming", False)
|
||||
|
||||
async def async_turn_on(self):
|
||||
"""Enable streaming mode for this camera."""
|
||||
await self._camera.set_streaming_mode(True)
|
||||
await self._camera.set_config("streaming", True)
|
||||
|
||||
@property
|
||||
def should_poll(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue