/// <summary> /// 启动辊台 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void BTNrun_Click(object sender, EventArgs e) { try { if (CBdev.SelectedIndex == -1) { Notice.Show("请选择设备!", "提示", 3, MessageBoxIcon.Info); return; } string dev = CBdev.Text; RGV rgv = new RGV(dev); if (rgv.ActionStatus() == RGV.Run) { Notice.Show("指令发送失败:设备运行中!", "错误", 3, MessageBoxIcon.Error); return; } if (rgv.DeviceStatus() == RGV.DeviceError) { Notice.Show("指令发送失败:设备故障!", "错误", 3, MessageBoxIcon.Error); return; } // 方式 byte site1 = RGV.RollerRun1; if (CBsite1.SelectedValue.ToString() == "启动2#辊台") { site1 = RGV.RollerRun2; } if (CBsite1.SelectedValue.ToString() == "启动全部辊台") { site1 = RGV.RollerRunAll; } // 方向 byte site2 = RGV.RunFront; if (CBsite2.SelectedValue.ToString() == "反向启动") { site2 = RGV.RunObverse; } // 类型 byte site3 = RGV.GoodsReceive; if (CBsite3.SelectedValue.ToString() == "送货") { site3 = RGV.GoodsDeliver; } // 数量 byte site4 = RGV.GoodsQty1; if (CBsite4.SelectedValue.ToString() == "货物数量2") { site4 = RGV.GoodsQty2; } byte[] order = RGV._RollerControl(rgv.RGVNum(), site1, site2, site3, site4); if (!DataControl._mSocket.SendToClient(dev, order, out string result)) { Notice.Show("指令发送失败:" + result.ToString(), "错误", 3, MessageBoxIcon.Error); return; } Notice.Show("启动辊台 指令发送成功!", "成功", 3, MessageBoxIcon.Success); DataControl._mSocket.SwithRefresh(dev, false); } catch (Exception ex) { Notice.Show("指令发送失败:" + ex.ToString(), "错误", 3, MessageBoxIcon.Error); } }
/// <summary> /// 启动辊台 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void BTNrun_Click(object sender, EventArgs e) { string dev = ""; byte[] order = null; try { if (CBdev.SelectedIndex == -1) { Notice.Show("请选择设备!", "提示", 3, MessageBoxIcon.Info); return; } dev = CBdev.Text; RGV rgv = new RGV(dev); if (rgv.ActionStatus() == RGV.Run) { Notice.Show("指令发送失败:设备运行中!", "错误", 3, MessageBoxIcon.Error); return; } if (rgv.DeviceStatus() == RGV.DeviceError) { Notice.Show("指令发送失败:设备故障!", "错误", 3, MessageBoxIcon.Error); return; } if (!WindowCommon.ConfirmAction("是否确定[启动滚筒任务]!!")) { return; } // 方式 byte site1 = RGV.RollerRun1; if (CBsite1.SelectedValue.ToString() == "启动2#辊台") { site1 = RGV.RollerRun2; } if (CBsite1.SelectedValue.ToString() == "启动全部辊台") { site1 = RGV.RollerRunAll; } // 方向 byte site2 = RGV.RunFront; if (CBsite2.SelectedValue.ToString() == "反向启动") { site2 = RGV.RunObverse; } // 类型 byte site3 = RGV.GoodsReceive; if (CBsite3.SelectedValue.ToString() == "送货") { site3 = RGV.GoodsDeliver; } // 数量 byte site4 = RGV.GoodsQty1; if (CBsite4.SelectedValue.ToString() == "货物数量2") { site4 = RGV.GoodsQty2; } order = RGV._RollerControl(rgv.RGVNum(), site1, site2, site3, site4); DataControl._mSocket.SwithRefresh(dev, false); if (!DataControl._mSocket.SendToClient(dev, order, out string result)) { DataControl._mSocket.SwithRefresh(dev, true); Notice.Show("指令发送失败:" + result.ToString(), "错误", 3, MessageBoxIcon.Error); // LOG DataControl._mTaskTools.RecordTaskErrLog("BTNrun_Click()", "运输车-启动辊台任务[RGV,指令]", dev, DataControl._mStools.BytetToString(order), result.ToString()); return; } Notice.Show("启动辊台 指令发送成功!", "成功", 3, MessageBoxIcon.Success); } catch (Exception ex) { Notice.Show("指令发送失败:" + ex.Message, "错误", 3, MessageBoxIcon.Error); // LOG DataControl._mTaskTools.RecordTaskErrLog("BTNrun_Click()", "运输车-启动辊台任务[RGV,指令]", dev, DataControl._mStools.BytetToString(order), ex.Message); } }