namespace PepperDash.Essentials.Devices.Common.Cameras { /// /// Enum for camera control modes /// public enum eCameraControlMode { /// /// Manual control mode, where the camera is controlled directly by the user or system /// Manual = 0, /// /// Off control mode, where the camera is turned off or disabled /// Off, /// /// Auto control mode, where the camera automatically adjusts settings based on the environment or conditions /// Auto } }