Commit b24e6441 LN

1

1 个父辈 29f10494
......@@ -171,15 +171,15 @@ namespace OnlineStore.DeviceLibrary
Task.Factory.StartNew(delegate
{
IOManager.instance.ConnectionIOList(cioList);
Thread.Sleep(5);
Thread.Sleep(5);
Task.Factory.StartNew(delegate
{
string path = Application.StartupPath + @"\logs\rfid\";
RFIDManager.RfidReader.LogPath(path);
// string path = Application.StartupPath + @"\logs\rfid\";
// RFIDManager.RfidReader.LogPath(path);
string[] rfidArray = rfidList.ToArray();
//连接rfip
RFIDManager.RfidReader.Open(rfidArray);
});
});
addLastDI(IO_Type.Airpressure_Check, IOValue(IO_Type.Airpressure_Check));
addLastDI(IO_Type.SuddenStop_BTN, IOValue(IO_Type.SuddenStop_BTN));
addLastDI(IO_Type.Reset_BTN, IOValue(IO_Type.Reset_BTN));
......
......@@ -157,8 +157,8 @@ namespace OnlineStore.DeviceLibrary
aioBox.SetInput(Asa.IOModule.Box_Type.DI, DILength);
aioBox.SetOutput(Asa.IOModule.Box_Type.DO, DOLength);
//DI主动上传
aioBox.AutoReadInput(true,DIMS);
aioBox.AutoReadOutput(false, DOMS);
aioBox.AutoReadInput(true);
aioBox.AutoReadOutput(false,DOMS);
aioBox.DI_Changed_Event += AioBox_DI_Changed_Event; ;
......
......@@ -441,7 +441,10 @@ namespace OnlineStore.DeviceLibrary
public string PosId = "";
public string PlateH = "0";
public string PlateW = "0";
/// <summary>
/// 目标料架
/// </summary>
public string tShelfI = "";
public List<string> WaitInStoreList = new List<string>();
}
}
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!