Added default source and volume levels recall to EndShutdown() methods in huddle and huddleVtc1 room types. Added mute control and feedback to Avocor display driver (using volume level discrete commands, no mute available in API).

This commit is contained in:
Neil Dorin
2017-11-15 15:20:25 -07:00
parent 07e77f2ce4
commit f9cb4e8a34
5 changed files with 33 additions and 10 deletions

View File

@@ -202,6 +202,12 @@ namespace PepperDash.Essentials
/// </summary>
protected override void EndShutdown()
{
SetDefaultLevels();
RunDefaultRoute();
CrestronEnvironment.Sleep(200);
RunRouteAction("roomOff");
}

View File

@@ -265,6 +265,13 @@ namespace PepperDash.Essentials
protected override void EndShutdown()
{
VideoCodec.EndAllCalls();
SetDefaultLevels();
RunDefaultPresentRoute();
CrestronEnvironment.Sleep(200);
RunRouteAction("roomOff");
}