using PepperDash.Essentials.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PepperDash.Essentials.Devices.Common.Cameras
{
///
/// To be implmented on codecs that can disable their camera(s) to blank the near end video
///
public interface IHasCameraOff : IHasCameraControls
{
///
/// Feedback that indicates whether the camera is off
///
BoolFeedback CameraIsOffFeedback { get; }
///
/// Turns the camera off, blanking the near end video
///
void CameraOff();
}
}