想用C#写linux下的串口收发程序?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了想用C#写linux下的串口收发程序?相关的知识,希望对你有一定的参考价值。
想用C#写linux下的串口收发程序,想问问SerialPort 类可以用么?
安装monodevelop,用C#写
在不熟悉的情况下,建议完整安装mono
串口编程和在Windows下写程序是一样的。 参考技术A
在linux下c#的serialport类仍可用,但是跟windows下有差异,具体如下:
串口名字不同。windows下COM1,linux的话是类似 "/dev/ttyS0"
_serialPort = new SerialPort();_serialPort.PortName = "/dev/ttyS0";
_serialPort.BaudRate = 9600;
_serialPort.Parity = Parity.None;
_serialPort.StopBits = StopBits.One; 参考技术B C# 是 微软的工具
开发 win 下的程序
如何
写linux下的串口收发程序?追问
在linux下安装monodevelop,写成控制台程序,
追答高
的确高
这样不行吗?大神?
C#:蓝牙串口读数据和写数据
原文:C#:蓝牙串口读数据和写数据首次使用C#编写与COM口有关的程序,期间遇到了很多问题,写下自己的经验总结,如有错漏,欢迎批评指正!
1、新建一个串口类(nbsp;SerialPort类)
1 //Create a serial port for bluetooth 2 SerialPort BluetoothConnection = new SerialPort();
2、串口端口号搜索:
string[] Ports = SerialPort.GetPortNames();
or (int i = 0; i lt; Ports.Length; i++)
nbsp;nbsp;nbsp; string name = Ports[i];
nbsp;nbsp;nbsp; comboBox.Items.Add(name);//显示在消息框里面
3、读数据、显示数据:
byte[] data = new byte[length]; BluetoothConnection.Read(data,0,length); for (int i = 0; i lt; length; i++) BlueToothReceivedData += string.Format("data[0] = 1\\r\\n", i, data[i]);//"+="表示接收数据事件发生时,触发"+="后面的语句
4、写数据:
byte[] head = new byte[8] 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01 ;//随便写的一组数据,里面的数据无意义 BluetoothConnection.Write(head, 0, head.Length);
5、常用的端口设置和方法:
BluetoothConnection.Open();//打开蓝牙串口 BluetoothConnection.ReadTimeout=10000;//设置或获取数据超时之前的毫秒数 BluetoothConnection.DataReceived;//蓝牙串口接收了数据 BluetoothConnection.BaudRate;//设置串口的波特率 BluetoothConnection.BytesToRead;//蓝牙所收到的缓冲区里数据的数据长度 BluetoothConnection.ReadByte();//从串口输入缓冲区里读一个字节
BluetoothConnection.Close();//关闭蓝牙串口
串口最基本的功能就是实现通信,简单来说就是读和写,就像大家熟知的那样,把大象装进冰箱只需要三步:打开蓝牙串口,操作和处理数据,关闭蓝牙串口。
建议在手机上下载一个蓝牙助手,可以清楚具体地看到数据收发的结果。
另外,如果要设置蓝牙模块的波特率、密码等,需要在电脑上下载串口软件。
以上是关于想用C#写linux下的串口收发程序?的主要内容,如果未能解决你的问题,请参考以下文章