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

资源简介


资源截图

代码片段和文件信息

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

namespace SerialCom
{
    public partial class MainForm : Form
    {

        //实例化串口对象
        SerialPort serialPort = new SerialPort();

        String saveDataFile = null;
        FileStream saveDataFS = null;

        public MainForm()
        {
            InitializeComponent();
        }


        //初始化串口界面参数设置
        private void Init_Port_Confs()
        {
            /*------串口界面参数设置------*/

            //检查是否含有串口
            string[] str = SerialPort.GetPortNames();
            if (str == null)
            {
                Mes

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-05 12:14  SerialPort-Communication-master\
     文件          35  2018-09-05 12:14  SerialPort-Communication-master\.gitignore
     文件         383  2018-09-05 12:14  SerialPort-Communication-master\README.md
     文件        1401  2018-09-05 12:14  SerialPort-Communication-master\Serial.sln
     目录           0  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\
     文件         180  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\App.config
     文件       28612  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Form1.Designer.cs
     文件       15134  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Form1.cs
     文件       12915  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Form1.resx
     文件         502  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Program.cs
     目录           0  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Properties\
     文件        1280  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Properties\AssemblyInfo.cs
     文件        2760  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Properties\Resources.Designer.cs
     文件        5496  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Properties\Resources.resx
     文件        1066  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Properties\Settings.Designer.cs
     文件         242  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\Properties\Settings.settings
     文件        5446  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\SerialCom.csproj
     文件        4286  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\bitbug_favicon.ico
     文件        4286  2018-09-05 12:14  SerialPort-Communication-master\SerialCom\favicon.ico
     目录           0  2018-09-05 12:14  SerialPort-Communication-master\简介\
     文件       66123  2018-09-05 12:14  SerialPort-Communication-master\简介\intr.jpg
     文件       64611  2018-09-05 12:14  SerialPort-Communication-master\简介\introducing1.jpg

评论

共有 条评论