找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1865|回复: 0
打印 上一主题 下一主题
收起左侧

Protues仿真实例(8051)-流水灯演示

[复制链接]
跳转到指定楼层
楼主
Protues仿真实例(8051)-流水灯演示

单片机源程序如下:
  1. #include <REGX52.H>

  2. void Delay1ms(unsigned int count)
  3. {
  4.         unsigned int i,j;
  5.         for(i=0;i<count;i++)
  6.         for(j=0;j<120;j++);
  7. }

  8. main()
  9. {
  10.         unsigned char LEDIndex = 0;
  11.         bit LEDDirection = 1;

  12.         while(1)
  13.         {
  14.                 if(LEDDirection)
  15.                         P1 = ~(0x01<<LEDIndex);
  16.                 else
  17.                         P1 = ~(0x80>>LEDIndex);       
  18.                 if(LEDIndex==7)
  19.                         LEDDirection = !LEDDirection;
  20.                 LEDIndex = (LEDIndex+1)%8;
  21.                 Delay1ms(100);
  22.         }
  23. }
复制代码

所有资料51hei提供下载:
Protues仿真实例(8051)-流水灯演示.zip (67.92 KB, 下载次数: 7)


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶 踩
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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