-
messaging-management-system-
借助短信猫可以实现短信群发,有齐全的框架,还可以二次开发(Cats can be achieved by means of SMS Short Message)
- 2014-03-18 10:16:18下载
- 积分:1
-
0MOTOR_CONTROL_003
该代码可以对电机运行实现 S型加减速运动,驱动步进电机(This code can realize S-type acceleration and deceleration motion for motor operation and drive stepper motor.)
- 2020-06-20 08:20:02下载
- 积分:1
-
STM32_bootloader
stm32单片机全功能bootloader,包括SD,串口,网口,和USB。选择条件编译(stm32 SCM fully functional bootloader, including SD, serial port, Ethernet port, and USB. Select conditional compilation)
- 2020-07-27 08:28:40下载
- 积分:1
-
Greenhouse-temperature-and-humidity
大棚温湿度检测的源程序,淘宝上买的,用完好使(Greenhouse temperature and humidity detection of the source, Taobao buy, run out so that)
- 2017-03-30 19:54:09下载
- 积分:1
-
PF
说明: 标准的粒子滤波算法程序,读者可稍作修改作为遥感与作物模型同化系统的小程序。(Particle Filter)
- 2015-07-10 16:50:15下载
- 积分:1
-
C# 指定主机和端口发消息的实现
Visual C# 指定主机和端口发消息的实现例子,支持和远程主机发送消息,本例子可学习到很多实用的网络方法的用法,以下代码是本功能的核心实现:
richTextBox1.Text = string.Empty;
//实例化UdpClient对象
UdpClient udpclient = new UdpClient(Convert.ToInt32(textBox2.Text));
//调用UdpClient对象的Connect建立默认远程主机
udpclient.Connect(textBox1.Text, Convert.ToInt32(textBox2.Text));
//定义一个字节数组,用来存放发送到远程主机的信息
Byte[] sendBytes = Encoding.Default.GetBytes(textBox3.Text);
//调用UdpClient对象的Send方法将Udp数据报发送到远程主机
udpclient.Send(sendBytes, sendBytes.Length);
//实例化IPEndPoint对象,用来显示响应主机的标识
IPEndPoint ipendpoint = new IPEndPoint(IPAddress.Any, 0);
//调用UdpClient对象的Receive方法获得从远程主机返回的Udp数据报
Byte[] receiveBytes = udpclient.Receive(ref ipendpoint);
//将获得的Udp数据报转换为字符串形式
string returnData = Encoding.Default.GetString(receiveBytes);
richTextBox1.Text = "接收到的信息:" + returnData.ToString();
//使用IPEndPoint对象的Address和Port属性获得响应主机的IP地址和端口号
richTextBox1.Text += "
这条信息来自主机" + ipendpoint.Address.ToString()
+ "上的" + ipendpoint.Port.ToString() + "端口";
//关闭UdpClient连接
- 2022-02-10 10:21:19下载
- 积分:1
-
vc_matlab
用VC调用Matlab的文章,文章详细介绍了几种方法,并给出了示例(VC call Matlab with the article, the article details several ways, and gives examples of)
- 2007-10-29 20:39:00下载
- 积分:1
-
BFmatcher
Visual 2012 project demo for BF matching method using opencv246.
- 2013-08-10 01:04:42下载
- 积分:1
-
Fuzzy-risk-assessment-of-water
基于模糊概率的水资源短缺风险评价,对水资源的定量分析理论支撑(Fuzzy risk assessment of the probability of water shortage)
- 2011-06-02 17:28:10下载
- 积分:1
-
电机测速
基于单片机的电机测速,自行车简易数字里程表。。。。。。。。。。(Motor speed measurement based on single chip microcomputer)
- 2018-11-12 16:51:04下载
- 积分:1