Resolves ecs-1117. Tested at Einstein

This commit is contained in:
Neil Dorin
2019-06-25 13:43:21 -06:00
parent af12a81c00
commit 53e0599e2a
3 changed files with 67 additions and 4 deletions

View File

@@ -42,6 +42,8 @@ namespace PepperDash.Essentials.Bridges
commMonitor.CommunicationMonitor.IsOnlineFeedback.LinkInputSig(trilist.BooleanInput[JoinMap.IsOnline]);
}
InputNumberFeedback = new IntFeedback(() => { return InputNumber; });
// Two way feedbacks
var twoWayDisplay = displayDevice as PepperDash.Essentials.Core.TwoWayDisplayBase;
if (twoWayDisplay != null)
@@ -50,7 +52,7 @@ namespace PepperDash.Essentials.Bridges
twoWayDisplay.CurrentInputFeedback.OutputChange += new EventHandler<FeedbackEventArgs>(CurrentInputFeedback_OutputChange);
InputNumberFeedback = new IntFeedback(() => { return InputNumber; });
InputNumberFeedback.LinkInputSig(_TriList.UShortInput[JoinMap.InputSelect]);
}