diff --git a/homeassistant/components/logi_circle/camera.py b/homeassistant/components/logi_circle/camera.py index 27b81d8331e..ec8f1595168 100644 --- a/homeassistant/components/logi_circle/camera.py +++ b/homeassistant/components/logi_circle/camera.py @@ -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):