资源简介
实现16进制和ASCII的发送和接收,基本实现串口助手功能,给初学者和刚接触串口的朋友一点参考。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO.Ports;
using System.Text.Regularexpressions;
namespace hjCommunication
{
public class hjSerialPortComm
{
public SerialPort Comm { get; private set; }
public bool IsOpen { get { return Comm.IsOpen; } }
public CodeType ReceiveShowCodeType { get; set; }
public CodeType SendCodeType { get; set; }
public event Action DataReceivedEvent;
//构造器
public hjSerialPortComm()
{
Comm = new SerialPort();
ReceiveShowCodeType = SendCodeType = CodeType.ASCII;
}
public void SetParams(string portName)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8192 2016-07-02 17:37 hjCommunication\hjCommunication\bin\Debug\hjCommunication.dll
文件 15872 2016-07-02 17:37 hjCommunication\hjCommunication\bin\Debug\hjCommunication.pdb
文件 2536 2016-07-02 15:16 hjCommunication\hjCommunication\hjCommunication.csproj
文件 3621 2016-07-02 16:01 hjCommunication\hjCommunication\hjSerialPortComm.cs
文件 6439 2016-07-02 15:12 hjCommunication\hjCommunication\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 288 2016-07-02 17:37 hjCommunication\hjCommunication\obj\Debug\hjCommunication.csproj.FileListAbsolute.txt
文件 8192 2016-07-02 17:37 hjCommunication\hjCommunication\obj\Debug\hjCommunication.dll
文件 15872 2016-07-02 17:37 hjCommunication\hjCommunication\obj\Debug\hjCommunication.pdb
文件 0 2016-07-02 09:57 hjCommunication\hjCommunication\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2016-07-02 09:57 hjCommunication\hjCommunication\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2016-07-02 09:57 hjCommunication\hjCommunication\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
文件 1370 2016-07-02 09:55 hjCommunication\hjCommunication\Properties\AssemblyInfo.cs
文件 1401 2016-07-02 15:16 hjCommunication\hjCommunication.sln
..A..H. 51200 2016-07-03 22:41 hjCommunication\hjCommunication.v11.suo
文件 144 2016-07-02 15:59 hjCommunication\Test\app.config
文件 8192 2016-07-02 17:37 hjCommunication\Test\bin\Debug\hjCommunication.dll
文件 15872 2016-07-02 17:37 hjCommunication\Test\bin\Debug\hjCommunication.pdb
文件 17920 2016-07-02 17:37 hjCommunication\Test\bin\Debug\Test.exe
文件 144 2016-07-02 15:59 hjCommunication\Test\bin\Debug\Test.exe.config
文件 28160 2016-07-02 17:37 hjCommunication\Test\bin\Debug\Test.pdb
文件 22472 2016-07-03 22:41 hjCommunication\Test\bin\Debug\Test.vshost.exe
文件 144 2016-07-02 15:59 hjCommunication\Test\bin\Debug\Test.vshost.exe.config
文件 490 2009-08-31 00:40 hjCommunication\Test\bin\Debug\Test.vshost.exe.manifest
文件 4951 2016-07-02 17:37 hjCommunication\Test\Form1.cs
文件 21059 2016-07-02 17:37 hjCommunication\Test\Form1.Designer.cs
文件 5817 2016-07-02 17:37 hjCommunication\Test\Form1.resx
文件 1135 2016-07-02 15:59 hjCommunication\Test\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6915 2016-07-03 22:41 hjCommunication\Test\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 0 2016-07-02 15:59 hjCommunication\Test\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2016-07-02 15:59 hjCommunication\Test\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
............此处省略35个文件信息
相关资源
- 基恩士PLC通讯.rar
- Visual C#.NET串口通信及测控应用典型实
- 198个经典C#WinForm 超赞的完整版
- C# 串口和以太网通讯超级调试助手 源
- C# 教程内含多个教程
- C#串口通信工具源代码
- C#开发大全提高卷随书光盘
- 基于VS2010的C#简易串口示波器
- C# 串口通讯Demo(VS2010)
- C#实现串口操作包括读写串口,显示数
- C#串口编程基础入门
- C#实现winform串口通信
- C#计算器设计
- C# 通过串口传递图片
- winform+串口+生成波形图+access
- 串口扫描枪 c# 最简程序源码
- C#上位机控制8路继电器
- c# 串口通信显示心电波形
- c# 串口通讯如何多次重复发送一帧数
- vs2010_MSComm控件
- C# 串口助手波形显示
- C#AJAX
- STM32串口穿灰度图像,上位机实时显示
- c#学习根据日期查询星期,自动售货机
- C#的串口助手源码例程
- 基于C# Winform完成串口通讯上位机
- C#最简单最完整的webservice能打log,配
- C# 串口调试助手源代码
- 串口通信 实时解析或发送串口的数据
- c#实现的串口通讯软件上位机与单片机
评论
共有 条评论