|
@@ -368,7 +368,16 @@ namespace EfemDualUI.Views.PMs
|
|
|
set;
|
|
|
}
|
|
|
|
|
|
- public bool GuidePin1UpFeedback { get { return GuidePin1.OpenFeedback; } }
|
|
|
+ public bool GuidePin1UpFeedback
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ if (GuidePin1 != null)
|
|
|
+ return GuidePin1.OpenFeedback;
|
|
|
+ else
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
[Subscription("GuidePin1.DeviceData")]
|
|
|
public AITCylinderData GuidePin1
|
|
|
{
|
|
@@ -376,7 +385,16 @@ namespace EfemDualUI.Views.PMs
|
|
|
set;
|
|
|
}
|
|
|
|
|
|
- public bool GuidePin2UpFeedback { get { return GuidePin2.OpenFeedback; } }
|
|
|
+ public bool GuidePin2UpFeedback
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ if (GuidePin2 != null)
|
|
|
+ return GuidePin2.OpenFeedback;
|
|
|
+ else
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
[Subscription("GuidePin2.DeviceData")]
|
|
|
public AITCylinderData GuidePin2
|
|
|
{
|