当前位置:   article > 正文

第14届蓝桥杯 单片机设计与开发项目 省赛_蓝桥杯14届省赛单片机

蓝桥杯14届省赛单片机

目录

前言

赛题感受

难点分析

程序设计题目与代码解析

 题目

 代码解析

main.c

ds1302.c

ds1302.h

onewire.c

onewire.h

iic.c

iic.h

总结(附客观题目与答案)


前言

赛题感受

刚刚结束了第14届蓝桥杯大赛,本人参加的是电子类的单片机设计与开发项目,个人感受是本届的相较于往年省赛题程序设计题,难度加大了不少,堪比国赛。一些功能在往年国赛题也出现过,比如最大值和平均值,刷过国赛题的选手应该在第十二届的国赛题里见过。

本届光是数码管显示界面就有六个,除了国赛才考的超声波和串口,几乎所有模块都用上了。本届官方提供的底层驱动代码也全部都用上了,而且底层驱动代码的.h文件和引脚定义都需要自己手动添加,考查到了模块化编程和单片机原理图阅读。

难点分析

难点1:通过adc通道对光敏电阻亮暗状态的检测来开启测温度测湿度;

难点2:回显模式显示温湿度最大值和平均值;

难点3:长按2s后松手来清除所有数据;

程序设计题目与代码解析

 题目

 代码解析

main.c

  1. #include <STC15F2K60S2.H>
  2. #include "DS1302.H"
  3. #include "ONEWIRE.H"
  4. #include "IIC.H"
  5. //ne555测频率需将跳线帽接到P34和SGNAL口
  6. bit key_line,range_mode,clean_flag,L1,L2,L3,L4,L5,L6,l4_flag;
  7. unsigned char time_8ms,time_20ms,tick_20ms,time_200ms,time_100ms,work_mode,back_mode,down_flag,SMG[8];
  8. unsigned int shi,fen,miao,temp,temp_read,frequence,count,water,water_read,time_1s,light,time_3s,time_2s,clean_time;
  9. unsigned int range_num,shi_back,fen_back,water_aver,water_max,water_sum,temp_aver,temp_max,temp_sum;
  10. int temp_num=30;
  11. unsigned char code t_display[]={ //标准字库
  12. // 0 1 2 3 4 5 6 7 8 9 A B C D E F
  13. 0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F,0x77,0x7C,0x39,0x5E,0x79,0x71,
  14. //black - H J K L N o P U t G Q r M y
  15. 0x00,0x40,0x76,0x1E,0x70,0x38,0x37,0x5C,0x73,0x3E,0x78,0x3d,0x67,0x50,0x37,0x6e,
  16. 0xBF,0x86,0xDB,0xCF,0xE6,0xED,0xFD,0x87,0xFF,0xEF,0x46}; //0. 1. 2. 3. 4. 5. 6. 7. 8. 9. -1
  17. unsigned char code t_com[]={0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80}; //位码
  18. void smg(unsigned char wei,unsigned char duan) //数码管刷新函数,放在定时器中断刷新
  19. {
  20. P0=0xFF;
  21. P2=0xC0;P0=t_com[wei];P2=0x00;
  22. P2=0xE0;P0=~t_display[duan];P2=0x00;
  23. }
  24. void led_set(void) //led初始化函数
  25. {
  26. P0=0xFF;P2=0x80;
  27. P00=~L1;P01=~L2;
  28. P02=~L3;P03=~L4;
  29. P04=~L5;P05=~L6;
  30. P2=0x00;
  31. }
  32. void Ds1302_Init(unsigned char shi_set,fen_set,miao_set) //DS1302时钟初始化函数
  33. {
  34. Write_Ds1302_Byte(0x8E,0x00);
  35. Write_Ds1302_Byte(0x84,shi_set);
  36. Write_Ds1302_Byte(0x82,fen_set);
  37. Write_Ds1302_Byte(0x80,miao_set);
  38. Write_Ds1302_Byte(0x8E,0x80);
  39. shi=Read_Ds1302_Byte(0x85);
  40. fen=Read_Ds1302_Byte(0x83);
  41. miao=Read_Ds1302_Byte(0x81);
  42. }
  43. void Time_Display(void) //时间显示界面函数
  44. {
  45. SMG[0]=shi/16;
  46. SMG[1]=shi%16;
  47. SMG[2]=17;
  48. SMG[3]=fen/16;
  49. SMG[4]=fen%16;
  50. SMG[5]=17;
  51. SMG[6]=miao/16;
  52. SMG[7]=miao%16;
  53. }
  54. void C_Display(void) //回显界面——温度回显函数
  55. {
  56. SMG[0]=12;
  57. SMG[1]=16;
  58. if(range_num>0) //触发采集次数大于0就显示,等于0就熄灭
  59. {
  60. SMG[2]=temp_max/10;
  61. SMG[3]=temp_max%10;
  62. SMG[4]=17;
  63. SMG[5]=temp_aver/100;
  64. SMG[6]=temp_aver/10%10+32;
  65. SMG[7]=temp_aver%10;
  66. }
  67. else{SMG[2]=16;SMG[3]=16;SMG[4]=16;SMG[5]=16;SMG[6]=16;SMG[7]=16;}
  68. }
  69. void H_Display(void) //回显界面——湿度回显函数
  70. {
  71. SMG[0]=18;
  72. SMG[1]=16;
  73. if(range_num>0) //触发采集次数大于0就显示,等于0就熄灭
  74. {
  75. SMG[2]=water_max/10;
  76. SMG[3]=water_max%10;
  77. SMG[4]=17;
  78. SMG[5]=water_aver/100;
  79. SMG[6]=water_aver/10%10+32;
  80. SMG[7]=water_aver%10;
  81. }
  82. else{SMG[2]=16;SMG[3]=16;SMG[4]=16;SMG[5]=16;SMG[6]=16;SMG[7]=16;}
  83. }
  84. void F_Display(void) //回显界面——时间回显函数
  85. {
  86. SMG[0]=15;
  87. SMG[1]=range_num/10;
  88. SMG[2]=range_num%10;
  89. if(range_num>0) //触发采集次数大于0就显示,等于0就熄灭
  90. {
  91. SMG[3]=shi_back/16;
  92. SMG[4]=shi_back%16;
  93. SMG[5]=17;
  94. SMG[6]=fen_back/16;
  95. SMG[7]=fen_back%16;
  96. }
  97. else{SMG[3]=16;SMG[4]=16;SMG[5]=16;SMG[6]=16;SMG[7]=16;}
  98. }
  99. void P_Display(void) //温度参数显示函数
  100. {
  101. SMG[0]=24;
  102. SMG[1]=16;
  103. SMG[2]=16;
  104. SMG[3]=16;
  105. SMG[4]=16;
  106. SMG[5]=16;
  107. if(temp_num>9)SMG[6]=temp_num/10;else{SMG[6]=16;} //长度不足两位高位熄灭
  108. SMG[7]=temp_num%10;
  109. }
  110. void E_Display(void) //温度湿度测量界面函数
  111. {
  112. SMG[0]=14;
  113. SMG[1]=16;
  114. SMG[2]=16;
  115. SMG[3]=temp/10;
  116. SMG[4]=temp%10;
  117. SMG[5]=17;
  118. if(water>=10&&water<=90) //湿度为有效值时正常显示,为无效值时显示AA
  119. {
  120. SMG[6]=water/10;
  121. SMG[7]=water%10;
  122. }
  123. else{SMG[6]=10;SMG[7]=10;}
  124. }
  125. void key_task(void)
  126. {
  127. }
  128. void key_work(void) //按键工作函数
  129. {
  130. if(key_line==0) //20ms读一次按键
  131. {
  132. P32=1;P33=0;P44=1;P42=1;
  133. if(P44==0) //S4 //按键消抖
  134. {
  135. while(!P44) //防止在时间显示界面按下按键程序困在while里时间不能读
  136. {
  137. key_task();
  138. shi=Read_Ds1302_Byte(0x85);
  139. fen=Read_Ds1302_Byte(0x83);
  140. miao=Read_Ds1302_Byte(0x81);
  141. }
  142. if(++work_mode>2)work_mode=0; //S4切换界面
  143. }
  144. if(P42==0) //S8
  145. {
  146. while(!P42)
  147. {
  148. key_task();
  149. shi=Read_Ds1302_Byte(0x85);
  150. fen=Read_Ds1302_Byte(0x83);
  151. miao=Read_Ds1302_Byte(0x81);
  152. }
  153. if(work_mode==2){if(++temp_num>99)temp_num=0;} //S8在参数界面下按下温度参数加1
  154. }
  155. }
  156. if(key_line==1)
  157. {
  158. P32=0;P33=1;P44=1;P42=1;
  159. if(P44==0) //S5
  160. {
  161. while(!P44)
  162. {
  163. key_task();
  164. shi=Read_Ds1302_Byte(0x85);
  165. fen=Read_Ds1302_Byte(0x83);
  166. miao=Read_Ds1302_Byte(0x81);
  167. }
  168. if(work_mode==1){if(++back_mode>2)back_mode=0;} //S5回显子界面切换
  169. }
  170. if(P42==0) //S9
  171. {
  172. while(!P42)
  173. {
  174. key_task();
  175. shi=Read_Ds1302_Byte(0x85);
  176. fen=Read_Ds1302_Byte(0x83);
  177. miao=Read_Ds1302_Byte(0x81);
  178. if(back_mode==2)clean_flag=1; //长按触发清除的时间标志位
  179. }
  180. if(work_mode==2){if(--temp_num<0)temp_num=99;} //S9在参数界面下按下温度参数减1
  181. if(back_mode==2)clean_flag=0; //松开清除的时间标志位归0
  182. }
  183. }
  184. }
  185. void Timer1_Init(void) //1毫秒@12.000MHz
  186. {
  187. AUXR |= 0x40; //定时器时钟1T模式
  188. TMOD &= 0x0F; //设置定时器模式
  189. TL1 = 0x20; //设置定时初始值
  190. TH1 = 0xD1; //设置定时初始值
  191. TF1 = 0; //清除TF1标志
  192. TR1 = 1; //定时器1开始计时
  193. ET1 = 1;
  194. EA = 1;
  195. }
  196. void Timer0_Init(void) //定时器0设置为计数模式测ne555频率
  197. {
  198. TMOD = 0x07; //设置定时器模式
  199. TL0 = 0xFF; //设置定时初始值
  200. TH0 = 0xFF; //设置定时初始值
  201. TF0 = 0; //清除TF1标志
  202. TR0 = 1; //定时器1开始计时
  203. ET0 = 1;
  204. EA = 1;
  205. }
  206. void read_task(void) //读时间温湿度函数
  207. {
  208. if(tick_20ms>20) //20ms读一次时间和温度(亲测温度超过30ms读无效)
  209. {
  210. tick_20ms=0;
  211. shi=Read_Ds1302_Byte(0x85);
  212. fen=Read_Ds1302_Byte(0x83);
  213. miao=Read_Ds1302_Byte(0x81);
  214. temp_read=(read_temp()*1);
  215. }
  216. if(frequence>=200&&frequence<=2000){water_read=((frequence*2/45)+1.2);} //将ne555频率转化为湿度
  217. else{water_read=0;}
  218. }
  219. void task_work(void) //任务执行函数
  220. {
  221. if(range_mode==0) //当光明电阻一直处于亮状态 或 暗状态超过3s 时可以显示时间 回显 参数
  222. {
  223. //光敏电阻从亮到暗的下降沿触发温湿度测量
  224. if(light>125)down_flag=0;
  225. else{if(down_flag<=10)down_flag++;}
  226. if(down_flag==10)
  227. {
  228. range_mode=1; //此时从亮到暗触发温湿度采集
  229. range_num++;
  230. if(range_num>=2) //当触发次数大于2时 若测量温度比上一次测量温度大L6亮
  231. {
  232. if(temp_read>temp&&water_read>water)L6=1;
  233. else{L6=0;}
  234. }
  235. temp=temp_read;water=water_read; //采集温度和湿度
  236. if(temp>temp_max)temp_max=temp; //温度最大值采集
  237. if(water>water_max)water_max=water; //湿度最大值采集
  238. temp_sum=temp_sum+temp;temp_aver=((temp_sum*10)/range_num); //温度平均值采集
  239. water_sum=water_sum+water;water_aver=((water_sum*10)/range_num); //湿度平均值采集
  240. shi_back=shi;fen_back=fen; //时分采集
  241. }
  242. //按键控制显示 调用各个显示函数
  243. if(work_mode==0){L1=1;L2=0;L3=0;Time_Display();back_mode=0;}
  244. if(work_mode==1)
  245. {
  246. L1=0;L2=1;L3=0;
  247. if(back_mode==0){C_Display();}
  248. if(back_mode==1){H_Display();}
  249. if(back_mode==2)
  250. {
  251. F_Display();
  252. if(clean_time>=2000) //长按大于2s松开后清除所有数据
  253. {
  254. time_2s=0;clean_time=0;
  255. range_num=0;
  256. temp_aver=0;temp_max=0;temp_sum=0;
  257. water_aver=0;water_max=0;water_sum=0;
  258. shi_back=0;fen_back=0;
  259. }
  260. }
  261. }
  262. if(work_mode==2){L1=0;L2=0;L3=0;P_Display();}
  263. }
  264. else //此时从亮到暗触发温湿度采集 显示采集温湿度
  265. {
  266. L1=0;L2=0;L3=1;
  267. E_Display();
  268. if(temp>temp_num)l4_flag=1; //当采集温度大于温度参数时,L4 0.1s闪烁
  269. else{l4_flag=0;}
  270. if(water>=10&&water<=90)L5=0;
  271. else{L5=1;}
  272. }
  273. }
  274. int main()
  275. {
  276. P2=0x80;P0=0xFF;P2=0x00; //关闭led外设
  277. P2=0xA0;P0=0x00;P2=0x00; //关闭蜂鸣器继电器外设
  278. light=adc(0x01)*1.961; //光敏电阻上电读数,防止上电触发采集
  279. Ds1302_Init(0x13,0x03,0x05); //时钟初始化
  280. Timer1_Init();Timer0_Init();
  281. while(1)
  282. {
  283. if(range_mode==0)key_work(); //温湿度采集界面下按键无效
  284. read_task(); //读取任务调用
  285. }
  286. }
  287. void server1(void) interrupt 3 //定时器1中断
  288. {
  289. if(++time_8ms==8)time_8ms=0; //8ms刷新八个数码管
  290. smg(time_8ms,SMG[time_8ms]);
  291. if(++time_20ms>20){time_20ms=0;key_line=~key_line;} //20ms读一次按键
  292. if(++time_200ms>200){time_200ms=0;light=adc(0x01)*1.961;} //200ms读一次光敏电阻
  293. if(++time_1s>1000){time_1s=0;frequence=count;count=0;} //1s读一次定时器0计数值即为ne555频率
  294. if(clean_flag==1){time_2s++;} //长按S9时计时
  295. else{if(time_2s>=2000)clean_time=time_2s;else{time_2s=0;}} //松开S9后计算长按时间
  296. if(range_mode==1){if(++time_3s>3000){time_3s=0;range_mode=0;}} //采集功能触发后3s内不可再次触发
  297. if(l4_flag==1){if(++time_100ms>100){time_100ms=0;L4=~L4;}} //L4 0.1s闪烁
  298. else{L4=0;}
  299. tick_20ms++; //20ms读取时间温湿度时间
  300. task_work(); //任务函数调用(放在中断以防止在时间显示界面下按下按键时钟不走动)
  301. led_set(); //led初始化
  302. }
  303. void server0(void) interrupt 1 //定时器0测ne555频率
  304. {
  305. count++;
  306. }

ds1302.c

  1. #include <STC15F2K60S2.H>
  2. #include "intrins.h"
  3. #include "ds1302.h"
  4. sbit SCK=P1^7;
  5. sbit SDA=P2^3;
  6. sbit RST=P1^3;
  7. //
  8. void Write_Ds1302(unsigned char temp)
  9. {
  10. unsigned char i;
  11. for (i=0;i<8;i++)
  12. {
  13. SCK = 0;
  14. SDA = temp&0x01;
  15. temp>>=1;
  16. SCK=1;
  17. }
  18. }
  19. //
  20. void Write_Ds1302_Byte( unsigned char address,unsigned char dat )
  21. {
  22. RST=0; _nop_();
  23. SCK=0; _nop_();
  24. RST=1; _nop_();
  25. Write_Ds1302(address);
  26. Write_Ds1302(dat);
  27. RST=0;
  28. }
  29. //
  30. unsigned char Read_Ds1302_Byte ( unsigned char address )
  31. {
  32. unsigned char i,temp=0x00;
  33. RST=0; _nop_();
  34. SCK=0; _nop_();
  35. RST=1; _nop_();
  36. Write_Ds1302(address);
  37. for (i=0;i<8;i++)
  38. {
  39. SCK=0;
  40. temp>>=1;
  41. if(SDA)
  42. temp|=0x80;
  43. SCK=1;
  44. }
  45. RST=0; _nop_();
  46. SCK=0; _nop_();
  47. SCK=1; _nop_();
  48. SDA=0; _nop_();
  49. SDA=1; _nop_();
  50. return (temp);
  51. }

ds1302.h

  1. #ifndef __DS1302_H__
  2. #define __DS1302_H__
  3. void Write_Ds1302_Byte( unsigned char address,unsigned char dat );
  4. unsigned char Read_Ds1302_Byte ( unsigned char address );
  5. #endif

onewire.c

  1. #include <STC15F2K60S2.H>
  2. #include "intrins.h"
  3. #include "onewire.h"
  4. sbit DQ=P1^4;
  5. //
  6. void Delay_OneWire(unsigned int t)
  7. {
  8. unsigned char i;
  9. while(t--){
  10. for(i=0;i<12;i++);
  11. }
  12. }
  13. //
  14. void Write_DS18B20(unsigned char dat)
  15. {
  16. unsigned char i;
  17. for(i=0;i<8;i++)
  18. {
  19. DQ = 0;
  20. DQ = dat&0x01;
  21. Delay_OneWire(5);
  22. DQ = 1;
  23. dat >>= 1;
  24. }
  25. Delay_OneWire(5);
  26. }
  27. //
  28. unsigned char Read_DS18B20(void)
  29. {
  30. unsigned char i;
  31. unsigned char dat;
  32. for(i=0;i<8;i++)
  33. {
  34. DQ = 0;
  35. dat >>= 1;
  36. DQ = 1;
  37. if(DQ)
  38. {
  39. dat |= 0x80;
  40. }
  41. Delay_OneWire(5);
  42. }
  43. return dat;
  44. }
  45. //
  46. bit init_ds18b20(void)
  47. {
  48. bit initflag = 0;
  49. DQ = 1;
  50. Delay_OneWire(12);
  51. DQ = 0;
  52. Delay_OneWire(80);
  53. DQ = 1;
  54. Delay_OneWire(10);
  55. initflag = DQ;
  56. Delay_OneWire(5);
  57. return initflag;
  58. }
  59. float read_temp(void)
  60. {
  61. unsigned char low,high;
  62. unsigned int tem;
  63. float temp;
  64. init_ds18b20();
  65. Write_DS18B20(0xCC);
  66. Write_DS18B20(0x44);
  67. Delay_OneWire(200);
  68. init_ds18b20();
  69. Write_DS18B20(0xCC);
  70. Write_DS18B20(0xBE);
  71. Delay_OneWire(200);
  72. low=Read_DS18B20();
  73. high=Read_DS18B20();
  74. high&=0x0F;
  75. tem=(high<<8)+low;
  76. temp=tem*0.0625;
  77. return temp;
  78. }

onewire.h

  1. #ifndef __ONEWIRE_H__
  2. #define __ONEWIRE_H__
  3. float read_temp(void);
  4. #endif

iic.c

  1. #include <STC15F2K60S2.H>
  2. #include "intrins.h"
  3. #include "iic.h"
  4. sbit sda=P2^1;
  5. sbit scl=P2^0;
  6. #define DELAY_TIME 5
  7. //
  8. static void I2C_Delay(unsigned char n)
  9. {
  10. do
  11. {
  12. _nop_();_nop_();_nop_();
  13. }
  14. while(n--);
  15. }
  16. //
  17. void I2CStart(void)
  18. {
  19. sda = 1;
  20. scl = 1;
  21. I2C_Delay(DELAY_TIME);
  22. sda = 0;
  23. I2C_Delay(DELAY_TIME);
  24. scl = 0;
  25. }
  26. //
  27. void I2CStop(void)
  28. {
  29. sda = 0;
  30. scl = 1;
  31. I2C_Delay(DELAY_TIME);
  32. sda = 1;
  33. I2C_Delay(DELAY_TIME);
  34. }
  35. //
  36. void I2CSendByte(unsigned char byt)
  37. {
  38. unsigned char i;
  39. for(i=0; i<8; i++){
  40. scl = 0;
  41. I2C_Delay(DELAY_TIME);
  42. if(byt & 0x80){
  43. sda = 1;
  44. }
  45. else{
  46. sda = 0;
  47. }
  48. I2C_Delay(DELAY_TIME);
  49. scl = 1;
  50. byt <<= 1;
  51. I2C_Delay(DELAY_TIME);
  52. }
  53. scl = 0;
  54. }
  55. //
  56. unsigned char I2CReceiveByte(void)
  57. {
  58. unsigned char da;
  59. unsigned char i;
  60. for(i=0;i<8;i++){
  61. scl = 1;
  62. I2C_Delay(DELAY_TIME);
  63. da <<= 1;
  64. if(sda)
  65. da |= 0x01;
  66. scl = 0;
  67. I2C_Delay(DELAY_TIME);
  68. }
  69. return da;
  70. }
  71. //
  72. unsigned char I2CWaitAck(void)
  73. {
  74. unsigned char ackbit;
  75. scl = 1;
  76. I2C_Delay(DELAY_TIME);
  77. ackbit = sda;
  78. scl = 0;
  79. I2C_Delay(DELAY_TIME);
  80. return ackbit;
  81. }
  82. //
  83. void I2CSendAck(unsigned char ackbit)
  84. {
  85. scl = 0;
  86. sda = ackbit;
  87. I2C_Delay(DELAY_TIME);
  88. scl = 1;
  89. I2C_Delay(DELAY_TIME);
  90. scl = 0;
  91. sda = 1;
  92. I2C_Delay(DELAY_TIME);
  93. }
  94. unsigned char adc(unsigned char addr)
  95. {
  96. unsigned char temp;
  97. I2CStart();
  98. I2CSendByte(0x90);
  99. I2CWaitAck();
  100. I2CSendByte(addr);
  101. I2CWaitAck();
  102. I2CStart();
  103. I2CSendByte(0x91);
  104. I2CWaitAck();
  105. temp=I2CReceiveByte();
  106. I2CWaitAck();
  107. I2CStop();
  108. return temp;
  109. }

iic.h

  1. #ifndef __IIC_H__
  2. #define __IIC_H__
  3. unsigned char adc(unsigned char addr);
  4. #endif

总结(附客观题目与答案)

以上代码仅是个人理解的逻辑思路和分析加上实验室学长教授的代码模块,不是完美答案,最终可以实现所有功能。

本届省赛已经预示了未来蓝桥杯电子类的试题难度将会上升,建议还是要熟悉所有模块,学习一些基本的c语言算法。一定要多刷题,历届省赛题和国赛题,本届省赛难度大主要是要实现的功能多,综合了前几届几乎所有省赛要实现的功能,综合性强。

最后祝大家在本届蓝桥杯单片机省赛中取得好成绩!

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

闽ICP备14008679号