-
clock
说明: 看电子电路时序图如何看,这是个好方面,可以看看(Electronic circuit timing diagram to see how the look, this is a good side, you can see)
- 2011-04-03 09:20:03下载
- 积分:1
-
基于Qt的VTK应用程序代码
基于Qt的VTK应用程序代码
- 2019-06-04下载
- 积分:1
-
观察者模式-老板回来03
说明: Custom Text Box for Date, Currency etc
- 2020-06-24 12:40:02下载
- 积分:1
-
srpxqkm
A STRING class, to achieve the basic functions of the string()
- 2017-11-05 18:27:17下载
- 积分:1
-
CalculatorStack
C#编写的计算器程序,使用了堆栈实现,支持表达式计算(Calculator program written in C#, using a stack implementation, support for expression evaluation)
- 2013-08-01 22:26:31下载
- 积分:1
-
ADXL345-Lib-v1-3
adxl345 accelerator device
- 2020-06-21 22:40:01下载
- 积分:1
-
基于STC89C52和GSM的动态电子密码锁代码
基于STC89C52和GSM的动态电子密码锁代码,使用keilC打开,使用到的模块有TFTSTC89C52SIM800L矩阵键盘电磁继电器。实现功能:产生动态电子密码并通过SIM800L发送到用户手机
- 2022-11-17 10:50:04下载
- 积分:1
-
options_parser-master
C++0x library for parsing options/command line argument
- 2014-08-17 20:29:22下载
- 积分:1
-
Memory-test-game
一个测试记忆的小游戏,根据屏幕上显示的数字来测试记忆力(A test of memory games, according to the figures displayed on the screen to test memory)
- 2014-02-25 08:57:36下载
- 积分:1
-
51单片机俄罗斯方块源代码
# include
# include
# define N 4
# define time 500
# define uchar unsigned char
sbit keyenable=P3^6;
sbit up=P3^2;
sbit down=P3^4;
sbit right=P3^3;
sbit left=P3^1;
uchar code table[N+8]={0,0,0,0,1,2,4,8,16,32,64,128};
char x[4];
char y[4];
char m[8][8]={0};
uchar p[8];
int n=0;
/**************
延时函数
***************/
void delay(char MS)
{
char us,usn;
while(MS!=0)
{
usn = 0;
while(usn!=0)
{
us=0xff;
while (us!=0){us--;};
usn--;
}
MS--;
}
}
/***************
判断是否碰撞函数
**************/
bit coll(void)
{
bit k=0;
int i;
for(i=0;i
- 2023-01-11 14:50:04下载
- 积分:1