• 大小: 0.01M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 串口  通信  串口通信  

资源简介

串口通信示例

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO.Ports;
using System.IO;
using System.Text.Regularexpressions;

namespace SerialPortDemo
{
    public partial class Form1 : Form
    {
        private SerialPort spCom = new SerialPort();
        private StringBuilder strBuilderRx = new StringBuilder();
        private Timer timerAutoSend = new Timer();
        private long nCountRx = 0;
        private long nCountTx = 0;
        private string strFn;

        public Form1()
        {
            InitializeComponent();
        }

        private void SerialPortForm_Load(object sender EventArgs e)
        {
       

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      10002  2019-03-08 17:02  SerialPortDemo\Form1.cs

     文件      22436  2019-03-08 17:01  SerialPortDemo\Form1.Designer.cs

     文件        495  2019-03-08 16:58  SerialPortDemo\Program.cs

     文件       1378  2019-03-08 16:58  SerialPortDemo\Properties\AssemblyInfo.cs

     文件       2876  2019-03-08 16:58  SerialPortDemo\Properties\Resources.Designer.cs

     文件       5612  2019-03-08 16:58  SerialPortDemo\Properties\Resources.resx

     文件       1097  2019-03-08 16:58  SerialPortDemo\Properties\Settings.Designer.cs

     文件        249  2019-03-08 16:58  SerialPortDemo\Properties\Settings.settings

     文件       3570  2019-03-08 16:58  SerialPortDemo\SerialPortDemo.csproj

     文件        884  2019-03-08 16:58  SerialPortDemo.sln

     目录          0  2019-03-13 09:35  SerialPortDemo\Properties

     目录          0  2019-03-13 09:37  SerialPortDemo

----------- ---------  ---------- -----  ----

                48599                    12


评论

共有 条评论