-
燃料电池控制程序
电池编程,燃料电池的控制程序,适用于matlab,c语言的控制程序(Battery programming, fuel cell control program, suitable for matlab, c language control program)
- 2018-11-21 13:27:45下载
- 积分:1
-
up
说明: 本书在对Visual C++各种编程技术和TCP/IP进行系统介绍的基础上,重点讲解网络编程的高级应用、使用技巧和难点。包括基本网络编程技术,Telnet协议的实现,HTTP协议的实现,FTP协议的实现,文件下载,UDP协议的实现,ICMP协议的实现,PPP协议的实现,代理服务器的实现,ATL、DCOM、ActiveX技术,网络安全,多媒体网络编程等。
对于每个主题,书中都给出其开发要领及应用的实例和技巧,本书主要面向具有一定Visual C++网络编程基础并希望深入研究网络编程技术的读者。 (The book of Visual C++ variety of programming techniques and TCP/IP system introduced on the basis of the focus on network programming, advanced applications, the use of skills and difficulties. Including basic network programming technology, Telnet protocol implementation, HTTP protocol implementation, FTP protocol implementation, file downloads, UDP protocol implementation, ICMP protocol implementation, PPP protocol implementation, the proxy server implementation, ATL, DCOM, ActiveX technology , network security, multimedia network programming. For each topic, the book is given its essentials and application development examples and techniques, this book has some Visual C++ primarily for network programming and want to delve into network programming technology readers.)
- 2013-06-19 14:10:57下载
- 积分:1
-
超声波测距模块
说明: 由于超声波指向性强,能量消耗缓慢,在介质中传播的距离较远,因而超声波经常用于距离的测量,如测距仪和物位测量仪等都可以通过超声波来实现。利用超声波检测往往比较迅速、方便、计算简单、易于做到实时控制,并且在测量精度方面能达到工业实用的要求,因此在移动机器人研制上也得到了广泛的应用。(Because of its strong directivity, slow energy consumption and long propagation distance in the medium, ultrasound is often used for distance measurement, such as range finder and level gauge, which can be achieved by ultrasound. Ultrasound detection is often fast, convenient, simple in calculation, easy to achieve real-time control, and can meet the requirements of industrial application in measurement accuracy, so it has been widely used in the development of mobile robots.)
- 2020-06-19 10:20:02下载
- 积分:1
-
智能升降桌子stm32 程序
pwm stm32 C++ 霍尔 pid 智能办公桌,pwm stm32 C++ 霍尔 pid 智能办公桌,pwm stm32 C++ 霍尔 pid 智能办公桌
- 2022-09-09 14:40:03下载
- 积分:1
-
俄罗斯方块
本代码描述了一个基于多编译器可移植的链表型俄罗斯方块的游戏,在保留了原俄罗斯方块游戏的可操作性强的优点的情况下还增加了可支持在多平台使用该程序进行游戏的二次开发,移植性好
- 2023-04-27 10:55:03下载
- 积分:1
-
11
Matlab教程第11章,编成与案例教学(Matlab Guide Chapter 11, compiled and Case Teaching)
- 2013-07-20 19:57:58下载
- 积分:1
-
IICinthemsp430f149
基于MSP430F149的iic的通信设计系统(MSP430F149-based design of communication systems iic)
- 2009-04-02 12:13:10下载
- 积分:1
-
复杂样式excel导出
说明: 复杂样式Excel导出 用HTML table 表格页面布局导出Excel(Ora Connection Help Class)
- 2019-03-21 17:52:27下载
- 积分:1
-
Motor_state_check
这是一个在电动机运行状态的逻辑运算中常用的状态检测原理的例程。它根据电动机负载的大小和外部开关状态共同判断当前电动机的状态。(This is a motor running in the logical operations commonly used in the principle of state detection routines. It according to the size of the motor load and external switches to determine the current state of the common motor state.)
- 2009-02-04 16:17:20下载
- 积分:1
-
C# 在密钥容器中创建非对称密钥
在密钥容器中创建非对称密钥、在密钥容器中删除非对称密钥、在密钥容器中获取非对称密钥,具体的实现代码,请参考如下代码:
private void button1_Click(object sender, EventArgs e)
{//在密钥容器中创建非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textBox2.Text;
RSACryptoServiceProvider MyRSA = new RSACryptoServiceProvider(MyCSP);
this.textBox1.Text=MyRSA.ToXmlString(true);
}
private void button2_Click(object sender, EventArgs e)
{//在密钥容器中删除非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textBox2.Text;
RSACryptoServiceProvider MyRSA = new RSACryptoServiceProvider(MyCSP);
MyRSA.PersistKeyInCsp = false;
MyRSA.Clear();
try
{
this.textBox1.Text = MyRSA.ToXmlString(true);
}
catch
{
this.textBox1.Text = "已经删除非对称密钥!";
}
}
private void button3_Click(object sender, EventArgs e)
{//在密钥容器中获取非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textB
- 2022-02-06 13:18:17下载
- 积分:1