File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/arduino/app_peripherals/camera Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 33# SPDX-License-Identifier: MPL-2.0
44
55from .camera import Camera
6+ from .base_camera import BaseCamera
67from .v4l_camera import V4LCamera
78from .ip_camera import IPCamera
89from .websocket_camera import WebSocketCamera
910from .errors import *
1011
1112__all__ = [
1213 "Camera" ,
14+ "BaseCamera" ,
1315 "V4LCamera" ,
1416 "IPCamera" ,
1517 "WebSocketCamera" ,
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def stop(self) -> None:
7171 try :
7272 self ._close_camera ()
7373 self ._is_started = False
74- self .logger .info (f"Stopped { self .__class__ .__name__ } " )
74+ self .logger .info (f"Successfully stopped { self .__class__ .__name__ } " )
7575 except Exception as e :
7676 self .logger .warning (f"Error stopping camera: { e } " )
7777
You can’t perform that action at this time.
0 commit comments