mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
Fixes mapping for DM-TX-401 where displayport=1 and hdmi=2
This commit is contained in:
parent
31536e7f97
commit
8f440c3cb9
1 changed files with 2 additions and 2 deletions
|
|
@ -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", () =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue