コード例 #1
0
 public static bool OutVal(this IOOut s)
 {
     return(IOMgr.GetInstace().ReadIoOutBit(s.ToString()));
 }
コード例 #2
0
 public static bool Set(this IOOut s, bool bval)
 {
     return(IOMgr.GetInstace().WriteIoBit(s.ToString(), bval));
 }
コード例 #3
0
 public static bool SetOff(this IOOut s)
 {
     return(IOMgr.GetInstace().WriteIoBit(s.ToString(), false));
 }