mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 05:14:51 +00:00
Also updates RunRouteAction in EssentialsHuddleVtc1Room to still call down in to main RunRouteAction method if called with a sourceListKey
17 lines
604 B
C#
17 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
namespace PepperDash.Essentials.Devices.Displays
|
|
{
|
|
public interface IInputHdmi1 { void InputHdmi1(); }
|
|
public interface IInputHdmi2 { void InputHdmi2(); }
|
|
public interface IInputHdmi3 { void InputHdmi3(); }
|
|
public interface IInputHdmi4 { void InputHdmi4(); }
|
|
public interface IInputDisplayPort1 { void InputDisplayPort1(); }
|
|
public interface IInputDisplayPort2 { void InputDisplayPort2(); }
|
|
public interface IInputVga1 { void InputVga1(); }
|
|
|
|
} |