示例#1
0
 public void SetVideoRoute(uint input)
 {
     try
     {
         DmTx200Base.eSourceSelection test = (DmTx200Base.eSourceSelection)input;
         dmTx201C.VideoSource = test;
         CrestronConsole.PrintLine("DMTXSetVideo Routing is: " + input);
     }
     catch (Exception e)
     {
         CrestronConsole.PrintLine("DMTXSetVideo Error IS: " + e);
     }
 }
示例#2
0
 void dmTX_DmTXAudioChangeEvent(DmTx200Base.eSourceSelection audioSource)
 {
     uiLogic.SetFeedback(35, 38, (uint)audioSource + 35, userInterface);
     CrestronConsole.PrintLine("Control System DMAudio Change Event Number is: " + audioSource);
 }
示例#3
0
 void dmTX_DmTXVideoChangeEvent(DmTx200Base.eSourceSelection videoSource)
 {
     CrestronConsole.PrintLine("Control System DMBideo Change Event Number is: " + videoSource);
     uiLogic.SetFeedback(31, 34, (uint)videoSource + 31, userInterface);
 }