Ver código fonte

日志添加

煮面机(新)
pry 1 ano atrás
pai
commit
08628bef31
1 arquivos alterados com 9 adições e 0 exclusões
  1. +9
    -0
      BPASmartClient.MORKSM.BK.PLC/PLCMachine.cs

+ 9
- 0
BPASmartClient.MORKSM.BK.PLC/PLCMachine.cs Ver arquivo

@@ -16,6 +16,15 @@ namespace BPASmartClient.PLC
public override void Init()
{
modbusTcp.IsReconnect = true;
modbusTcp.Show += new Action<string>((s) =>
{
if (s != null) MessageLog.GetInstance.Show(s);
});

modbusTcp.ShowEx += new Action<string>((s) =>
{
if (s != null) MessageLog.GetInstance.ShowEx(s);
});
Task.Run(new Action(() =>
{
modbusTcp.ConnectOk = new Action(() =>


Carregando…
Cancelar
Salvar