找回密码
 立即注册

QQ登录

只需一步,快速开始

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

基于stm32f103c8t6蓝牙遥控小车可测距避障程序

[复制链接]
ID:957064 发表于 2021-7-28 13:35 | 显示全部楼层 |阅读模式
STM32单片机源程序如下:
  1. #include "led.h"
  2. #include "delay.h"
  3. #include "key.h"
  4. #include "sys.h"
  5. #include "usart.h"
  6. #include "timer.h"
  7. #include "motor.h"
  8. #include "sg90.h"
  9. #include "HCSR.h"
  10. #include "oled.h"       
  11. #include "beep.h"
  12. #include "motorpwm.h"
  13. #include "TCRT.h"
  14. #define motor1_PWM     TIM1->CCR1               

  15. #define motor3_PWM     TIM1->CCR3               
  16.         #define motor2_PWM     TIM1->CCR2               
  17.        
  18. #define motor4_PWM     TIM1->CCR4       
  19. // motor11=1; PA7
  20. //                motor12=0; PA6
  21. //               
  22. //                motor21=1; PB7
  23. //                motor21=0; PB6


  24. extern u8 res;       
  25.        
  26. int main(void)
  27. {                                
  28.          int len;
  29.                  
  30.         delay_init();                     //延时函数初始化          
  31.         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);          //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
  32.         uart_init(9600);         //串口初始化为9600
  33.         My_USART2_Init();  
  34.           OLED_Init();
  35.          OLED_Clear();
  36.          motor_pwm_init();
  37.          Motor_Init();
  38.         TIM3_PWM_Init(199,7199);         //不分频。T为20ms,这样的配置就是为了让输出的PWM信号达到舵机要求的20ms周期。
  39.         SG90_pwm_init();
  40.           TCRT_config(); //循迹模块初始化
  41.          CH_SR04_Init();
  42.          motor1_PWM=0;motor3_PWM =0;motor21=0; motor22=0;
  43. //         motor1_PWM=10;motor2_PWM=10;motor3_PWM =10;motor4_PWM =10;
  44.          beep_Init();
  45.            while(1)
  46.         {
  47.                  len =Senor_Using();
  48. //     printf("距离为:%dcm\n",length);   
  49.                  OLED_ShowCHinese(0,0,0);//前
  50.                 OLED_ShowCHinese(18,0,1);//方
  51.                 OLED_ShowCHinese(36,0,2);//距
  52.                 OLED_ShowCHinese(54,0,3);//离
  53.                 OLED_ShowCHinese(72,0,4);//为
  54.                  OLED_Float(3,3,len,1);   
  55.      delay_ms(20);                   
  56. //                  if(res=='1'){motor11=1; motor12=0;motor21=1; motor22=0;TIM_SetCompare2(TIM3,175);}//前进右转90
  57. if(res=='1')//避障
  58. {
  59.        
  60. float  length_res[5];  //用来存放测距结果
  61.                  len =Senor_Using();
  62. //     printf("距离为:%dcm\n",length);   
  63.                  OLED_ShowCHinese(0,0,0);//前
  64.                 OLED_ShowCHinese(18,0,1);//方
  65.                 OLED_ShowCHinese(36,0,2);//距
  66.                 OLED_ShowCHinese(54,0,3);//离
  67.                 OLED_ShowCHinese(72,0,4);//为
  68.                  OLED_Float(3,3,len,1);   
  69.      delay_ms(20);  

  70.                 SG90_Front;    //舵机摆正
  71.                 delay_ms(100);
  72.     length_res[0] =Senor_Using();  //测前方距离放在数组里
  73.                 delay_ms(100);
  74.                        
  75.                
  76.                 if(length_res[0]>40.00)       //如果前方距离大于30cm  前进
  77.                         {
  78.                                 motor1_PWM=70;motor3_PWM =70;        motor21=0; motor22=0;  
  79.                           SG90_Front;               
  80. TIM_SetCompare2(TIM3,185);                                //方向回中  

  81.                                
  82.                                 }
  83.                                
  84.                 if(length_res[0]<40.00)     //如果前方距离小于30厘米  停车测左右距离
  85.                         {
  86.                         beep=1;
  87.                        
  88.                                  motor1_PWM=0;motor3_PWM =0;motor21=0; motor22=0;  
  89.                                
  90.                           SG90_Left_45;   //舵机左转45度测距
  91.                           delay_ms(700);beep=0;               
  92.                           length_res[1] =Senor_Using();    //把测量结果放进数组
  93.         SG90_Right_45;     //舵机右转45度测距
  94.                           delay_ms(700);       
  95.         length_res[4] =Senor_Using();     //把测量结果放进数组                               
  96.                                
  97.                           SG90_Front;          //舵机摆正
  98.                           delay_ms(100);
  99.                 if(length_res[1]>length_res[4])    //如果左边的距离大于右边的距离
  100.                                 {
  101.                                         do                        //舵机摆正
  102.                                         {
  103.                                         SG90_Front;
  104.                                         delay_ms(10);
  105.                                         length_res[0] =Senor_Using();        //重复测前方的距离同时左转
  106.                                         delay_ms(10);                                               
  107.                                         TIM_SetCompare2(TIM3,195);
  108.                                         motor1_PWM=75;motor3_PWM =75;          motor21=0; motor22=0;                                                 
  109.                                         }
  110.                                         while(length_res[0]<40.00);                //一直转到前方距离大于30cm               
  111.                                 }
  112.                    if(length_res[1]<length_res[4])    //如果右边的距离大于左边的距离
  113.                                 {
  114.                                         do
  115.                                         {
  116.                                         SG90_Front;
  117.                                         delay_ms(10);
  118.                                         length_res[0] =Senor_Using();  
  119.                                         delay_ms(10);                                               
  120.                                         TIM_SetCompare2(TIM3,175);
  121.                                         motor1_PWM=75;motor3_PWM =75;         motor21=0; motor22=0;                                                  
  122.                                         }
  123.                                         while(length_res[0]<40.00);                //一直转到前方距离大于30cm
  124.                                 }
  125.                                
  126.                         }               
  127.        
  128.        

  129. }
  130.                         if(res=='2')
  131.         {
  132.                                 if(Senor_Using()<30)
  133.                                 {        beep=1;
  134.         delay_ms(500);
  135.         beep=0;motor1_PWM=0;motor3_PWM =0;motor21=0; motor22=0;delay_ms(300);}motor1_PWM=75;motor3_PWM =65;motor21=0; motor22=0;  TIM_SetCompare2(TIM3,180);}//前进右转45
  136.                         if(res=='3')
  137. {
  138.         if(Senor_Using()<30)
  139.         {beep=1;
  140.         delay_ms(500);
  141.         beep=0;motor1_PWM=0;motor3_PWM =0;motor21=0; motor22=0;delay_ms(600);
  142.         }
  143. motor1_PWM=75;motor3_PWM =75;motor21=0; motor22=0;  TIM_SetCompare2(TIM3,185);}//直行
  144.                         if(res=='4')
  145. {
  146.         if(Senor_Using()<30)
  147.                 {beep=1;
  148.         delay_ms(500);
  149.         beep=0;motor1_PWM=0;motor3_PWM =0;motor21=0; motor22=0;delay_ms(300);}motor1_PWM=65;motor3_PWM =75;motor21=0; motor22=0;  TIM_SetCompare2(TIM3,190);}//前进左转45
  150. //                        if(res=='5'){motor11=1; motor12=0;motor21=1; motor22=0;TIM_SetCompare2(TIM3,195);}//前进左转90
  151.                         if(res=='0'){TIM_SetCompare2(TIM3,185);motor1_PWM=0;motor3_PWM =0;;motor21=0; motor22=0;}
  152.                         if(res=='6'){motor1_PWM=30;motor3_PWM =30;motor21=1; motor22=1;TIM_SetCompare2(TIM3,185);}//后退
  153.                         if(res=='7'){motor1_PWM=30;motor3_PWM =30;motor21=1; motor22=1;TIM_SetCompare2(TIM3,180);}//后退右转45
  154.                         if(res=='8'){motor1_PWM=30;motor3_PWM =30;motor21=1; motor22=1;TIM_SetCompare2(TIM3,190);}//后退左转45

  155.                         if(res=='5')
  156.         {  
  157.        
  158.                                  Read_TCRT_Date(); //读循迹线值
  159.                 TIM_SetCompare2(TIM3,185);                        //回中
  160.    
  161.          if(L==1&&M==1&&R==1)//11
  162.           {
  163.              motor1_PWM=75;motor3_PWM =75;motor21=0; motor22=0;          //如果都没有读取到黑线,直走
  164.                 TIM_SetCompare2(TIM3,0);
  165.             delay_ms(10);
  166.           }
  167.          if(L==1&&M==0&&R==1)//101
  168.           {
  169.           motor1_PWM=75;motor3_PWM =75;motor21=0; motor22=0;       //如果中间一个读取到黑线,直走
  170.                   TIM_SetCompare2(TIM3,185);                //回中
  171.             delay_ms(10);
  172.           }          
  173.          if(L==1&&M==1&&R==0)//110
  174.           {
  175.                         motor1_PWM=75;motor3_PWM =75;motor21=0; motor22=0;        //直走
  176.         TIM_SetCompare2(TIM3,179); //如果右边读取到黑线,右转
  177.             delay_ms(10);
  178.           }

  179.           if(L==0&&M==1&&R==1)//011
  180.           {
  181.                         motor1_PWM=75;motor3_PWM =75;motor21=0; motor22=0;        //直走
  182.                  TIM_SetCompare2(TIM3,191); //如果左边读取到黑线,左转
  183.              delay_ms(10);
  184.           }
  185.                 if(L==0&&M==0&&R==0)//000
  186.           {
  187.             motor1_PWM=75;motor3_PWM =75;motor21=0; motor22=0;
  188.                          TIM_SetCompare2(TIM3,185);
  189.                        
  190.                 }               
  191.         }
  192.         }
  193.                                        
  194.                                                
  195.                 //在周期20ms的PWM信号中,不同的脉宽对应舵机不同的转动角度,在0.5ms-2.5ms间有效                                                                                  
  196.                 //        TIM_SetCompare2(TIM4,175);//总共计数200,前面设置的模式是计数在比较值之后才是高电平
  197.                 //也就是高电平的时间是[(200-175)/200]*20ms=2.5ms,即转过360度,180度舵机依次类推                               
  198.         }         
复制代码
51hei.png
所有程序51hei附件下载:
stm32利用蓝牙控制舵机1.3.7z (215.34 KB, 下载次数: 31)

评分

参与人数 1黑币 +50 收起 理由
admin + 50 共享资料的黑币奖励!

查看全部评分

回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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