C#中每5分钟通过RS232发送消息
我想知道如何每 x 分钟使用串行端口发送消息。与此同时,应用程序应该完全可访问。我只想检查打印机状态,所以我每 5 分钟发送一次“错误状态请求”,如果有一些错误 - 然后发出声音警报或其他东西。
I am wondering how to send msg using serialport every x minutes. In the meantime app should be fully accessible. I just want to check printer status, so i'm sending every 5 minutes "Error status request" and if there are some errors - then sound alarm or something..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 http://msdn.microsoft.com/en-us/库/system.timers.timer.aspx
See http://msdn.microsoft.com/en-us/library/system.timers.timer.aspx
您可以使用 C# 相当轻松地写入串行端口
http: //msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx
每 x 分钟执行一次操作的最简单方法是生成一个线程并放入一个执行循环线程.睡眠(30000)。您需要构建一些控制代码,以便可以从主代码中停止线程
You can write to the serial port using c# fairly easily
http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx
The simplest way to perform an action every x minutes is to spawn a thread off and put in a loop which performs Thread.Sleep(30000). You need to build some control code in so that you can stop your thread from the main code