..
This commit is contained in:
@@ -6,6 +6,8 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using arDev.Arduino;
|
||||
using COMM;
|
||||
using AR;
|
||||
|
||||
|
||||
namespace arDev
|
||||
{
|
||||
@@ -17,7 +19,7 @@ namespace arDev
|
||||
|
||||
public FakePLC()
|
||||
{
|
||||
COMM.VAR.Init(128);
|
||||
VAR.Init(128);
|
||||
}
|
||||
|
||||
~FakePLC()
|
||||
@@ -198,12 +200,12 @@ namespace arDev
|
||||
}
|
||||
public Boolean GetFlag(int flag)
|
||||
{
|
||||
return COMM.VAR.BOOL[flag];
|
||||
return VAR.BOOL[flag];
|
||||
}
|
||||
|
||||
public Boolean GetFlag(COMM.eVarBool flag)
|
||||
{
|
||||
return COMM.VAR.BOOL[(int)flag];
|
||||
return VAR.BOOL[(int)flag];
|
||||
}
|
||||
|
||||
public Boolean SetFlag(byte idx, Boolean value)
|
||||
|
||||
Reference in New Issue
Block a user