resolves #178 - Addedd Requested Interface IHasVideoMute

This commit is contained in:
Trevor Payne
2020-05-13 09:35:56 -05:00
parent 55d8e6f205
commit 3bf3ac2cce
4 changed files with 23 additions and 4 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.Core
{
public interface IHasVideoMute
{
BoolFeedback VideoMuteIsOn { get; }
void VideoMuteOn(bool pressRelease);
void VideoMuteOff(bool pressRelease);
void VideoMuteToggle(bool pressRelease);
}
}

View File

@@ -158,6 +158,7 @@
<Compile Include="Devices\DeviceFeedbackExtensions.cs" />
<Compile Include="Devices\EssentialsBridgeableDevice.cs" />
<Compile Include="Devices\EssentialsDevice.cs" />
<Compile Include="Devices\IProjectorInterfaces.cs" />
<Compile Include="Devices\PC\InRoomPc.cs" />
<Compile Include="Devices\PC\Laptop.cs" />
<Compile Include="Devices\ReconfigurableDevice.cs" />