mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Added GetSelfViewMode method to ZoomRoom.cs, upated Removed if statement in HideConfSelfVideo property that was blocking feedback updates and setting of the property from boot. Tested with Zoom Rooms system on site and verified working. Closes #781.
This commit is contained in:
parent
87ab43c745
commit
d193de79da
2 changed files with 8 additions and 3 deletions
|
|
@ -1168,11 +1168,11 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||
}
|
||||
set
|
||||
{
|
||||
if (value != _hideConfSelfVideo)
|
||||
{
|
||||
//if (value != _hideConfSelfVideo)
|
||||
//{
|
||||
_hideConfSelfVideo = value;
|
||||
NotifyPropertyChanged("HideConfSelfVideo");
|
||||
}
|
||||
//}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -329,6 +329,11 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||
|
||||
public BoolFeedback SelfviewIsOnFeedback { get; private set; }
|
||||
|
||||
public void GetSelfViewMode()
|
||||
{
|
||||
SendText("zConfiguration Video hide_conf_self_video");
|
||||
}
|
||||
|
||||
public void SelfViewModeOn()
|
||||
{
|
||||
SendText("zConfiguration Video hide_conf_self_video: off");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue