mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 04:34:56 +00:00
Clears camera mute mode when turning camera auto mode off
This commit is contained in:
@@ -571,6 +571,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
|||||||
prefix + "/Status/Standby" + Delimiter +
|
prefix + "/Status/Standby" + Delimiter +
|
||||||
prefix + "/Status/Video/Selfview" + Delimiter +
|
prefix + "/Status/Video/Selfview" + Delimiter +
|
||||||
prefix + "/Status/Video/Layout" + Delimiter +
|
prefix + "/Status/Video/Layout" + Delimiter +
|
||||||
|
prefix + "/Status/Video/Input/MainVideoMute" + Delimiter +
|
||||||
prefix + "/Bookings" + Delimiter +
|
prefix + "/Bookings" + Delimiter +
|
||||||
prefix + "/Event/CallDisconnect" + Delimiter +
|
prefix + "/Event/CallDisconnect" + Delimiter +
|
||||||
prefix + "/Event/Bookings" + Delimiter +
|
prefix + "/Event/Bookings" + Delimiter +
|
||||||
@@ -1660,12 +1661,21 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
|
|||||||
|
|
||||||
public void CameraAutoModeOn()
|
public void CameraAutoModeOn()
|
||||||
{
|
{
|
||||||
|
if (CameraIsOffFeedback.BoolValue)
|
||||||
|
{
|
||||||
|
CameraMuteOff();
|
||||||
|
}
|
||||||
|
|
||||||
SendText("xCommand Cameras SpeakerTrack Activate");
|
SendText("xCommand Cameras SpeakerTrack Activate");
|
||||||
CameraMuteOff();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CameraAutoModeOff()
|
public void CameraAutoModeOff()
|
||||||
{
|
{
|
||||||
|
if (CameraIsOffFeedback.BoolValue)
|
||||||
|
{
|
||||||
|
CameraMuteOff();
|
||||||
|
}
|
||||||
|
|
||||||
SendText("xCommand Cameras SpeakerTrack Deactivate");
|
SendText("xCommand Cameras SpeakerTrack Deactivate");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user