-
串口收发源程序
串口 C++ ,可用测试设备串口传输数据的正确性!拷贝的一个详细的程序,源代码完整,已经编译通过,请共享,大家请下载;
有效有用。
- 2022-02-13 23:51:21下载
- 积分:1
-
Similar to the serial source code debugger, support for multiple serial port tra...
类似于串口调试程序的源码,支持多个串口的收发-Similar to the serial source code debugger, support for multiple serial port transceiver
- 2023-03-03 00:15:03下载
- 积分:1
-
内部包含了各种滤波器的设计,并附上了必要的程序说明。
内部包含了各种滤波器的设计,并附上了必要的程序说明。-Internal contain a variety of filter design, together with the necessary explanation of the procedures.
- 2022-03-12 09:36:39下载
- 积分:1
-
在MATLAB仿真源根轨迹控制系统仿真
控制系统仿真中的根轨迹MATLAB仿真源码-Control System Simulation in MATLAB simulation source root locus
- 2022-10-15 16:00:03下载
- 积分:1
-
音频/视频媒体类型
音频/mpeg媒体类型
- 2022-03-19 07:34:42下载
- 积分:1
-
Graduated from design documents, using C# Prepared! In general terms can certain...
毕业设计文档,采用C#编写!一般的来说交上去肯定能够通过!-Graduated from design documents, using C# Prepared! In general terms can certainly pay up!
- 2022-04-30 02:22:23下载
- 积分:1
-
七号信令原理讲解,大公司出的培训教材,好!
七号信令原理讲解,大公司出的培训教材,好!-Teaching materials about theory of ss7 from a big company.
- 2022-03-07 17:19:16下载
- 积分:1
-
c# plc modibus 通信
c# 串口 以太网通信 modibus 连接 plc
从文本框输入负数 -2 补码=反+1=进位+原数
Vb 清除输入缓冲区 输出缓冲区 c#用不用清除??哪个函数??
//發送二進制數據 ??????????????
private void SendBytesData(SerialPort serialPort)
{ ////从 文本框取得数据 如果负数 -2 怎么办????
byte[] bytesSend = Encoding.Default.GetBytes(txtSend.Text);
spcom.Write(bytesSend, 0, bytesSend.Length);
}
通过MODBUS TCP读写PLC源码
功能模块一:读写PLC主模块
using System;
using System.Net;
using System.Net.Sockets;
public static void WriteWord(int mwAddress,int mwValue)
{写字到以太网
if (init_plc() == 0)
{
try
{
hi = mwAddress / 256;
low = mwAddress - hi * 256;
hi1 = mwValue / 256; ///////////16bit
low1 = mwValue - hi * 256;
sendBuf[7] = 6;
sendBuf[8] = (byte)hi;
sendBuf[9] = (byte)low;
sendBuf[10]
- 2022-07-10 15:42:30下载
- 积分:1
-
Simple Server With Parameter
带有wsgiref的简单服务器和带有请求的简单客户端。
- 2022-06-02 16:46:05下载
- 积分:1
-
RS232 interface demo program
RS232接口演示程序-RS232 interface demo program
- 2022-01-31 16:16:16下载
- 积分:1