mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 05:05:00 +00:00
Adds condition to DmChassisControllerBridge to use the endpoint online feedback from the input card when a basic HDBaseT transmitter is found.
This commit is contained in:
@@ -69,7 +69,10 @@ namespace PepperDash.Essentials.Bridges
|
|||||||
{
|
{
|
||||||
if (txDevice != null)
|
if (txDevice != null)
|
||||||
{
|
{
|
||||||
txDevice.IsOnline.LinkInputSig(trilist.BooleanInput[joinMap.InputEndpointOnline + ioSlot]);
|
if(!(txDevice is BasicDmTxControllerBase))
|
||||||
|
txDevice.IsOnline.LinkInputSig(trilist.BooleanInput[joinMap.InputEndpointOnline + ioSlot]);
|
||||||
|
else
|
||||||
|
dmChassis.InputEndpointOnlineFeedbacks[ioSlot].LinkInputSig(trilist.BooleanInput[joinMap.InputEndpointOnline + ioSlot]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -206,6 +206,7 @@
|
|||||||
<Compile Include="AppServer\Volumes.cs" />
|
<Compile Include="AppServer\Volumes.cs" />
|
||||||
<Compile Include="Room\Emergency\EsentialsRoomEmergencyContactClosure.cs" />
|
<Compile Include="Room\Emergency\EsentialsRoomEmergencyContactClosure.cs" />
|
||||||
<Compile Include="Room\Types\EssentialsHuddleVtc1Room.cs" />
|
<Compile Include="Room\Types\EssentialsHuddleVtc1Room.cs" />
|
||||||
|
<Compile Include="Room\Types\EssentialsNDisplayRoomBase.cs" />
|
||||||
<Compile Include="Room\Types\EssentialsPresentationRoom.cs" />
|
<Compile Include="Room\Types\EssentialsPresentationRoom.cs" />
|
||||||
<Compile Include="Room\Types\EssentialsRoomBase.cs" />
|
<Compile Include="Room\Types\EssentialsRoomBase.cs" />
|
||||||
<Compile Include="Room\Config\EssentialsRoomConfig.cs" />
|
<Compile Include="Room\Config\EssentialsRoomConfig.cs" />
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using Crestron.SimplSharp;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Room.Types
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Base clas for rooms with more than a single display
|
||||||
|
/// </summary>
|
||||||
|
//public abstract class EssentialsNDisplayRoomBase : EssentialsRoomBase
|
||||||
|
//{
|
||||||
|
|
||||||
|
//}
|
||||||
|
}
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
// public Dictionary<uint, IRoutingSinkNoSwitching> Displays { get; private set; }
|
// public Dictionary<uint, IRoutingSinkNoSwitching> Displays { get; private set; }
|
||||||
|
|
||||||
// public IRoutingSinkNoSwitching DefaultAudioDevice { get; private set; }
|
// public IRoutingSinkNoSwitching DefaultAudioDevice { get; private set; }
|
||||||
// public IBasicVolumeControls DefaultVolumeControls { get; private set; }
|
// public IBasicVolumeControls DefaultVolumeControls { get; private set; }C:\Working Directories\PD\essentials\PepperDashEssentials\Room\Types\EssentialsPresentationRoom.cs
|
||||||
|
|
||||||
// /// <summary>
|
// /// <summary>
|
||||||
// /// The config name of the source list
|
// /// The config name of the source list
|
||||||
|
|||||||
Reference in New Issue
Block a user