-
hc-sr04超声波测距及4位数码管显示
应用背景基于单片机与超声波传感器的一个测试程序,利用C语言编写,最远测距能达到20m,并能通过数码管实时显示,可用于机器人与智能小车的开发,对其他控制类开发也有重要的借鉴作用。关键技术基于C语言开发,通过超声波传感器进行测距,通过数码管实时显示距离,精度能精确到毫米,最远测距达到20m
- 2022-04-16 03:41:12下载
- 积分:1
-
ftp资源搜索工具源代码,可以搜索指定IP段内可匿名登陆的FTP服务器...
ftp资源搜索工具源代码,可以搜索指定IP段内可匿名登陆的FTP服务器-ftp resources source code search tool can search within specified IP of the landing can be anonymous FTP server
- 2023-05-02 13:10:03下载
- 积分:1
-
数字AGC仿真代码适合于基础的了解数字控制模块
数字AGC仿真代码适合于基础的了解数字控制模块-Digital AGC simulation code is suitable for understanding the basis of the digital control module
- 2022-10-01 12:45:02下载
- 积分:1
-
Microsoft SDP Extensions.
Microsoft SDP Extensions.
- 2022-05-12 19:05:11下载
- 积分:1
-
我设计的数字多
I designed the digital multi-function human-computer interaction of arc welding inverter power system
- 2022-08-25 03:51:49下载
- 积分:1
-
System will automatically delete the directory
System will automatically delete the directory
- 2022-02-25 11:28:22下载
- 积分:1
-
一个VC CMPP2.0写的程序,可移植性很好,很少在网上。TH…
一个VC++写的cmpp2.0的程序,可移植性很好,在网上不多见的,网上比较多的是java和delphi版的-a VC cmpp2.0 written procedures, portability very good, rare on the Internet. The Internet is more and java version of delphi
- 2022-09-10 23:45:03下载
- 积分:1
-
一个圆周卷积的代码~调用形式为y=juanji(h,x1,M) 其中,h和x1为输入,h为滤波器系数,x1为输入采样信号,输出为y,M为输入信号x1的长度。...
一个圆周卷积的代码~调用形式为y=juanji(h,x1,M) 其中,h和x1为输入,h为滤波器系数,x1为输入采样信号,输出为y,M为输入信号x1的长度。-A circular convolution of the code to call the form of y = juanji (h, x1, M) of them, h, and x1 for the input, h for the filter coefficient, x1 sampling input signals, output y, M for the input signal x1 length.
- 2022-03-02 08:26:50下载
- 积分:1
-
串口编写程序
VC6请使用 LsCommDemo(for vc6).zip
VC7请使用 LsCommDemo(for vc7).zip
作者...
串口编写程序
VC6请使用 LsCommDemo(for vc6).zip
VC7请使用 LsCommDemo(for vc7).zip
作者:Liu_sir
VC知识库
http://www.VCKBASE.com
多线程,多接收模式串口类LsComm相关文档
多线程,多接收模式串口类LsComm 作者:Liu_sir
所以参照Delphi中的SpComm设计了一个类CComPort,对CSerialPort进行了2次封装,主要目的是简化串口的使用.使其用简单的代码就可以完成串口通讯的过程.并提供了一个Demo程序演示了CComPort的使用
多线程,多接收模式串口类 LsComm 之二 作者:liu_sir
实现了一个简洁易用的多线程串行通讯接口,可以切换查询和自动接收模式,进行对串口数据收发-Serial programming VC6 use LsCommDemo (for vc6). ZipVC7 use LsCommDemo (for vc7). Zip Author: Liu_sirVC Knowledge http://www.VCKBASE.com multi-threaded, multi-mode serial port to receive the relevant document category LsComm multi-threaded, multi-category serial receive mode LsComm Author: Liu_sir Therefore, in light of Delphi SPComm designed a category CComPort, on CSerialPort a 2 package, the main purpose is to simplify the use of serial port. it simple code to complete the process of serial communication. and provided a Demo program CComPort demonstrated the use of multi-threaded, multi-mode rec
- 2022-03-22 16:17:08下载
- 积分:1
-
两台电脑简单通信
很简单的源码,通过C++实现两台电脑的简单通信,希望对大家有帮助,#include
#include
#pragma comment(lib,"ws2_32.lib")
void main()
{
WORD wVersionRequested;
WSADATA wsaData;
int err;
wVersionRequested = MAKEWORD( 1, 1 );//请求1.1版本的winsock库
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
return;
}
if ( LOBYTE( wsaData.wVersion ) != 1 ||
HIBYTE( wsaData.wVersion ) != 1 ) {
WSACleanup( );
return;
}
&n
- 2022-03-20 09:13:36下载
- 积分:1