串口接收数据c#

2024-03-28 20:48

本文主要是介绍串口接收数据c#,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

转自:http://blog.sina.com.cn/s/blog_425d77d70100j9jv.html

using System.IO.Ports;
using System.Threading;
using System.IO;

namespace SerialPortDemo
{
    public partial class Form1 : Form
    {
        bool isStar = false;
        Thread threadReceive = null;
        SerialPort serialPort = null;
        int i = 0;
        int k = 0;

        public Form1()
        {
            InitializeComponent();
            this.comboBox1.SelectedIndex = 0;
            this.comboBox2.SelectedIndex = 2;

            serialPort = new SerialPort();
            if (serialPort.IsOpen)
                serialPort.Close();
            //获得参数
            serialPort.PortName = comboBox1.SelectedItem.ToString();
            serialPort.BaudRate = int.Parse(comboBox2.SelectedItem.ToString());
            serialPort.Open();

            ThreadStart method = new ThreadStart(ReceiveData);//在线程上执行此方法
            threadReceive = new Thread(new ThreadStart(method));
        }

        private void button1_Click(object sender, EventArgs e)
        {
            try
            {
                if (button1.Text == "接收数据")
                {
                    if (!isStar)//如果isStar等于true,则启动线程
                    {
                        threadReceive.Start();
                        this.toolStripStatusLabel1.Text = "正在接收数据......";
                    }
                    else
                    {
                        threadReceive.Resume();//如果isStar等于false,则解除挂起线程
                        this.toolStripStatusLabel1.Text = "暂停接收...";
                    }
                    button1.Text = "停止接收";
                }
                else
                {

                    threadReceive.Suspend();//如果是"停止接收",则挂起线程
                    button1.Text = "接收数据";
                    this.toolStripStatusLabel1.Text = "暂停接收...";
                }

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
                serialPort.Close();

            }

        }
        //不断循环接收数据
        private void ReceiveData()
        {
            while (true)
            {
                Thread.Sleep(500);
                this.isStar = true;
                this.SynReceiveData();
            }
        }

        //通过串口取数据
        private void SynReceiveData()
        {
            MessageBox.Show("接收数据" + k);
            k++;
            string inputData = serialPort.ReadExisting();
            try
            {
                if (inputData != string.Empty)
                {
                    if (inputData.Trim().Length == 45)
                    {
                        SetText(inputData);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }

        }

        //分隔字符串并保存在指定目录下
        private void SetText(string str)
        {
            string aa = str;
            StreamWriter sw = null;

            if (aa != string.Empty)
            {
                string aaa = aa.Insert(13, ",");
                aaa = aaa.Insert(32, ",");

                String fileName = "C:\\GAJ_PUB\\kaoqin";
                if (Directory.Exists(fileName) == false)//如果目录不存在
                {
                    Directory.CreateDirectory(fileName);//创建目录
                    sw = File.CreateText("C:\\GAJ_PUB\\kaoqin\\person" + i + ".txt");//创建文本
                }
                else
                {
                    sw = File.CreateText("C:\\GAJ_PUB\\kaoqin\\person" + i + ".txt");
                }
                sw.WriteLine(aaa);

                sw.Flush();

                sw.Close();
                i++;
                MessageBox.Show("文件已存入指定目录下!!");
            }

        }

        private void button2_Click(object sender, EventArgs e)
        {
            if (threadReceive.ThreadState==ThreadState.Running)//当前状态为启动线程
            {
                threadReceive.Abort();
                this.Close();
            }
            else if (threadReceive.ThreadState == ThreadState.Suspended)//当前状态为挂起线程
            {
                threadReceive.Resume();
                threadReceive.Abort();
                this.Close();
            }
            else if (threadReceive.ThreadState == ThreadState.SuspendRequested)//当前状态为正在挂起线程
            {
                threadReceive.Resume();
                threadReceive.Abort();
                this.Close();
            }
            else if (threadReceive.ThreadState == ThreadState.Unstarted)
            {
                this.Close();
            }
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (threadReceive.ThreadState == ThreadState.Running)//当前状态为启动线程
            {
                threadReceive.Abort();
                this.Close();
            }
            else if (threadReceive.ThreadState == ThreadState.Suspended)//当前状态为挂起线程
            {
                threadReceive.Resume();
                threadReceive.Abort();
                this.Close();
            }
            else if (threadReceive.ThreadState == ThreadState.SuspendRequested)//当前状态为正在挂起线程
            {
                threadReceive.Resume();
                threadReceive.Abort();
                this.Close();
            }
        }

      
    }
}

这篇关于串口接收数据c#的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/856665

相关文章

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

C#基础之委托详解(Delegate)

《C#基础之委托详解(Delegate)》:本文主要介绍C#基础之委托(Delegate),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1. 委托定义2. 委托实例化3. 多播委托(Multicast Delegates)4. 委托的用途事件处理回调函数LINQ

在C#中调用Python代码的两种实现方式

《在C#中调用Python代码的两种实现方式》:本文主要介绍在C#中调用Python代码的两种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#调用python代码的方式1. 使用 Python.NET2. 使用外部进程调用 Python 脚本总结C#调

C#中的 StreamReader/StreamWriter 使用示例详解

《C#中的StreamReader/StreamWriter使用示例详解》在C#开发中,StreamReader和StreamWriter是处理文本文件的核心类,属于System.IO命名空间,本... 目录前言一、什么是 StreamReader 和 StreamWriter?1. 定义2. 特点3. 用

如何使用C#串口通讯实现数据的发送和接收

《如何使用C#串口通讯实现数据的发送和接收》本文详细介绍了如何使用C#实现基于串口通讯的数据发送和接收,通过SerialPort类,我们可以轻松实现串口通讯,并结合事件机制实现数据的传递和处理,感兴趣... 目录1. 概述2. 关键技术点2.1 SerialPort类2.2 异步接收数据2.3 数据解析2.

C#原型模式之如何通过克隆对象来优化创建过程

《C#原型模式之如何通过克隆对象来优化创建过程》原型模式是一种创建型设计模式,通过克隆现有对象来创建新对象,避免重复的创建成本和复杂的初始化过程,它适用于对象创建过程复杂、需要大量相似对象或避免重复初... 目录什么是原型模式?原型模式的工作原理C#中如何实现原型模式?1. 定义原型接口2. 实现原型接口3

C# 委托中 Invoke/BeginInvoke/EndInvoke和DynamicInvoke 方法的区别和联系

《C#委托中Invoke/BeginInvoke/EndInvoke和DynamicInvoke方法的区别和联系》在C#中,委托(Delegate)提供了多种调用方式,包括Invoke、Begi... 目录前言一、 Invoke方法1. 定义2. 特点3. 示例代码二、 BeginInvoke 和 EndI

C#中的 Dictionary常用操作

《C#中的Dictionary常用操作》C#中的DictionaryTKey,TValue是用于存储键值对集合的泛型类,允许通过键快速检索值,并且具有唯一键、动态大小和无序集合的特性,常用操作包括添... 目录基本概念Dictionary的基本结构Dictionary的主要特性Dictionary的常用操作

C# winform操作CSV格式文件

《C#winform操作CSV格式文件》这篇文章主要为大家详细介绍了C#在winform中的表格操作CSV格式文件的相关实例,文中的示例代码讲解详细,感兴趣的小伙伴可以参考一下... 目录实例一实例效果实现代码效果展示实例二实例效果完整代码实例一实例效果当在winform界面中点击读取按钮时 将csv中

C#集成DeepSeek模型实现AI私有化的流程步骤(本地部署与API调用教程)

《C#集成DeepSeek模型实现AI私有化的流程步骤(本地部署与API调用教程)》本文主要介绍了C#集成DeepSeek模型实现AI私有化的方法,包括搭建基础环境,如安装Ollama和下载DeepS... 目录前言搭建基础环境1、安装 Ollama2、下载 DeepSeek R1 模型客户端 ChatBo