fix camera mute command

This commit is contained in:
Andrew Welker
2020-10-01 10:07:08 -06:00
parent f8f5c2474c
commit 95016c3ec6
2 changed files with 3 additions and 3 deletions

View File

@@ -316,7 +316,7 @@ namespace PepperDash.Essentials.Core.Bridges
{
Debug.Console(1, "Factory Attempting to create new EiscApiAdvanced Device");
var controlProperties = dc.Properties["control"].ToObject<ControlPropertiesConfig>();
var controlProperties = CommFactory.GetControlPropertiesConfig(dc);
switch (dc.Type)
{

View File

@@ -1587,7 +1587,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
public void CameraOff()
{
SendText("zCommand Call Camera Mute: On");
SendText("zConfiguration Call Camera Mute: On");
}
#endregion
@@ -1602,7 +1602,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
//Zoom doesn't support camera auto modes. Setting this to just unmute video
public void CameraAutoModeOff()
{
SendText("zCommand Call Camera Mute: Off");
SendText("zConfiguration Call Camera Mute: Off");
}
public void CameraAutoModeToggle()