找回密码
 立即注册

QQ登录

只需一步,快速开始

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

心率仪原理图带仿真及代码源程序

[复制链接]
跳转到指定楼层
楼主

仿真图

原理图:


单片机源程序:
  1. #include <reg52.h>
  2. #include <intrins.h>

  3. #define uint            unsigned int
  4. #define uchar           unsigned char
  5. #define ulong           unsigned long
  6. #define LCD_DATA        P0

  7. sbit LCD_RS =P2^5;
  8. sbit LCD_RW =P2^6;
  9. sbit LCD_E  =P2^7;

  10. sbit Xintiao =P1^0 ;
  11. sbit speaker =P2^4;

  12. void delay5ms(void);   //误差 0us
  13. void LCD_WriteData(uchar LCD_1602_DATA);         /********LCD1602数据写入***********/
  14. void LCD_WriteCom(uchar LCD_1602_COM);                 /********LCD1602命令写入***********/
  15. void lcd_1602_word(uchar Adress_Com,uchar Num_Adat,uchar *Adress_Data); /*1602字符显示函数,变量依次为字符显示首地址,显示字符长度,所显示的字符*/
  16. void InitLcd();

  17. void Tim_Init();

  18. uchar Xintiao_Change=0;
  19. uint  Xintiao_Jishu;
  20. uchar stop;
  21. uchar View_Data[3];
  22. uchar View_L[3];
  23. uchar View_H[3];
  24. uchar Xintiao_H=100;
  25. uchar Xintiao_L=40;


  26. uchar Key_Change;
  27. uchar Key_Value;
  28. uchar View_Con;
  29. uchar View_Change;

  30. void main()
  31. {
  32. InitLcd();
  33. Tim_Init();
  34. lcd_1602_word(0x80,16,"Heart Rate:     ");
  35. TR0=1;
  36. TR1=1;
  37. while(1)
  38.   {
  39.    if(Key_Change)
  40.     {
  41.          Key_Change=0;
  42.          View_Change=1;
  43.          switch(Key_Value)
  44.           {
  45.            case 1:
  46.                  {
  47.                           View_Con++;
  48.                           if(View_Con==3)
  49.                            View_Con=0;
  50.                           break;
  51.                          }
  52.            case 2:
  53.                  {
  54.                           if(View_Con==2)
  55.                            {
  56.                                    if(Xintiao_H<150)
  57.                                  Xintiao_H++;
  58.                            }
  59.                           if(View_Con==1)
  60.                            {
  61.                                    if(Xintiao_L<Xintiao_H-1)
  62.                                  Xintiao_L++;
  63.                            }
  64.                           break;
  65.                          }
  66.            case 3:
  67.                  {
  68.                           if(View_Con==2)
  69.                            {
  70.                                    if(Xintiao_H>Xintiao_L+1)
  71.                                  Xintiao_H--;
  72.                            }
  73.                           if(View_Con==1)
  74.                            {
  75.                                    if(Xintiao_L>30)
  76.                                  Xintiao_L--;
  77.                            }
  78.                           break;
  79.                          }
  80.          }
  81.         }
  82.    if(View_Change)
  83.     {
  84.          View_Change=0;
  85.          if(stop==0)
  86.           {
  87.            if(View_Data[0]==0x30)
  88.             View_Data[0]=' ';
  89.           }
  90.          else
  91.           {
  92.            View_Data[0]=' ';
  93.            View_Data[1]=' ';
  94.            View_Data[2]=' ';
  95.           }

  96.          switch(View_Con)
  97.           {
  98.            case 0:
  99.                   {
  100.                            lcd_1602_word(0x80,16,"Heart Rate:     ");
  101.                            lcd_1602_word(0xc0,16,"                ");
  102.                            lcd_1602_word(0xcd,3,View_Data);
  103.                            break;
  104.                           }
  105.            case 1:
  106.                   {
  107.                            lcd_1602_word(0x80,16,"Heart Rate:     ");
  108.                            lcd_1602_word(0x8d,3,View_Data);
  109.                            
  110.                            View_L[0]=Xintiao_L/100+0x30;
  111.                            View_L[1]=Xintiao_L%100/10+0x30;
  112.                            View_L[2]=Xintiao_L%10+0x30;

  113.                            if(View_L[0]==0x30)
  114.                             View_L[0]=' ';
  115.                            
  116.                            lcd_1602_word(0xC0,16,"Warning L :     ");
  117.                            lcd_1602_word(0xCd,3,View_L);
  118.                            break;
  119.                           }
  120.            case 2:
  121.                   {
  122.                            lcd_1602_word(0x80,16,"Heart Rate:     ");
  123.                            lcd_1602_word(0x8d,3,View_Data);
  124.                            
  125.                            View_H[0]=Xintiao_H/100+0x30;
  126.                            View_H[1]=Xintiao_H%100/10+0x30;
  127.                            View_H[2]=Xintiao_H%10+0x30;

  128.                            if(View_H[0]==0x30)
  129.                             View_H[0]=' ';
  130.                            
  131.                            lcd_1602_word(0xC0,16,"Warning H :     ");
  132.                            lcd_1602_word(0xCd,3,View_H);
  133.                            break;
  134.                           }
  135.           }
  136.         }
  137.   }
  138. }

  139. void Time1() interrupt 3
  140. {
  141. static uchar Key_Con,Xintiao_Con;
  142. TH1=0xd8;                   //10ms
  143. TL1=0xf0;
  144. switch(Key_Con)
  145.   {
  146.    case 0:
  147.           {
  148.                    if((P3&0x07)!=0x07)
  149.                     {
  150.                          Key_Con++;
  151.                         }
  152.                    break;
  153.                   }
  154.    case 1:
  155.           {
  156.                    if((P3&0x07)!=0x07)
  157.                     {
  158.                          Key_Con++;
  159.                          switch(P3&0x07)
  160.                           {
  161.                            case 0x06:Key_Value=1;break;
  162.                            case 0x05:Key_Value=2;break;
  163.                            case 0x03:Key_Value=3;break;
  164.                           }
  165.                         }
  166.                    else
  167.                            {
  168.                          Key_Con=0;
  169.                         }
  170.                    break;
  171.                   }
  172.    case 2:
  173.           {
  174.                    if((P3&0x07)==0x07)
  175.                     {
  176.                          Key_Change=1;
  177.                          Key_Con=0;
  178.                         }
  179.                    break;
  180.                   }
  181.   }

  182. switch (Xintiao_Con)
  183.   {
  184.    case 0:
  185.           {
  186.                    if(!Xintiao)
  187.                     {
  188.                          Xintiao_Con++;
  189.                         }
  190.                    break;
  191.                   }
  192.    case 1:
  193.           {
  194.                    if(!Xintiao)
  195.                     {
  196.                          Xintiao_Con++;
  197.                         }
  198.                    else
  199.                     {
  200.                          Xintiao_Con=0;
  201.                         }
  202.                    break;
  203.                   }
  204.   case 2:
  205.           {
  206.                    if(!Xintiao)
  207.                     {
  208.                          Xintiao_Con++;
  209.                         }
  210.                    else
  211.                     {
  212.                          Xintiao_Con=0;
  213.                         }
  214.                    break;
  215.                   }
  216.   case 3:
  217.           {
  218.                    if(!Xintiao)
  219.                     {
  220.                          Xintiao_Con++;
  221.                         }
  222.                    else
  223.                     {
  224.                          Xintiao_Con=0;
  225.                         }
  226.                    break;
  227.                   }
  228.   case 4:
  229.           {
  230.                    if(Xintiao)
  231.                     {
  232.                          if(Xintiao_Change==1)
  233.                           {
  234.                            View_Data[0]=(60000/Xintiao_Jishu)/100+0x30;
  235.                    View_Data[1]=(60000/Xintiao_Jishu)%100/10+0x30;
  236.                    View_Data[2]=(60000/Xintiao_Jishu)%10+0x30;

  237.                            if(((60000/Xintiao_Jishu)>=Xintiao_H)||((60000/Xintiao_Jishu)<=Xintiao_L))
  238.                             speaker=0;
  239.                            else
  240.                             speaker=1;

  241.                            View_Change=1;
  242.                            Xintiao_Jishu=0;
  243.                            Xintiao_Change=0;
  244.                            stop=0;
  245.                           }
  246.                          else
  247.                           {
  248.                            Xintiao_Jishu=0;
  249.                            Xintiao_Change=1;
  250.                           }
  251.                          Xintiao_Con=0;
  252.                          break;
  253.                         }
  254.                   }
  255.   }
  256. }

  257. void Time0() interrupt 1
  258. {
  259. TH0=0xfc;                   //1ms
  260. TL0=0x18;
  261. Xintiao_Jishu++;
  262. if(Xintiao_Jishu==5000)
  263.   {
  264.    Xintiao_Jishu=0;
  265.    View_Change=1;
  266.    Xintiao_Change=0;
  267.    stop=1;
  268.    speaker=1;
  269.   }
  270. }

  271. void Tim_Init()
  272. {
  273. EA=1;
  274. ET0=1;
  275. ET1=1;
  276. TMOD=0x11;
  277. TH0=0xfc;                   //1ms
  278. TL0=0x18;

  279. TH1=0xd8;                   //10ms
  280. TL1=0xf0;
  281. }

  282. void lcd_1602_word(uchar Adress_Com,uchar Num_Adat,uchar *Adress_Data)
  283. {
  284. uchar a=0;
  285. uchar Data_Word;
  286. LCD_WriteCom(Adress_Com);
  287. for(a=0;a<Num_Adat;a++)
  288.   {
  289.    Data_Word=*Adress_Data;
  290.    LCD_WriteData(Data_Word);
  291.    Adress_Data++;
  292.   }
  293. }

  294. /***************1602函数*******************/
  295. void LCD_WriteData(uchar LCD_1602_DATA)         /********LCD1602数据写入***********/
  296. {
  297. delay5ms();  //操作前短暂延时,保证信号稳定
  298. LCD_E=0;
  299. LCD_RS=1;
  300. LCD_RW=0;
  301. _nop_();
  302. LCD_E=1;
  303. LCD_DATA=LCD_1602_DATA;
  304. LCD_E=0;
  305. LCD_RS=0;
  306. }

  307. /********LCD1602命令写入***********/
  308. void LCD_WriteCom(uchar LCD_1602_COM)
  309. {
  310. delay5ms();//操作前短暂延时,保证信号稳定
  311. LCD_E=0;
  312. LCD_RS=0;
  313. LCD_RW=0;
  314. _nop_();
  315. LCD_E=1;
  316. LCD_DATA=LCD_1602_COM;
  317. LCD_E=0;
  318. LCD_RS=0;
  319. }


  320. void InitLcd()
  321. {
  322. delay5ms();
  323. delay5ms();
  324. LCD_WriteCom(0x38); //display mode
  325. LCD_WriteCom(0x38); //display mode
  326. LCD_WriteCom(0x38); //display mode
  327. LCD_WriteCom(0x06); //显示光标移动位置
  328. LCD_WriteCom(0x0c); //显示开及光标设置
  329. LCD_WriteCom(0x01); //显示清屏
  330. delay5ms();
  331. delay5ms();
  332. }

  333. void delay5ms(void)   //误差 0us
  334. {
  335.     unsigned char a,b;
  336.     for(b=185;b>0;b--)
  337.         for(a=12;a>0;a--);
  338. }
复制代码


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

使用道具 举报

沙发
ID:89286 发表于 2017-6-19 17:27 | 只看该作者
thanks for sharing
回复

使用道具 举报

板凳
ID:231246 发表于 2017-11-8 11:04 | 只看该作者
View_Data[1]=(60000/Xintiao_Jishu)%100/10+0x30;
if(Xintiao_Jishu==5000)这两条语句具体表示什么含义,求楼主解析一下
回复

使用道具 举报

地板
ID:242883 发表于 2017-11-9 13:34 | 只看该作者
谢谢!感谢分享!!!
回复

使用道具 举报

5#
ID:247692 发表于 2017-11-9 14:24 | 只看该作者
谢谢!感谢分享!!!
回复

使用道具 举报

6#
ID:981552 发表于 2021-12-3 18:03 | 只看该作者
这个用的是MAX30102传感器吗???
回复

使用道具 举报

7#
ID:25231 发表于 2023-12-18 10:45 | 只看该作者
真的只是个仿真图片
回复

使用道具 举报

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

本版积分规则

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

Powered by 单片机教程网

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