namespace PepperDash.Essentials.Devices.Common.Cameras { /// /// Interface for devices that have auto focus mode control /// public interface IHasAutoFocusMode : IHasCameraControls { /// /// Sets the focus mode to auto or manual, or toggles between them. /// void SetFocusModeAuto(); /// /// Sets the focus mode to manual, allowing for manual focus adjustments. /// void SetFocusModeManual(); /// /// Toggles the focus mode between auto and manual. /// void ToggleFocusMode(); } }