namespace PepperDash.Essentials.Devices.Common.Cameras
{
///
/// Defines the contract for IHasCameraTiltControl
///
public interface IHasCameraTiltControl : IHasCameraControls
{
///
/// Tilts the camera down
///
void TiltDown();
///
/// Tilts the camera up
///
void TiltUp();
///
/// Stops the camera tilt movement
///
void TiltStop();
}
}