-
自行车速度LED显示
从乌克兰网站下载采用PIC16F84汇编的自行车,摩托车速度表LED显示,加Proteus防真。响当好的程序。内有乌克兰原编HEX,加上有我再汇编的HEX程序。很好的,值的学习和分享! 内有ASM,MAC,原编HEX等。可以完全编译。
- 2022-02-01 22:51:01下载
- 积分:1
-
模拟银行卡取款操作,银行卡号为8位,能够进行查询、取款、存款、修改密码等操作。查询时需要输入密码,密码为6位。当密码位数和相应位都符合时,显示卡内余额,否则密码...
模拟银行卡取款操作,银行卡号为8位,能够进行查询、取款、存款、修改密码等操作。查询时需要输入密码,密码为6位。当密码位数和相应位都符合时,显示卡内余额,否则密码三次错误,结束操作。取款时也需要输入密码,密码为6位。当密码位数和相应位都符合时,显示现有余额,输入取款金额,操作结束显示所剩金额,否则密码三次错误,结束操作。限制每天总共可取的金额 ,若违规给出相应的警告。取款操作时输入取款金额 ,操作结束,显示卡内余额,输入密码时,不显示真实值,修改密码时显示真实值。-simulated bank teller card operation, a registered member of the eight to conduct inquiries, withdrawals, deposits, change passwords operation. Inquiries need to enter a password, the password to six. When the median and the corresponding password-meet, showed the card balance, otherwise the wrong password three times, the end of operation. Teller also need to enter the password, the password to six. When the median and password are consistent with the corresponding position, shows that the existing balance of the amount imported withdrawals, the remaining operation ended shows the amount, otherwise the wrong password three times, the end of operation. Limit daily total amount of desirable, if irregularities are given corresponding warning. ATM withdrawals
- 2022-09-21 07:15:03下载
- 积分:1
-
编号为1,2… n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数的上限值m,从第一个人开始按顺时针方向自1开始顺序报数,...
编号为1,2… n的n个人按顺时针方向围坐一圈,每人持有一个密码(正整数)。一开始任选一个正整数作为报数的上限值m,从第一个人开始按顺时针方向自1开始顺序报数,报到m时停止报数,报m的人出列,将他的密码作为新的m值,从他的顺时针方向上的下一个开始重新从1报数,如此下去,直至所有人全部出列为止,设计一个程序求出出列顺序。
(1)利用单循环链表作为存储结构模拟此过程;
(2)键盘输入总人数、初始报数上限值m及各人密码;
(3)按照出列顺序输出各人的编号。-Numbered 1,2 ... n of the n individuals sitting clockwise circle, each holding a password (positive integer). An optional start a positive integer as the number of reported upper limit of m, from the first person to embark on the clockwise direction starting from a sequence reported the number of stop newspaper report m the number of people who reported m out of the column, as his password The new m value, in a clockwise direction from his next start back from a newspaper a few, and so on, until all all out of the column until a program designed to find out the column order. (1) the use of one-cycle simulation in this linked list storage structure as a process (2) the total number of keyboard input, the initial report and the person m the upper limit o
- 2023-05-21 04:10:03下载
- 积分:1
-
在电子技术中,频率是最基本的参数之一,又与许多电参量的测量方案、测量结果都有十分密切的关系,因此频率的测量就显得更为重要。测量频率的方法有多种,其中电子计数器测...
在电子技术中,频率是最基本的参数之一,又与许多电参量的测量方案、测量结果都有十分密切的关系,因此频率的测量就显得更为重要。测量频率的方法有多种,其中电子计数器测量频率具有精度高、使用方便、测量迅速,以及便于实现测量过程自动化等优点,是频率测量的重要手段之一。在本次毕业设计中我们选择使用单片机来制作数字频率计,并在实际制作中采用了直接测频法。利用延时产生的时基门控信号来控制闸门,通过在单位时间内计数器记录下的脉冲个数计算出输入信号的频率,最终送入LCD中显示。这样制作出来的频率计不仅可以满足设计题目的参数要求,而且具有了单片机的稳定性和成熟性,且控制能力强,是一种低成本,高可靠的设计方案。-In electronic technology, the frequency is one of the most basic parameters, but also with a number of electrical parameters of the measurement program, the measurement results have a very close relationship between the frequency of measurement, therefore it is even more important. Measurement of the frequency of a number of means, electronic measurement of the frequency counter with high precision, easy to use, rapid measurement, and measurement is easy to realize the advantages of process automation is an important means of measuring the frequency of one. Graduates in this design we have chosen to make use of single-chip digital frequency meter, and used in the actual production of a direct
- 2023-01-08 22:50:02下载
- 积分:1
-
本教程主要讲述计算机指令运行机制及汇编语言的相关知识,并用详实的例子来讲解如何使用O汇编语言来编写程序。汇编语言是计算机低级语言,它直接对应的是计算机机器指令,...
本教程主要讲述计算机指令运行机制及汇编语言的相关知识,并用详实的例子来讲解如何使用O汇编语言来编写程序。汇编语言是计算机低级语言,它直接对应的是计算机机器指令,据有执行高效的特点,但由于它的底层性,指令浩繁复杂,如果你熟悉如MASM、FASM或者NASM等其它的汇编语言,那么你将能够很容易地学会使用O语言,它的内部机制与其它汇编语言是一致的;如果你没有接触过汇编语言,那么本教程将为你打开计算机语言的大门,深入细致地解剖聪明的计算机大脑的思考轨迹。如果你使用过C或者其它的计算机语言将对学习O语言有一定的帮助。-the handbook focuses on the operation of computer instructions and mechanisms related to the compilation of language knowledge, and the use of detailed examples to explain how to use the O Series language programming. Language is a compilation of computer low level language, which directly correspond to the computer machinery orders, according to the efficient implementation of the characteristics But since they are bottom, voluminous complex instructions, if you are familiar with such as Shape, FASM or Assemble the compilation and other languages, then you will be able to easily learn how to use O language, The internal mechanism and the other assembly language is unanimous; If you had any contact with assembly language. Then you ha
- 2022-03-28 20:33:02下载
- 积分:1
-
本例载波频率为20KHz,或载波周期为50μs。DSP晶振10MHz,内部4倍频,时钟频率为40MHz,计数周期为25ns。假设调制波频率由外部输入(1~50H...
本例载波频率为20KHz,或载波周期为50μs。DSP晶振10MHz,内部4倍频,时钟频率为40MHz,计数周期为25ns。假设调制波频率由外部输入(1~50Hz),并转换成合适的格式(本例为Q4格式)。调制系数M为0~0.9。死区时间1.6μs。最小删除脉宽3μs。
主程序的工作是根据输入的调制波频率计算N、2N和M值。
-Example for the carrier frequency 20KHz, or carrier period is 50μs. DSP crystal 10MHz, internal 4 multiplier, the clock frequency of 40MHz, counting cycle 25ns. Assuming wave frequency modulation by external input (1 ~ 50Hz), and converted into an appropriate format (in this case for Q4 format). Modulation coefficient M is 0 ~ 0.9. Dead time 1.6μs. Delete the smallest pulse width 3μs. The work of the main program is based on input frequency modulation wave calculation of N, 2N and M values.
- 2023-08-22 04:35:03下载
- 积分:1
-
lcd program
#包括;
- 2022-07-01 00:12:09下载
- 积分:1
-
it is about c++ code of some computer graphic program
it is about c++ code of some computer graphic program
- 2022-01-25 15:37:30下载
- 积分:1
-
zlg7289的源程序,可以做参考
zlg7289的源程序,可以做参考-zlg7289 source, reference can be done
- 2022-03-21 16:01:09下载
- 积分:1
-
用单片机芯片ht46rb50温度计的设计、广告等。ht46rb50
本次设计的温度计采用HT46RB50 微控制器IC,HT46RB50 的AD 口外接一热敏电阻,通过
AD 读回的电压计算出热敏电阻阻值的变化,从而实现侦测外界温度的功能。HT46RB50 通
过USB 将侦测到的温度值传入PC 机的温度显示接口中显示。
本次设计的USB 使用操作系统提供的USB HID 设备类驱动程序。
• 采用USB 控制传输向HT46RB50 发送资料
• 采用USB 中断传输接收HT46RB50 传回的资料-The design of the thermometer used HT46RB50 microcontroller IC, HT46RB50 of AD external mouth of a thermistor, through the AD read-back voltage to calculate the changes in thermistor resistance in order to achieve the function to detect the outside temperature. HT46RB50 through the USB will be detected by the temperature of the temperature of incoming PC-display interface to display. The USB to use the operating system designed to provide the USB HID device class driver.
- 2022-06-16 23:32:08下载
- 积分:1