单片机课程设计。
【注】我的单片机课程设计选题是单片机密码锁。但是课题并没有要求用存储器存储密码,所以当时我的设计还是比较简陋的。那个设计只能设定一个内部密码,断电后又恢复到初始密码状态。但是实际生活中,必须能够存储密码。并且,在课程设计里我用的是数码管显示密码,在这里我用的是1602液晶显示。于是以下的设计着重于存储与1602相关,且代码是重新编写(参考了网上的案例),没有用课程设计的代码。
在此提供我课程设计的单片机密码锁链接:胡博靖的单片机课程设计
设计思路
现在程序内设定一个初始密码,然后用液晶显示提示用户输入密码,通过矩阵键盘输入密码,然后进行比较。如果密码正确,则绿灯亮起,否则红灯亮1S,并提示输入密码错误次数。如果输入错误次数达到三次则蜂鸣器报警并锁定键盘。
自用笔记
数码管编码表(0到f)
共阳:0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e
共阴:0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71
protues仿真记载
1602——LM016
晶振——crystal
蜂鸣器——buzzer/sounder/speaker
可调电阻——pot-hg(课本写的是pot-lin,不过protues7.8没有)
不错的资料和方法
I2C总线简介
矩阵键盘行反转法
过程中所犯的低级错误
如图,LED所连接的电阻阻值太大,电流完全达不到使LED发光的值。
改正后,LED正常发光。
尚未解决的问题
蜂鸣器不响
程序应该正确,蜂鸣器旁的控制点红蓝色变化正确,改过蜂鸣器电压值,12V、5V、3V、1.5V都试过,但是就是不响。
可能的原因:
蜂鸣器是用方波驱动的,若仅输出单一的高电平或低电平是没用的。
蜂鸣器发出的声波也要靠人耳来听取,过高或过低的频率人耳是无法听到的。
蜂鸣器的仿真模型应选择下图中后面两种,才能听到声音。(然而我并没有听到声音)
1 2 3 4 5 6 7 Speaker & Sounders BUZZER DEVICE Generic buzzer symbol BUZZER ACTIVE DC Operated Buzzer - Outputs Via Sound Card SOUNDER ACTIVE Piezo Sounder model (Digital) - Outputs Via Sound Card SPEAKER DEVICE Generic loudspeaker symbol SPEAKER ACTIVE loudspeaker model (Analog) - Outputs Via Sound Card
依次解释如下:
蜂鸣器 通用蜂鸣器符号 无仿真模型
蜂鸣器 活动的 阻抗12Ω直流蜂鸣器 仿真时通过声卡发声
讯响器 活动的 压电讯响器数字模型 仿真时通过声卡发声
扬声器 通用扬声器符号
扬声器 活动的 阻抗8Ω扬声器模拟模型 仿真时通过声卡发声
存储有问题。
程序代码严格按照标准代码写的,常见的delay();的延时问题应该没有。但是明显仿真结果没有存储到新的修改密码,一直是初始密码。
请各位指教。
源程序和仿真图
若需要下载,请点击!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 #include <reg52.h> #define uint unsigned int #define uchar unsigned char void key_scan () ;uchar count0,count1,count3,num,n=0 ,temp,a,j,count4; uchar mima[8 ]; uchar tab_key[50 ]; uchar code table[]={ 0xc0 ,0xf9 ,0xa4 ,0xb0 ,0x99 ,0x92 ,0x82 ,0xf8 ,0x80 ,0x90 ,0x88 ,0x83 ,0xc6 ,0xa1 ,0x86 ,0x8e }; bit enterflag; bit mimaflag; bit xiugaiflag; bit enter1flag; sbit red=P2^1 ; sbit green=P2^0 ; sbit bell=P2^2 ; sbit rs=P2^6 ; sbit rw=P2^5 ; sbit lcden=P2^7 ; sbit scl=P3^0 ; sbit sda=P3^1 ; uchar code table1[]="input the passco" ; uchar code table2[]="de: --------" ; uchar code table3[]="*" ; uchar code table4[]="right (^_^) " ; uchar code table5[]="first error!!!!" ; uchar code table6[]="second error!!!!" ; uchar code table7[]="third error see " ; uchar code table8[]="u tomorrow (^_^)" ; uchar code table9[]="define the passc" ; uchar code table10[]="ode: --------" ; uchar code table11[]="code is new" ; void delay1 () { ;; }void delay2 (uchar x) { uchar a,b; for (a=x;a>0 ;a--) for (b=100 ;b>0 ;b--); } void delay3 (uchar x) { uchar a,b; for (a=x;a>0 ;a--) for (b=200 ;b>0 ;b--); } void delay (uint z) { uint x,y; for (x=z;x>0 ;x--) for (y=110 ;y>0 ;y--); } void start () { sda=1 ; delay1 (); scl=1 ; delay1 (); sda=0 ; delay1 (); } void stop () { sda=0 ; delay1 (); scl=1 ; delay1 (); sda=1 ; delay1 (); } void respond () { uchar i; scl=1 ; delay1 (); while ((sda==1 )&&(i<250 ))i++; scl=0 ; delay1 (); } void noack () {scl=1 ; delay1 ();scl=1 ;delay1 (); scl=0 ;delay1 (); sda=0 ;delay1 (); } void write_byte (uchar date) { uchar i,temp; temp=date; for (i=0 ;i<8 ;i++) { temp=temp<<1 ; scl=0 ; delay1 (); sda=CY; delay1 (); scl=1 ; delay1 (); scl=0 ;delay1 (); } scl=0 ; delay1 (); sda=1 ; delay1 (); } uchar read_byte () { uchar i,k; scl=0 ; delay1 (); sda=1 ; delay1 (); for (i=0 ;i<8 ;i++) { scl=1 ; delay1 (); k=(k<<1 )|sda; scl=0 ; delay1 (); } return k; } void write_add (uchar address,uchar date) { start (); write_byte (0xa0 ); respond (); write_byte (address); respond (); write_byte (date); respond (); stop (); } uchar read_add (uchar address) { uchar date; start (); write_byte (0xa0 ); respond (); write_byte (address); respond (); start (); write_byte (0xa1 ); respond (); date=read_byte (); noack (); stop (); return date; } void write_com (uchar com) { rs=0 ; lcden=0 ; P0=com; delay (5 ); lcden=1 ; delay (5 ); lcden=0 ; } void write_date (uchar date) { rs=1 ; lcden=0 ; P0=date; delay (5 ); lcden=1 ; delay (5 ); lcden=0 ; } bit mimacmp () { bit flag; uchar i; for (i=0 ;i<8 ;i++) { if (mima[i]==tab_key[i]) flag=1 ; else { flag=0 ; i=8 ; } } return (flag); } void lcd_display () {uchar i=0 ; write_com (0x80 +0x40 +8 );for (i=0 ;i<n;i++){ write_date (table3[0 ]); } } void key_manage1 () {tab_key[n]=0 ; n++; if (xiugaiflag==1 ) { mima[count4]=0 ; count4++; } } void key_manage2 () {tab_key[n]=1 ; n++; if (xiugaiflag==1 ){ mima[count4]=1 ; count4++; } } void key_manage3 () {tab_key[n]=2 ; n++; if (xiugaiflag==1 ){ mima[count4]=2 ; count4++; } } void key_manage4 () {tab_key[n]=3 ; n++; if (xiugaiflag==1 ){ mima[count4]=3 ; count4++; } } void key_manage5 () {tab_key[n]=4 ; n++; if (xiugaiflag==1 ){ mima[count4]=4 ; count4++; } } void key_manage6 () {tab_key[n]=5 ; n++; if (xiugaiflag==1 ){ mima[count4]=5 ; count4++; } } void key_manage7 () {tab_key[n]=6 ; n++; if (xiugaiflag==1 ){ mima[count4]=6 ; count4++; } } void key_manage8 () {tab_key[n]=7 ; n++; if (xiugaiflag==1 ){ mima[count4]=7 ; count4++; } } void key_manage9 () {tab_key[n]=8 ; n++; if (xiugaiflag==1 ){ mima[count4]=8 ; count4++; } } void key_manage10 () {tab_key[n]=9 ; n++; if (xiugaiflag==1 ){ mima[count4]=9 ; count4++; } } void key_manage11 () { enterflag=1 ; if (n==8 ) { mimaflag=mimacmp (); } else { mimaflag=0 ; } if (enterflag==1 ) { enterflag=0 ; n=0 ; for (count3=0 ;count3<8 ;count3++) { delay (5 ); tab_key[count3]=0x0f ; } TR1=1 ; count1=0 ; if (mimaflag==1 ) { a=0 ; write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table4[count3]); green=0 ;red=1 ; bell=1 ; delay (5 ); } } else { n=0 ; red=0 ; bell=0 ; a++; if (a==1 ) { for (count3=0 ;count3<8 ;count3++) { delay (5 ); tab_key[count3]=0x0f ; } write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table5[count3]); green=1 ;red=0 ; bell=1 ; delay (5 ); } TR1=1 ; } if (a==2 ) { for (count3=0 ;count3<8 ;count3++) { delay (5 ); tab_key[count3]=0x0f ; } write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table6[count3]); green=1 ;red=0 ; bell=1 ; delay (5 ); } TR1=1 ; } if (a==3 ) { for (count3=0 ;count3<8 ;count3++) { delay (5 ); tab_key[count3]=0x0f ; } write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table7[count3]); green=1 ;red=0 ; bell=0 ; delay (5 ); } write_com (0x80 +0x40 ); for (count3=0 ;count3<16 ;count3++) { write_date (table8[count3]); green=1 ;red=0 ; bell=0 ; delay (5 ); } TR1=0 ; } } } } void key_manage12 () {tab_key[n]=11 ; n++; } void key_manage13 () {n=0 ; write_com (0x80 ); for (count3=0 ;count3<16 ;count3++){ write_date (table1[count3]); delay (5 ); } write_com (0x80 +0x40 ); for (count3=0 ;count3<16 ;count3++){ write_date (table2[count3]); delay (5 ); tab_key[count3]=0x0f ; } } void key_manage14 () { uchar aa=0 ; n=0 ; xiugaiflag=1 ; write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++){ write_date (table9[count3]); delay (5 ); tab_key[count3]=0x0f ; } write_com (0x80 +0x40 ); for (count3=0 ;count3<16 ;count3++){ write_date (table10[count3]); delay (5 ); } TR0=1 ; } void key_manage15 () {n=0 ; enter1flag=1 ; if (enter1flag==1 ){ enter1flag=0 ; count4=0 ; for (count3=0 ;count3<16 ;count3++) { tab_key[count3]=0x0f ; } write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table11[count3]); delay (100 ); } TR1=1 ; count1=0 ; } } void key_manage16 () {tab_key[n]=15 ; n++; } void time_1 () interrupt 3 { TH1=(65536 -50000 )/256 ; TL1=(65536 -50000 )%256 ; if (count1<20 ) { count1++; } else { TR1=0 ; count1=0 ; mimaflag=0 ; red=1 ; bell=1 ; write_com (0x01 ); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table1[count3]); delay (5 ); } write_com (0x80 +0x40 ); for (count3=0 ;count3<16 ;count3++) { write_date (table2[count3]); delay (5 ); } } } void time_0 () interrupt 1 { TH0=(65536 -50000 )/256 ; TL0=(65536 -50000 )%256 ; if (count4<8 ){ key_scan (); } else { TR0=0 ; count4=0 ; } } void init () { uchar i; lcden=0 ; write_com (0x38 ); write_com (0x0c ); write_com (0x06 ); write_com (0x01 ); write_com (0x80 ); TMOD=0x11 ; TH0=(65536 -2000 )/256 ; TL0=(65536 -2000 )%256 ; TH1=(65536 -50000 )/256 ; TL1=(65536 -50000 )%256 ; TR1=0 ; ET1=1 ; EA=1 ; TR0=0 ; ET0=1 ; count0=0 ; enterflag=0 ; mimaflag=0 ; red=1 ; sda=1 ; delay (5 ); scl=1 ; delay (5 ); for (i=0 ;i<8 ;i++) { write_add (i,8 ); delay3 (100 ); } for (i=0 ;i<8 ;i++) { mima[i]=read_add (i); delay (5 ); } } void main () { rw=0 ; init (); write_com (0x80 ); for (count3=0 ;count3<16 ;count3++) { write_date (table1[count3]); delay (5 ); } write_com (0x80 +0x40 ); for (count3=0 ;count3<16 ;count3++) { write_date (table2[count3]); delay (5 ); } while (1 ) { key_scan (); lcd_display (); } } void key_scan () {P1=0xfe ; temp=P1; temp=temp&0xf0 ; if (temp!=0xf0 ){ delay (100 );if (temp!=0xf0 ){ temp=P1; switch (temp){ case 0xee :key_manage1 ();break ;case 0xde :key_manage2 ();break ;case 0xbe :key_manage3 ();break ;case 0x7e :key_manage4 ();break ;} while (temp!=0xf0 ){ temp=P1; temp=temp&0xf0 ; } } } P1=0xfd ; temp=P1; temp=temp&0xf0 ; if (temp!=0xf0 ){ delay (100 );if (temp!=0xf0 ){ temp=P1; switch (temp){ case 0xed :key_manage5 ();break ;case 0xdd :key_manage6 ();break ;case 0xbd :key_manage7 ();break ;case 0x7d :key_manage8 ();break ;} while (temp!=0xf0 ){ temp=P1; temp=temp&0xf0 ; } } } P1=0xfb ; temp=P1; temp=temp&0xf0 ; if (temp!=0xf0 ){ delay (100 );if (temp!=0xf0 ){ temp=P1; switch (temp){ case 0xeb :key_manage9 ();break ;case 0xdb :key_manage10 ();break ;case 0xbb :key_manage11 ();break ;case 0x7b :key_manage12 ();break ;} while (temp!=0xf0 ){ temp=P1; temp=temp&0xf0 ; } } } P1=0xf7 ; temp=P1; temp=temp&0xf0 ; if (temp!=0xf0 ){ delay (100 );if (temp!=0xf0 ){ temp=P1; switch (temp){ case 0xe7 :key_manage13 ();break ;case 0xd7 :key_manage14 ();break ;case 0xb7 :key_manage15 ();break ;case 0x77 :key_manage16 ();break ;} while (temp!=0xf0 ){ temp=P1; temp=temp&0xf0 ; } } } }