diff --git a/BPASmartClient.Device/BaseDevice.cs b/BPASmartClient.Device/BaseDevice.cs index 1889ddfc..0ee7eea2 100644 --- a/BPASmartClient.Device/BaseDevice.cs +++ b/BPASmartClient.Device/BaseDevice.cs @@ -144,7 +144,8 @@ namespace BPASmartClient.Device foreach (var key in peripheral.GetAllStatus().Keys) { peripheralStatus[key] = peripheral.GetAllStatus()[key]; - Status.Update($"{TypeName}.{key}", peripheral.GetAllStatus()[key]); + if(TypeName!= "PLC.MorksMachine") + Status.Update($"{TypeName}.{key}", peripheral.GetAllStatus()[key]); } } Thread.Sleep(100);