当前位置:网站首页>Static LED display developed by single chip microcomputer
Static LED display developed by single chip microcomputer
2022-07-30 11:17:00 【HUAWEI CLOUD】
一、题目
静态LED显示
二、要求
1、画出流程图
2、编写源程序并进行注释
3、记录实验过程
4、记录程序运行结果截图
三、过程及结果记录
按照思路搭建电路图1如下:
图1:实验电路图
7SEG2 Displays nixie tubes for ten digits,7SEG1 Display the digital tube for the one digit,KEY_LOAD:Countdown initial value button,KEY_START:Countdown start button
功能:KEY_LOAD按钮被按下时,Load the initial countdown value(10S);当按下KEY_START按钮时,开始倒计时,每过1S,计数器减1,直到见到“00”为止.减到“00”时,使P3.0引脚上的LED按10HzThe frequency flashes,直到再次按下KEY_LOAD按钮,Just reload the initial value,并熄灭LED;再次按下KEY_STARTThe button starts the countdown again,如此反复
1. 使用Proteus搭建实验电路图如上,并将其保存为staticLED_self.DSN 文件.
2. Write the control source program,将其保存为staticLED_self.asm.
3. 程序编译:单击上方工具栏的source,然后build all,将asm文件编译成hex文件.将可执行文件hex写入芯片
4. Execute the simulation process to observe whether the stopwatch program functions correctly.实验结果如下图所示:
图2:Load the initial value and start
图3:减到00,LED灯闪烁
四、流程
The experimental flow chart is shown below:
图4:实验流程图
1.Determine what the addresses of the two latches are0FE00H和0FD00HAnd add two display nixie tubes.按照要求将P1.0作为start的输入,P1.1作为load的输入.
2.实验开始,判断P1.1Whether the mouth is pressed,load the initial value,And let the two digital tubes display the initial value.
3.判断P1.0是否按下,Counting starts when pressed;If not pressed,returns to the initial state,等待P1.1按下.
4.计数完成后,Waiting for the load command,若无,then stay and wait,若有,Start the next cycle.
5.The control command to display the nixie tube can be written first,存在内存中,Then use relative addressing to perform data access to this continuous address,assigned to the latch.Write the control signal of the digital tube in the memory,并且按照1到9的顺序存放.Use two memory cells to store tens and ones digits,This number also corresponds to the offset in the control signal table.即数字为n的时候,偏移n进行查表,将nThe representative control signal is given to the digital tube.
6.Begin to judge the set operation first,调用初始化10的指令.Set the ones digit0,Tens place1,Then his offsets in the table are respectively0和1,使用movcThe command looks up the table to get the corresponding control signal,to the latch,That is digital tube.然后判断start信号,If so, start counting,If not, skip back to the beginning,Waiting for new instructions.当有start信号,Then call the display program,digital display.
7.Call the adjuster count.Put the number in the one digit,即30HThe corresponding number in the memory unit is subtracted1,然后和-1比较,要是不等于-1,That means the original one has not arrived yet0,Do not operate on tens.若是为-1,Indicates that the original position has arrived0,Then subtract ten1,and a location9.Compare ten,若是为-1,说明原来是0,Then it indicates that the counter has arrived00,计数结束.
8.After performing the adjustment,Do not change the display yet,Instead, the delay program is called to wait for a period of time,Refreshing the display of the nixie tube.
五、源代码
边栏推荐
猜你喜欢

面试官:Redis中的布隆过滤器与布谷鸟过滤器,你了解多少?
![【 HMS core 】 【 Analytics Kit] [FAQ] how to solve the payment amount in huawei pay analysis shows zero problem?](/img/f3/b9256fc04d1c9e15c74d2fc14db0fb.png)
【 HMS core 】 【 Analytics Kit] [FAQ] how to solve the payment amount in huawei pay analysis shows zero problem?

高能产出!腾讯内部的MyCat中间件手册,理论实操齐下

Linux内核设计与实现(十)| 页高速缓存和页回写

Microsoft SQL服务器被黑客入侵 带宽被窃取

优酷VIP会员周卡只需7.5元,看《沉香如屑》用优酷视频

Beyond Stream Processing!The 4th real-time computing Flink challenge is launched, and 490,000 prizes are waiting for you!

Selected System Design | Design of CAN Bus Controller Based on FPGA (with Code)

电压继电器HDY-A/1-220VAC-1

类和对象—6个默认成员函数
随机推荐
XYplorer 23多语言,最好的管理软件之一
活动速递| Apache Doris 性能优化实战系列直播课程初公开,诚邀您来参加!
高能产出!腾讯内部的MyCat中间件手册,理论实操齐下
Drag and drop events, dataTransfer, getBoundingClientRect
How to add data to the request header when feign is called remotely
C语言 — 位运算操作
stm32 RTC闹钟唤醒低功耗模式
关于verilog的时延研究
拖放事件,dataTransfer,getBoundingClientRect
正则表达式快速入门笔记
【Flume】batchSize和transactionCapacity区别
UE5 GAS 学习笔记 后记0
VLAN实验
RY-D1/1电压继电器
spin lock和mutex使用场景的差异
张量篇-初步
JSP 语法简介说明
TestNg整合Retry代码
Neural Network Study Notes 3 - LSTM Long Short-Term Memory Network
Classes and Objects - 6 Default Member Functions



