当前位置:网站首页>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.
五、源代码
边栏推荐
- 360 released a future-oriented EDR to protect the security of government and enterprise user terminals in an all-round way
- 加密和安全
- 【 HMS core 】 【 Analytics Kit] [FAQ] how to solve the payment amount in huawei pay analysis shows zero problem?
- unity3d C#语言基础(继承)
- AIX shell获取前几个月时间
- 第1章 Kali与靶机系统
- 简述controller,service,repository注解的用法(谈谈application.properties的作用)
- 【JZ64 求1+2+3+...+n】
- paging
- I built another wheel: GrpcGateway
猜你喜欢

Neural Ordinary Differential Equations

jmeter接口压力测试-(二)

Beyond Stream Processing !第四届实时计算 Flink 挑战赛启动,49 万奖金等你来拿!

Typroa alternative tool marktext

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

图像去噪——Neighbor2Neighbor: Self-Supervised Denoising from Single Noisy Images

NLP领域的最新研究进展

物联网技术概论:第6章

高手云集、丰富活动,斩获佳绩,超过2万名开发者参与的AI社团邀你加入!

Typroa 替代工具marktext
随机推荐
Log4j additivity属性简介说明
Classes and Objects - 6 Default Member Functions
How to add data to the request header when feign is called remotely
async.js入门
类和对象—6个默认成员函数
RandLA-Net复现记录
安全提示:Qt中的FreeType
unity3d C#语言基础(继承)
电压继电器HDY-A/1-220VAC-1
TestNg整合Retry代码
Some commands of kubernetes
数据库性能系列之索引(上)
jmeter接口压力测试(一)
ABP学习资源整理
XYplorer 23多语言,最好的管理软件之一
Database transactions, JDBC operations and data types
RY-D1/1 Voltage Relay
Security tip: FreeType in Qt
京东校招笔试题+知识点总结
湖仓一体电商项目(一):项目背景和架构介绍



