当前位置:   article > 正文

蓝桥杯51单片机LED控制_按键按下速度控制led的亮

按键按下速度控制led的亮

DLED模块主要由八个LED还有排阻组成,控制小灯实验也是入门学习单片机最基础的实验;

实验原理:也非常的简单通过控制单片机的IO口来控制小灯的亮灭,在IO口输入0LED点亮,在IO口输入1LED熄灭,

实验准备:首先得看懂单片机的原理图,也就是下面这张图片,其中红色的字P1^0~P1^7就是单片机的IO口;我们要做的就是如何配置这些IO口,注意我用的是P1口,每款单片机的io口不一样,需要结合自己的芯片原理图进行控制。

 

实验1:点亮一个LED灯

  1. #include <REGX52.H>
  2. void main()
  3. {
  4. while(1)
  5. {
  6. P1_0=0;
  7. }
  8. }

实验二:小灯闪烁

  1. #include <REGX52.H>
  2. #include <INTRINS.H>
  3. void Delay(unsigned int xms) //@11.0592MHz
  4. {
  5. while(xms--)
  6. {unsigned char i, j;
  7. i = 2;
  8. j = 199;
  9. do
  10. {
  11. while (--j);
  12. } while (--i);
  13. }
  14. }
  15. void main()
  16. {
  17. while(1)
  18. {
  19. P1_0=0;
  20. Delay(1000);
  21. P1_0=1;
  22. Delay(1000);
  23. }
  24. }

实验3:流水灯实验

  1. #include <REGX52.H>
  2. #include <INTRINS.H>
  3. void Delay(unsigned int xms) //@11.0592MHz
  4. {
  5. while(xms--)
  6. { unsigned char i, j;
  7. _nop_();
  8. i = 2;
  9. j = 199;
  10. do
  11. {
  12. while (--j);
  13. } while (--i);
  14. }
  15. }
  16. void main()
  17. {
  18. while(1)
  19. {
  20. P1=0xFE; //1111 1110
  21. Delay(1000);
  22. P1=0xfd; //1111 1101
  23. Delay(1000);
  24. P1=0xfb;//1111 1011
  25. Delay(1000);
  26. P1=0xf7;//1111 0111
  27. Delay(1000);
  28. P1=0xef;//1110 1111
  29. Delay(1000);
  30. P1=0xdf; //1101 1111
  31. Delay(1000);
  32. P1=0xbf; //1011 1111
  33. Delay(1000);
  34. P1=0x7f;//0111 1111
  35. Delay(1000);
  36. }
  37. }

实验四:控制流水灯的亮灭速度

这里的原理非常的简单就是引入一个变量,来控制流水的亮灭速度,以后我们会用宏定义来进行控制

  1. #include <REGX52.H>
  2. #include <INTRINS.H>
  3. void Delay(unsigned int xms) //@11.0592MHz
  4. {
  5. while(xms--)
  6. { unsigned char i, j;
  7. _nop_();
  8. i = 2;
  9. j = 199;
  10. do
  11. {
  12. while (--j);
  13. } while (--i);
  14. }
  15. }
  16. unsigned int speed=100;
  17. void main()
  18. {
  19. while(1)
  20. {
  21. P1=0xFE; //1111 1110
  22. Delay(speed);
  23. P1=0xfd; //1111 1101
  24. Delay(speed);
  25. P1=0xfb;//1111 1011
  26. Delay(speed);
  27. P1=0xf7;//1111 0111
  28. Delay(speed);
  29. P1=0xef;//1110 1111
  30. Delay(speed);
  31. P1=0xdf; //1101 1111
  32. Delay(speed);
  33. P1=0xbf; //1011 1111
  34. Delay(speed);
  35. P1=0x7f;//0111 1111
  36. Delay(speed);
  37. }
  38. }

实验五:通过按键来控制LED灯的亮灭

我们先来看看原理图,这里一共是四个按键,分别对应四个IO口,按键的功能相当于是开关,按下按键打开某些功能,可以通过按键来控制传感器的开启与关闭

 以下就是按键的照片

 按键也会有误差我们,机械误差是不可能避免的,因此我们就需要用软件来进行对按键的消抖,消抖的过程主要是,按键按下>等一段时间>再次检测按键是否按下>继续等一段时间>然后检测松手,这样我们就可以起到一个消抖的作用,

 在这里我们运用了两个模块,这里我们就可以使程序模块化,程序模块化的好处就是方便以后写程序,重要用到这个直接复制粘贴

 main.c

  1. #include <REGX52.H>
  2. #include <Delay.H>
  3. sbit Key1=P3^1;
  4. void main()
  5. {
  6. while(1)
  7. {
  8. if(Key1==0)
  9. {
  10. Delay(5);
  11. while(Key1==0);
  12. Delay(5);
  13. P1_1=~P1_1;
  14. }
  15. }
  16. }

Delay.c

  1. void Delay(unsigned char xms)
  2. {
  3. unsigned char i, j;
  4. while(xms--)
  5. {
  6. i = 2;
  7. j = 239;
  8. do
  9. {
  10. while (--j);
  11. } while (--i);
  12. }
  13. }

Delay.h

  1. #ifndef __DELAY_H__
  2. #define __DELAY_H__
  3. void Delay(unsigned char xms);
  4. #endif

实验6:按键控制LED位移

实验原理:

实现LED移位

定义一个字符型变量LEDNum;首先对按键进行检测;如果按下先进行消抖,如果是向左移先要判断LEDNum是否大于等于8;如果大于等于8则将变量清零;然后继续通过左移位符号将LEDNum赋给0x01;然后将LEDNum加加,如果是向右移;如果LEDNum等于零的话,先将LEDNum取为7;然后将LEDNum赋给P1口;如果LEDNum不等于零的话,将LEDNum减减以后,通过左移位符号将值赋给P2口;

main.c

  1. #include <REGX52.H>
  2. #include <Delay.H>
  3. unsigned char LEDNum;
  4. //按键位定义
  5. sbit Key1=P3^0;
  6. sbit Key2=P3^1;
  7. void main()
  8. {
  9. while(1)
  10. {
  11. if(Key1==0)//按键控制LED灯向左移
  12. {
  13. Delay(5);
  14. while(Key1==0);
  15. Delay(5);
  16. if(LEDNum>=8)
  17. LEDNum=0;
  18. P1=~(0x01<<LEDNum);
  19. LEDNum++;
  20. }
  21. if(Key2==0)//按键控制LED灯向右移
  22. {
  23. Delay(5);
  24. while(Key2==0);
  25. Delay(5);
  26. if(LEDNum==0)
  27. LEDNum=7;
  28. else
  29. {
  30. LEDNum--;
  31. P1=~(0x01<<LEDNum);
  32. }
  33. }
  34. }
  35. }

Delay.c

  1. void Delay(unsigned char xms)
  2. {
  3. unsigned char i, j;
  4. while(xms--)
  5. {
  6. i = 2;
  7. j = 239;
  8. do
  9. {
  10. while (--j);
  11. } while (--i);
  12. }
  13. }

Delay.h

  1. #ifndef __DELAY_H__
  2. #define __DELAY_H__
  3. void Delay(unsigned char xms);
  4. #endif

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码架构师/article/detail/60547
推荐阅读
相关标签
  

闽ICP备14008679号