namespace PepperDash.Essentials.Devices.Common.Cameras
{
///
/// Defines the contract for IHasCameraFocusControl
///
public interface IHasCameraFocusControl : IHasCameraControls
{
///
/// Focuses the camera near
///
void FocusNear();
///
/// Focuses the camera far
///
void FocusFar();
///
/// Stops the camera focus movement
///
void FocusStop();
///
/// Triggers the camera's auto focus functionality, if available.
///
void TriggerAutoFocus();
}
}