资源简介
串口通信示例
代码片段和文件信息
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
- 上一篇:c#wcf消息通信(含服务端以及客户端)
- 下一篇:TCP文件传输简例
相关资源
- 基于com串口的文件发送和接收
- c# WPF串口模拟自动生成数据
- 串口通信(serialport)
- Asp.Net 实现与 Ucenter通信
- 电子称重量读取1
- 对数据报进行加密保障通信安全
- 串口通讯库雏形
- 分享串口通讯之被动接收且实时查找
- 串口升级工具源码(IAP)
- C# 串口控制(打开/关闭)
- VB.NET UDP最全通信案例
- Remoting通信例程(附服务器端以及客户
- Tcp通信示例源码(含服务器端以及客
- Tcp通信(附服务器端以及客户端)
- SerialportSample(3)2008 c#串口通信
- serialport 一个比较完整串口通信程序
- SerialPort C#串口收发界面
- CSharp_Serial C#编写的串口通信程序
- VirtualSerialPortDriver 虚拟串口
- myShowData C#编写的数据显示程序
- myDataCollect C#编写的串口数据采集器
- Serialport 用VS2010编写的串口调试助手
- SerialPort 用C#编写的一个串口调试助手
- ChuanKouTest
- MODBUS C#串口通讯
- COMMonitor
- CSharp_serial 用C#编的串口调试助手
- TCP TCP通信C#代码
- Com 基于C#语言的一个串口通信上位机
- serials
评论
共有 条评论