上位机与PLC之间进行数据读写时一般采用两种方式,
一种是使用定时器进行读,一种是使用一个独立的线程进行读,
但是无论使用哪种方式,都要求写优先级高于读,这里就涉及到读写状态切换。
写数据时,暂停读,切换到写状态,数据写完,再切换到读状态。
具体实现方式如下:
第一种方式:使用定时器读写
第一步:建立一个定时器,并设置定时器触发事件:
System.Timers.Timer timer = new System.Timers.Timer();
timer.Interval = 1000;
timer.AutoReset = true;
timer.Elapsed += Timer_Elapsed;
timer.Start();
第二步,在定时器的触发事件中进行数据读操作:
if (isRead && !isWrite)
{
//读PLC数据
}
第三步,在控件的触发事件中写数据
1、先创建一个事件
2、在事件中先关闭读数据标志位
3、执行数据写入
4、恢复读数据标志位
private void button1_Click(object sender, EventArgs e) { if (isRead) { isRead = false;//关闭读数据 //timer.Stop(); } //执行数据写入 bool writeResult = WriteSlaveData(); if (writeResult) { isRead = true;//恢复读数据 //timer.Start(); } }
第二种方法,使用线程对数据进行读写
第一步,读数据,如下:
Task.Run(() => { while (true) { if (isRead ) { ReadSlaveData();//读PLC数据 } else { Thread.Sleep(200); } } });
第二步,写数据,如下:
private void button1_Click(object sender, EventArgs e) { if (isRead) { isRead = false; //timer.Stop(); } //执行数据写入 bool writeResult = WriteSlaveData(); if (writeResult) { isRead = true; //timer.Start(); } }
使用第二种方法时,由于涉及到线程的暂停,还可以使用AutoResetEvent来实现该方法。
标签:定时器,框架,读写,NModbus4,timer,isRead,读数据,数据 From: https://www.cnblogs.com/hanzq/p/16922335.html