Switches back to using EndpointOnlineFeedback for Rx online detection. Not currently working but believed to be a Crestron issue.

This commit is contained in:
Neil Dorin
2019-11-19 18:02:50 -07:00
parent 9c0440e8f0
commit db08b1fcd9
2 changed files with 11 additions and 11 deletions

View File

@@ -177,9 +177,9 @@ namespace PepperDash.Essentials.DM {
});
OutputEndpointOnlineFeedbacks[tempX] = new BoolFeedback(() => {
if (Chassis.Outputs[tempX].Endpoint != null)
return Chassis.Outputs[tempX].Endpoint.IsOnline;
else
//if (Chassis.Outputs[tempX].Endpoint != null)
// return Chassis.Outputs[tempX].Endpoint.IsOnline;
//else
return Chassis.Outputs[tempX].EndpointOnlineFeedback;
});
}