byte addr=new byte {0x00};
byte cmd=new byte {0x02,0xff,0x00,0x00,0x00,0x00,0x01};
DevLMQ.ReceiveProtocol r=null;
while(true)
{
io2.Settings ="1200,m,8,1";
io2.Output =addr;
System.Threading .Thread .Sleep (10);
io2.Settings ="1200,s,8,1";
io2.Output =cmd;
System.Threading .Thread .Sleep (1000);
object objin;
objin=io2.Input ;
byte data=(byte)objin;
Console.WriteLine (data .Length .ToString ());
}
}
SerialPort和JUSTINIO下载:http://download.csdn.net/user/lsjwq
其实 利用MICROSOFT COMM CONTROL 6.0这个可以封装自己的串口类,还可以开发自己的CONSOLE APPLICATION 应用程序。