秋霞电影网午夜鲁丝片无码,真人h视频免费观看视频,囯产av无码片毛片一级,免费夜色私人影院在线观看,亚洲美女综合香蕉片,亚洲aⅴ天堂av在线电影猫咪,日韩三级片网址入口

基于單片機(jī)STC89C52RC的交通燈

上傳人:仙*** 文檔編號:253592487 上傳時(shí)間:2025-03-16 格式:DOC 頁數(shù):13 大?。?3.01KB
收藏 版權(quán)申訴 舉報(bào) 下載
基于單片機(jī)STC89C52RC的交通燈_第1頁
第1頁 / 共13頁
基于單片機(jī)STC89C52RC的交通燈_第2頁
第2頁 / 共13頁
基于單片機(jī)STC89C52RC的交通燈_第3頁
第3頁 / 共13頁

下載文檔到電腦,查找使用更方便

15 積分

下載資源

還剩頁未讀,繼續(xù)閱讀

資源描述:

《基于單片機(jī)STC89C52RC的交通燈》由會員分享,可在線閱讀,更多相關(guān)《基于單片機(jī)STC89C52RC的交通燈(13頁珍藏版)》請?jiān)谘b配圖網(wǎng)上搜索。

1、 基于單片機(jī)STC89C52RC的交通燈 摘要:本交通燈系統(tǒng)采用STC89C52RC作為核心控制器,控制紅綠黃三盞燈,來達(dá)到模擬日常交通燈系統(tǒng),其中倒計(jì)時(shí)時(shí)間通過1602顯示出來。 關(guān)鍵詞:交通燈 1602液晶 一、 設(shè)計(jì)方案 整個(gè)模擬交通燈系統(tǒng)用單片機(jī)STC89C52RC作為核心控制器,有序的控 制著紅黃綠三盞燈的運(yùn)行,實(shí)際交通燈系統(tǒng)所需的倒計(jì)時(shí)時(shí)間采用1602顯示出來,并且其倒計(jì)時(shí)時(shí)間可通過獨(dú)立式鍵盤進(jìn)行調(diào)整。 STC89

2、C52 紅黃綠LED 1602液晶 獨(dú)立式鍵盤 系統(tǒng)框圖 二、 主程序流程圖 開始 系統(tǒng)初始化 等待中斷 N 按鍵是否按下? Y 調(diào)用按鍵處理函數(shù) 返回 三、 附錄------源程序(C) 一、the main function of this system /* *用stc52實(shí)現(xiàn)簡易交通燈 */ #include #include

3、trins.h> #include "define.h" #include "lcd_1602.h" #include "delay.h" #include "some_inits.h" #include "control.h" /*************************************** *主函數(shù)void main() ****************************************/ void main() { sys_init(); while(1) { key_scan(); //掃描鍵盤 del

4、ay_ms(100); } } 二、include Some .h files (1)defines.h #ifndef _define_h #define _define_h #define uchar unsigned char #define unint unsigned int /* 液晶數(shù)據(jù)區(qū) */ sfr lcd_bus=0x80; //液晶數(shù)據(jù)口 sbit E=P2^7; sbit RW=P2^6; sbit RS=P2^5; /* 定義三盞led */ sbit red=P2^0; sbit green=P2^1;

5、sbit yellow=P2^2; /* 定義三個(gè)開關(guān) */ sbit jia=P1^0; //加一鍵 sbit jian=P1^1; //減一鍵 sbit ok=P1^2; //確認(rèn)鍵 uchar flag=1; //1,2,3:綠燈,黃燈,紅燈 bit first=0; /* 蜂鳴器 */ sbit bell=P1^4; uchar sec_h; //秒針十位 uchar sec_l; //秒針個(gè)位 uchar g_h=1,g_l=0;//綠燈計(jì)時(shí)數(shù)據(jù) uchar y_h=1,y_l=0;//黃燈計(jì)時(shí)數(shù)據(jù) uchar r_h=1,r_l

6、=0;//紅燈計(jì)時(shí)數(shù)據(jù) #endif (2)some_inits.h #ifndef _some_inits_h #define _some_inits_h #include "lcd_1602.h" #include "define.h" //state some functions void L1602_init(); void Time0_init(); /*系統(tǒng)初始化*/ void sys_init() { flag=1; //綠燈 green=1; red=0; yellow=0; L1602_init();//1602液晶

7、初始化 Time0_init();//定時(shí)器0初始化 } /*1602初始化*/ void L1602_init(void) { enable(0x01); enable(0x38); enable(0x0c); enable(0x06); enable(0xd0); L1602_string(1,2,"traffic lights"); sec_h=g_h; sec_l=g_l; L1602_char(2,8,sec_h+0x30); L1602_char(2,9,sec_l+0x30); } /* 定時(shí)器0初始化 */

8、 void Time0_init() { TMOD=0x01; //time0,time1工作在方式一 IE=0x8a; //開EA,允許ET0,允許ET1 TH0=0x4c; //50ms,晶振是11.0592M TL0=0x00; //TH1=0xfc; //1ms //TL1=0x66; TR0=1; //time0開始計(jì)數(shù) } #endif (3)control.h #ifndef _control_h_ #define _control_h_ #include #include "l

9、cd_1602.h" #include "define.h" #include "delay.h" /* state some functions */ void inc(); void dec(); void fmq(); /* 鍵盤掃描函數(shù) */ void key_scan() { if(ok==0) { delay_ms(5); if(ok==0) { fmq(); enable(0x0c); //關(guān)光標(biāo) first=0; TR0=1; //開始計(jì)數(shù) } else _nop_();

10、} else if(jia==0 || jian==0) { delay_ms(5); if(jia==0 || jian==0) { TR0=0; // 停止計(jì)數(shù) fmq(); while(!first) { first=1; enable(0x0f); //開光標(biāo),開反白 } if(jia==0) inc(); else if(jian==0) dec(); } else { _nop_(); } } } /* 加一 */ void i

11、nc(void) { _nop_(); if(green==1 && yellow==0 && red==0) { if(g_l<9 && g_h<5) g_l++; else { if(g_h<5) { g_h++; g_l=0; } else { g_h=5; g_l=0; } } sec_h=g_h;sec_l=g_l; } else if(yellow==1 && red==0 && green==0) { if(y_l<9 &&

12、 y_h<5) y_l++; else { if(y_h<5) { y_h++; y_l=0; } else { y_h=5; y_l=0; } } sec_h=y_h;sec_l=y_l; } else if(red==1 && green==0 && yellow==0 ) { if(r_l<9 && r_h<5) r_l++; else { if(r_h<5) { r_h++; r_l=0;

13、 } else { r_h=5; r_l=0; } } sec_h=r_h;sec_l=r_l; } L1602_char(2,9,sec_l+0x30); L1602_char(2,8,sec_h+0x30); } /* 減一 */ void dec(void) { _nop_(); if(green==1 && yellow==0 && red==0) { if(g_l>0 && g_h>0) { g_l--; } el

14、se { if(g_h>0) { g_h--; g_l=9; } else if(g_l>0) { g_l--; } else { g_h=0; g_l=0; } } sec_h=g_h;sec_l=g_l; } else if(yellow==1 && green==0 && red==0) { if(y_l>0 && y_h>0) { y_l--; }

15、 else { if(y_h>0) { y_h--; y_l=9; } else if(y_l>0) { y_l--; } else { y_h=0; y_l=0; } } sec_h=y_h;sec_l=y_l; } else if(red==1 && yellow==0 && green==0) { if(r_l>0 && r_h>0) { r_l--;

16、 } else { if(r_h>0) { r_h--; r_l=9; } else if(r_l>0) { r_l--; } else { r_h=0; r_l=0; } } sec_h=r_h;sec_l=r_l; } L1602_char(2,9,sec_l+0x30); L1602_char(2,8,sec_h+0x30); } /* 蜂鳴器鳴響一聲 */ void fm

17、q() { unint i=150; while(i--) { bell=~bell; delay_ms(1); } } /* time0 service function */ void time0() interrupt 1 { static count=0; TR0=0; if(count==20) //1s { count=0; if(sec_l==0) { if(sec_h==0) //30s結(jié)束 { if(flag==1) { flag++;

18、 green=1; red=0; yellow=0; sec_h=g_h; sec_l=g_l; } else if(flag==2) //狀態(tài)二,亮黃燈 { flag++; green=0; red=0; yellow=1; sec_h=y_h; sec_l=y_l; } else if(flag==3)//狀態(tài)三,紅燈亮 { flag=1; //回到狀態(tài)一,綠燈亮 green=0;

19、 red=1; yellow=0; sec_h=r_h; sec_l=r_l; } } else //個(gè)位為0而已 { sec_h--; sec_l=9; } } else { sec_l--; } L1602_char(2,8,sec_h+0x30); L1602_char(2,9,sec_l+0x30); } else { count++; } TH0=0x4c;

20、TL0=0x00; TR0=1; } #endif (4)lcd_1602.h #ifndef _lcd_1602_h #define _lcd_1602_h #include "define.h" #include "delay.h" uchar Convert(uchar In_Date) { uchar i, Out_Date = 0, temp = 0; for(i=0; i<8; i++) { temp = (In_Date >> i) & 0x01; Out_Da

21、te |= (temp << (7 - i)); } return Out_Date; } /*寫命令*/ void enable(uchar del) { P0 = Convert(del); RS = 0; RW = 0; E = 0; delay(); E = 1; delay(); } /*寫數(shù)據(jù)*/ void write(uchar del) { P0 = Convert(del); RS = 1; RW = 0; E = 0; delay(); E = 1; delay();

22、} /*寫字符*/ void L1602_char(uchar hang,uchar lie,char sign) { uchar a; if(hang == 1) a = 0x80; if(hang == 2) a = 0xc0; a = a + lie - 1; enable(a); write(sign); } /*寫字符串*/ void L1602_string(uchar hang,uchar lie,uchar *p) { uchar a; if(hang == 1) a = 0x80; if(hang == 2) a = 0xc0; a = a + lie - 1; enable(a); while(1) { if(*p == '\0') break; write(*p); p++; } } #endif

展開閱讀全文
溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  sobing.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號:ICP2024067431-1 川公網(wǎng)安備51140202000466號


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺,本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng),我們立即給予刪除!