-
stm32f105x_adc
说明: stm32单片机通过AD转化输出模拟电压值,并显示在串口调试助手上(The analog voltage value of STM32 MCU is converted by AD and displayed on the debugging assistant of serial port.)
- 2020-12-08 11:19:21下载
- 积分:1
-
TDC_GP22
基于ACAM公司最新研发产品TDC——GP22和STM32设计的温度测量的应用案例
- 2022-10-11 11:05:02下载
- 积分:1
-
SPIdeIN-OUT
说明: 详细描述SPI发送和接收过程,已经经过调试通过,主要适用于PIC18FXXX(A detailed description of the process of sending and receiving SPI, debugging has been approved, mainly applicable to PIC18FXXX)
- 2009-08-11 14:42:43下载
- 积分:1
-
stm32_speex
speex针对STM32F103系列芯片的移植,内含完整的工程。(speex transplant for STM32F103 series chip, containing the complete works.)
- 2021-05-13 17:30:02下载
- 积分:1
-
用C#实现启动欢迎画面
用C#制作软件启动时的欢迎界面,开始画面,在软件被打开时最先显示的一个窗口效果,在本例中是直接调用一张图片来显示,但是具体的实现,比如图片显示的位置 、显示的时间长短等,用到的定时器,需要控制好,本实例代码就是向大家展示如何进行这些控制,部分代码为:
private void Form1_Load(object sender, EventArgs e)
{//启动窗体
Form2 MySplashForm = new Form2();
MySplashForm.ShowDialog();
}
private void Form2_Load(object sender, EventArgs e)
{//设置启动窗体
this.FormBorderStyle = FormBorderStyle.None;
this.BackgroundImage = Image.FromFile("test.jpg");
this.timer1.Start();
this.timer1.Interval = 10000;
}
private void timer1_Tick(object sender, EventArgs e)
{//关闭启动窗体
this.Close();
}
定时器控制:
private void Form2_FormClosed(object sender, FormClosedEventArgs e)
{//关闭定时器
this.timer1.Stop();
}
- 2022-01-22 15:57:51下载
- 积分:1
-
CPP-Builder--Resources
C++builder学习资料,详细解读C++builder通讯编程(A detailed interpretation of the communication programming)
- 2013-12-27 14:45:31下载
- 积分:1
-
XF_GPS
GPS客户端源代码程序,可以实现很多功能,想学习的朋友可以入手。(GPS client source code, can achieve a lot of features, like friends can learn to start.)
- 2011-07-01 11:50:17下载
- 积分:1
-
Win2012WMIiSCSIVhdxManager
在Windows Server 2012下利用WMI实现iISCSI管理Vhdx磁盘,主要包括的方法有创建虚拟磁盘、创建iSCSI Target、格式化虚拟磁盘、删除虚拟磁盘、删除iSCSI Target(In Windows Server using WMI 2012 under the iISCSI Vhdx disk management, mainly includes the methods to create a virtual disk, create a iSCSI Target, format the virtual disk, delete the virtual disk, delete the iSCSI Target)
- 2014-12-10 16:57:55下载
- 积分:1
-
bp
说明: c++编程bp神经网络,用c++语言编写的bp神经网络(C++ programming bp neural network, bp neural network written in c++ language.)
- 2018-04-28 15:09:52下载
- 积分:1
-
thinking_in_cpp
说明: 《thinking_in_cpp》,计算机大师Bruce Eckel的著作,学习C++的顶级材料(" Thinking_in_cpp" , Master Bruce Eckel computer books, learning C++ of the top material)
- 2009-08-12 09:48:42下载
- 积分:1