| | |
| | | public abstract void WriteSingleAddress(int address, int writeValue, bool waitForReply = true); |
| | | |
| | | #region IMonitor |
| | | public event Action<DateTime, string, IDevice, MonitorSet> OnMonitorInvoke; |
| | | public event Action<DateTime, IDevice, WarningSet> OnMonitorAlarm; |
| | | public event Action<DateTime, string, IDevice, IMonitorSet> OnMonitorInvoke; |
| | | public event Action<DateTime, IDevice, IWarningSet> OnMonitorAlarm; |
| | | |
| | | public List<int> MonitorValues { get; set; } = new List<int>(); |
| | | |
| | |
| | | |
| | | ProcessResponse resValues = monitorSet.Response; |
| | | |
| | | if (resValues.ResultValue == (int)PLCReplyValue.IGNORE) |
| | | if (resValues.ResultValue == (int)ReplyValue.IGNORE) |
| | | { |
| | | return; |
| | | } |