mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 12:37:07 +00:00
chore(wip): save updates
This commit is contained in:
parent
1df8d3f617
commit
355e9cde12
1 changed files with 9 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
using Crestron.SimplSharpPro;
|
using Crestron.SimplSharpPro;
|
||||||
using Crestron.SimplSharpPro.DeviceSupport;
|
using Crestron.SimplSharpPro.DeviceSupport;
|
||||||
using Crestron.SimplSharpPro.DM;
|
using Crestron.SimplSharpPro.DM;
|
||||||
|
|
@ -207,6 +208,14 @@ namespace PepperDash_Essentials_DM.Chassis
|
||||||
|
|
||||||
VideoOutputRouteFeedbacks.Add(new IntFeedback(index.ToString(CultureInfo.InvariantCulture),
|
VideoOutputRouteFeedbacks.Add(new IntFeedback(index.ToString(CultureInfo.InvariantCulture),
|
||||||
() => output.VideoOutFeedback == null ? 0 : (int)output.VideoOutFeedback.Number));
|
() => output.VideoOutFeedback == null ? 0 : (int)output.VideoOutFeedback.Number));
|
||||||
|
|
||||||
|
var audioKey = string.Format("audioOut{0}", index);
|
||||||
|
var audioPort = new RoutingOutputPort(audioKey, eRoutingSignalType.Audio, eRoutingPortConnectionType.DigitalAudio,
|
||||||
|
output, this)
|
||||||
|
{
|
||||||
|
FeedbackMatchObject = output,
|
||||||
|
Port = output.OutputPort.AudioOutput;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
_chassis.DMOutputChange += _chassis_OutputChange;
|
_chassis.DMOutputChange += _chassis_OutputChange;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue