C#实现把指定数据写入串口
程序员文章站
2023-11-27 12:46:34
public static bool writetoserialport(byte[]bytearr)
{
serialport c...
public static bool writetoserialport(byte[]bytearr) { serialport com = newserialport(); try { com.readtimeout = 5000; com.writetimeout = 5000; com.portname = "com1"; com.baudrate = 9600; com.stopbits = stopbits.one; com.parity = parity.none; com.open(); com.write(bytearr, 0,bytearr.length); return true; } catch(exception ex) { return false; } finally { com.close(); } }
本例使用的是方法write(byte[]buffer, int32 offset, int32 count)。该方法使用缓冲区的数据将指定数量的字节写入串行端口。buffer为缓冲区,offset表示从此处开始将字节复制到端口,count表示要写入的字节数。
上一篇: 营销型企业网站该怎么做?
下一篇: C#使用List类实现动态变长数组的方法