From 8f440c3cb9beb21702bb05ba5de44018fed223f8 Mon Sep 17 00:00:00 2001 From: Alex Johnson Date: Thu, 7 May 2020 11:27:07 -0400 Subject: [PATCH] Fixes mapping for DM-TX-401 where displayport=1 and hdmi=2 --- .../Endpoints/Transmitters/DmTx401CController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs index 38e97eb8..c0c2b47e 100644 --- a/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs +++ b/essentials-framework/Essentials DM/Essentials_DM/Endpoints/Transmitters/DmTx401CController.cs @@ -142,12 +142,12 @@ namespace PepperDash.Essentials.DM In1VideoSyncFeedback = new BoolFeedback("In1VideoSync", () => { - return (bool)tx.HdmiInput.SyncDetectedFeedback.BoolValue; + return (bool)tx.DisplayPortInput.SyncDetectedFeedback.BoolValue; }); In2VideoSyncFeedback = new BoolFeedback("In2VideoSync", () => { - return (bool)tx.DisplayPortInput.SyncDetectedFeedback.BoolValue; + return (bool)tx.HdmiInput.SyncDetectedFeedback.BoolValue; }); In3VideoSyncFeedback = new BoolFeedback("In3VideoSync", () =>