-
H263通信规范
H263通信规范-H263 communications specification
- 2023-04-12 18:10:03下载
- 积分:1
-
基于STM32 无线通信2.4g模块源代码
本实验开机后,先检测NRF24L01模块是否存在,在检测到NRF24L01模块之后,根据KEY0和KEY1的设置来决定
模块的工作模式,在设定好工作模式之后,就会不停的发送/接收数据,同样用DS0来指示程序正在运行。
- 2022-06-30 23:14:11下载
- 积分:1
-
短信猫服务
通过与短信猫设备通讯,实现将数据库中的信息及号码取出,再根据号码将信息通过短信猫群发送到相应手机上,同时实现发送成功信息及失败信息的备案,以对发送失败信息的多次发送;以及实现发送时间间隔的设置。
- 2022-02-19 21:56:54下载
- 积分:1
-
to calculate and get the performance of BER of Synchronous MC
to calculate and get the performance of BER of Synchronous MC-CDMA system-to calculate and get the performance of BER of Synchronous MC-CDMA system...
- 2023-08-05 15:00:04下载
- 积分:1
-
Programming category of communication a good serial communication implementation...
通讯编程类实现串口通讯很好实现了FPGA的串口通讯-Programming category of communication a good serial communication implementation of the FPGA implementation of serial communication
- 2022-11-03 16:50:03下载
- 积分:1
-
这是我做为媒体项目收集了一些RTP和H264的信息。
其中为本人做媒体项目时搜集的一些有关rtp和h264方面的资料.-which I do for the media item collected some of the rtp and h264 of information.
- 2023-03-04 00:45:08下载
- 积分:1
-
h.264编码器流程图,参考代码版本为jm61
h.264编码器流程图,参考代码版本为jm61-h.264 encoder flowchart, reference code version jm61
- 2023-02-21 22:30:03下载
- 积分:1
-
zigbee组网程序
zigbee网络中存在不同功能的节点,不同功能的节点组成一个组,从而减少通信,实现命令同步,zigbee通信方式有广播点播和组播,此时应用的为组播方式。
- 2023-08-24 01:35:05下载
- 积分:1
-
标准的西门子Mobile Phones
Document type: Reference
标准的西门子Mobile Phones
Document type: Reference-The standard Siemens Mobile Phones Document type: Reference
- 2022-08-23 01:15:08下载
- 积分: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