当前位置:网站首页>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.
五、源代码
边栏推荐
猜你喜欢
随机推荐
我又造了个轮子:GrpcGateway
Neural Ordinary Differential Equations
[HarmonyOS] [ARK UI] How to double-click the return key to exit in HarmonyOS ets language
淘宝/天猫淘宝评论问答列表接口 API
@RequestBody 和 @ResponseBody 详解
eric6教程(电脑的配置基本知识)
Scrapy crawler website image crawling
salesforce使用方法(salesforce authenticator下载)
Microsoft SQL服务器被黑客入侵 带宽被窃取
[Qualcomm][Network] 网络拨号失败和netmgrd服务分析
三个点语法和DOM观察者
鸿湖万联扬帆富设备开发板正式合入OpenHarmony主干
Swift 常用扩展类和简单封装
单片机开发之静态LED显示
Adaptive Control - Simulation Experiment 1 Designing Adaptive Laws Using Lyapunov's Stability Theory
ABP学习资源整理
【C和指针第七章】可变参数列表
加密和安全
安全提示:Qt中的FreeType
360闷声干大事获赞无数,数字安全如何保障?还得看企业安全云











