소스 검색

_diWaferOnRobot true代表无遮挡,false代表有遮挡

jiangjy 1 개월 전
부모
커밋
6a73ebfc92
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Furnace/FurnaceRT/Devices/IoFIMS.cs

+ 1 - 1
Furnace/FurnaceRT/Devices/IoFIMS.cs

@@ -188,7 +188,7 @@ namespace FurnaceRT.Devices
         public bool IsPLCInitCompleted => _diHomeComplete == null ? false : _diHomeComplete.Value;
         public bool IsRunning => _diRunning == null ? false : _diRunning.Value;
         public bool IsFoupExist => _diExist == null ? false : _diExist.Value;
-        public bool IsWaferOnRobot => _diWaferOnRobot == null ? false : _diWaferOnRobot.Value;
+        public bool IsWaferOnRobot => _diWaferOnRobot == null ? false : !_diWaferOnRobot.Value;
         public bool IsWaferRobotEX1AxisHomePosition => _diWaferRobotEX1AxisHomePosition == null ? false : _diWaferRobotEX1AxisHomePosition.Value;
         public bool IsWaferRobotEX2AxisHomePosition => _diWaferRobotEX2AxisHomePosition == null ? false : _diWaferRobotEX2AxisHomePosition.Value;
         public bool IsLoadCompleted { get; set; }