-
使用VB的OPC客户访问的最简单程序,本程序为查找服务器、组、项目的列表程序,同步访问程序请找ASync...
使用VB的OPC客户访问的最简单程序,本程序为查找服务器、组、项目的列表程序,同步访问程序请找ASync-VB.rar,需要异步的查找ASync-VB.rar-The use of VB
- 2023-06-19 10:45:03下载
- 积分:1
-
Matlab盲信号分离很有用的工具,是做信号分离的好帮手
Matlab盲信号分离很有用的工具,是做信号分离的好帮手-Blind Signal Separation Matlab useful tool to do a good helper signal separation
- 2022-03-30 01:13:12下载
- 积分:1
-
J2ME prepared by the mobile gaming (Nokia)
J2ME编写的手机游戏(诺基亚)-J2ME prepared by the mobile gaming (Nokia)
- 2022-06-15 04:25:14下载
- 积分:1
-
这是一个简单的聊天工具,使在同一个局域网内的不同主机可以相互聊天,而且聊天人数不限。用户可以对另一台指定的主机说话,也可以向局域网内所以主机发表广播。...
这是一个简单的聊天工具,使在同一个局域网内的不同主机可以相互聊天,而且聊天人数不限。用户可以对另一台指定的主机说话,也可以向局域网内所以主机发表广播。-This is a simple chat tool, so that in the same local area network of the different host each other to chat, but the number of open chat. Users can specify another host to speak can also be host to the LAN broadcast so.
- 2022-08-25 19:53:14下载
- 积分:1
-
多重分形的代码,很好用,老外写的用于脑电图
很详细的程序,有图,有注释介绍,各个步骤的介绍都有,是英文的。欢迎下载,希望对大家有用。
- 2022-07-24 21:09:44下载
- 积分:1
-
on various platforms Socket Programming good Dongdong.
介绍各种平台进行SOCKET编程的好东东。-on various platforms Socket Programming good Dongdong.
- 2022-10-12 11:50:03下载
- 积分:1
-
本程序RS232通信的一个实验小程序,其中还有rs232和rs485的介绍!
本程序RS232通信的一个实验小程序,其中还有rs232和rs485的介绍!- A this procedure RS232 correspondence experimental script, also
has rs232 and the rs485 introduction!
- 2023-02-02 10:10:04下载
- 积分:1
-
FLASH CODE
FLASH CODE
- 2022-02-12 23:19:40下载
- 积分:1
-
Serial multi
多线程串口调试工具,支持文本传输,可十六进制显示-Serial multi-threaded debugging tools, support for text transmission, can be displayed in hexadecimal
- 2023-07-02 18:05:04下载
- 积分: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