找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 4337|回复: 0
收起左侧

按照动态显示的方式,点亮8位数码管,循环显示0-F这16个字符

[复制链接]
ID:447820 发表于 2018-12-17 15:55 | 显示全部楼层 |阅读模式
123.png

  1. #include<reg51.h>

  2. #define uchar unsigned char

  3. #define uint unsigned int

  4. uchar code duan[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e};

  5. void DelayMS(uint x)

  6. {

  7. uchar t;

  8. while(x--)

  9. for(t=0;t<120;t++);

  10. }

  11. void main()

  12. {

  13. uchar i;

  14. while(1)


  15. {

  16. for(i=0;i<16;i++)

  17. {

  18.        P0=duan[i];

  19.        DelayMS(600);

  20. }

  21. }

  22. }

复制代码


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表