C# Windows Forms SerialPort serial communication usage method

SerialPort is a class in the .NET Framework that is used to communicate with serial ports in Windows Forms applications. It provides many methods and properties to easily configure and control serial communication. The following is a detailed explanation of the common usage of SerialPort1:

1. Import namespace: using System.IO.Ports;

2. Instantiate the SerialPort1 object:

public partial class MainForm : Form

{

private SerialPort serialPort1; public MainForm()

{

InitializeComponent(); // Instantiate the SerialPort1 object

serialPort1 = new SerialPort();

}

}

3. Configure serial port parameters:

serialPort1.PortName = "COM1"; // Serial port number

serialPort1.BaudRate = 9600; // Baud rate

serialPort1.DataBits = 8; // data bits

serialPort1.Parity = Parity.None; // Check digit

serialPort1.StopBits = StopBits.One;//Stop bits

4. Open and close the serial port:

 //Open the serial port serialPort1.Open();

//Close the serial port serialPort1.Close();

5. Data sending and receiving

//Send data
serialPort1.Write("Hello, SerialPort!");

// Receive data
private void SerialPort1_DataReceived(object sender, SerialDataReceivedEventArgs e)
{     //string receivedData = serialPort1.ReadExisting();     // Process received data

byte[] buffer = new byte[serialPort1.BytesToRead];

serialPort1.Read(buffer, 0, buffer.Length);

string receivedData = Encoding.ASCII.GetString(buffer);

//Update the text box on the UI thread

Invoke(new Action(() => { textBox1.AppendText(receivedData); }));
}
6. Error handling

// Register the ErrorReceived event handler
serialPort1.ErrorReceived += SerialPort1_ErrorReceived;

// ErrorReceived event handler
private void SerialPort1_ErrorReceived(object sender, SerialErrorReceivedEventArgs e)
{     // Handle errors }


 

Supongo que te gusta

Origin blog.csdn.net/qq_33790894/article/details/131721105
Recomendado
Clasificación