-
WinForms_C%23_Access
说明: c#连接ACCESS做查询、修改等
开发环境:Visual Studio 2005<br>数据 :Access 2000<br>语言:c#<br>运行环境 :Microsoft.NET Framework v2.0(c# connect ACCESS to do to access, modify, such as development environment: Visual Studio 2005 <br> data: Access 2000 <br> Language: c# <br> Runtime Environment: Microsoft.NET Framework v2.0)
- 2008-11-15 10:47:30下载
- 积分:1
-
hash
网上收集的14种hash算法。希望对大家有用。(14 kinds of hash algorithm online collection)
- 2014-02-25 19:44:37下载
- 积分:1
-
Development_Notes
设计功能:
1.实现通过按键中断来控制LED的循环闪烁,分为3种速度循环闪烁。 2.实现定时器的相关功能和PWM信号的生成,当按键中断到来时,实现在开发板的GPIO口改变PWM信号的占空比,以此PWM信号控制电机的运转速度。 3.实现通过虚拟串口发送当前电机信息的功能,每当按下按键后,开发板将电机的转速等级和此时控制电机的占空比通过串口发送到计算机的串口程序中。(Designing function:
1. To control the cyclic flicker of LED by interruption of keys, it can be divided into three kinds of speed cyclic flicker. 2. Realize the function of timer and the generation of PWM signal. When the key interrupt arrives, the duty cycle of PWM signal is changed at the GPIO port of the development board to control the speed of motor. 3. Realize the function of sending the current motor information through the virtual serial port. Whenever the key is pressed, the development board sends the speed level of the motor and the duty cycle of the control motor through the serial port to the serial port program of the computer.)
- 2020-06-20 09:40:01下载
- 积分:1
-
按键控制液晶
说明: 51单片机实现矩阵按键控制液晶显示1~F(51 Single Chip Microcomputer Realizes Matrix Keyboard Control LCD Display 1~F)
- 2020-06-19 22:20:02下载
- 积分:1
-
STM32F103C8T6_Template
说明: stm32f103c8t6模板,基于ST固件库3.5,包含常用基本配置(Stm32f103c8t6 template, based on ST firmware library 3.5, contains common basic configuration)
- 2020-06-18 03:00:02下载
- 积分:1
-
TETRIS
此文档为visual c++平台实现俄罗斯方块的部分参考代码。已经通过调试通过。(This document is visual c++ platform Tetris part reference code. Has passed through debugging.)
- 2013-10-23 21:46:26下载
- 积分:1
-
UART4接发
说明: STM32F103ZET6由串口UART4接发信号(Signal Receiving and Sending by UART4 Serial Port)
- 2020-06-16 01:00:01下载
- 积分:1
-
quzze
该代码包括了队列的实现,主要包括队列的进出问题, 以及队列的查询,删除等问题。(The code includes queue implementation, mainly including queue in and out of the question, as well as the queue query, delete, etc.)
- 2014-01-03 10:44:40下载
- 积分:1
-
SCPI_NETExample
说明: SCPI(可编程仪器的标准命令)windows环境C#开发范例(SCPI (standard command of programmable instrument) windows environment c development example)
- 2020-05-17 13:51:43下载
- 积分:1
-
MFC下实现图形学之立方体平移、比例、旋转、投影变换算法 代码
/绘制坐标系以及初始立方体
//*********************************
void CTransGraphicsView::OnDraw(CDC* pDC)
{
CTransGraphicsDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
HBRUSH hbrush;
CPen pen;
HPEN hPen;
// TODO: add draw code for native data here
pen.CreatePen(PS_SOLID,3,RGB(255,0,0));
hPen=(HPEN)pDC->SelectObject(pen);
pDC->SetViewportOrg(cxClient/2,cyClient/2);
pDC->MoveTo(-cxClient/2,0);
pDC->LineTo(cxClient/2,0);
pDC->MoveTo(0,-cyClient/2);
pDC->LineTo(0,cyClient/2);
pen.DeleteObject();
pDC->SelectObject(hPen);
this->ShadowTrans(-45);
for(int i=0;i
- 2022-01-26 02:03:54下载
- 积分:1