基于單片機的藍牙遙控小車單片機大作業(yè)_第1頁
基于單片機的藍牙遙控小車單片機大作業(yè)_第2頁
基于單片機的藍牙遙控小車單片機大作業(yè)_第3頁
基于單片機的藍牙遙控小車單片機大作業(yè)_第4頁
基于單片機的藍牙遙控小車單片機大作業(yè)_第5頁
已閱讀5頁,還剩29頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

目錄代碼#include<reg52.h>sbitPWM1=P2^0;//PWM波產(chǎn)生的端口sbitPWM2=P2^1;sbitmotor_control_1=P2^7;//左輪控制sbitmotor_control_2=P2^6;//sbitmotor_control_3=P2^5;sbitmotor_control_4=P2^4;//unsignedintPWMCnt1=0;unsignedintcntPWM1=60;unsignedintPWMCnt2=0;unsignedintcntPWM2=60;unsignedcharbluetoothdata;voidinitial_myself();voidinitial_interrupt();voidusart_service(void);voiddelay_long(unsignedinttime);voidgo_forward(void);//voidstop();voidturn_right();voidturn_left();voidback();voidmain(){initial_myself();delay_long(100);initial_interrupt(); stop();while(1){usart_service();}}voidusart_service(){ switch(bluetoothdata) { case'f':go_forward(); delay_long(100); SBUF='f';//返回數(shù)據(jù)到手機 bluetoothdata='a'; break; case's':stop(); delay_long(100); SBUF='s'; bluetoothdata='a'; break; case'r':turn_right(); delay_long(100); SBUF='r'; bluetoothdata='a'; break; case'l':turn_left(); delay_long(100); SBUF='l'; bluetoothdata='a'; break; case'b':back(); delay_long(100); SBUF='b'; bluetoothdata='a'; break; case'1':cntPWM1=60; cntPWM2=60; delay_long(100); SBUF='1'; bluetoothdata='a'; break; case'2':cntPWM1=100; cntPWM2=100; delay_long(100); SBUF='2'; bluetoothdata='a'; break; case'3':cntPWM1=140; cntPWM2=140; delay_long(100); SBUF='3'; bluetoothdata='a'; break; }}voidusart_receive(void)interrupt4//串口中斷程序{if(RI==1)//收到字符{RI=0;//軟件清零bluetoothdata=SBUF;//讀取數(shù)據(jù)}if(TI==1)//發(fā)送數(shù)據(jù){TI=0;//清零}}voidT0_time()interrupt1//定時器1中斷程序{ PWMCnt1++; PWMCnt2++; if(PWMCnt1>=200) { PWMCnt1=1; } if(PWMCnt1<=cntPWM1) //230 { PWM1=1; } else { PWM1=0; } if(PWMCnt2>=200) { PWMCnt2=1; } if(PWMCnt1<=cntPWM2) //230 { PWM2=1; } else { PWM2=0; } TH0=(65536-50)/256; TL0=(65536-50)%256;}voidinitial_myself(){TMOD=0x01;//TH0=(65536-50)/256;//定時50微秒TL0=(65536-50)%256;// SCON=0x50;TMOD=0x21;TH1=TL1=0xfd;//設(shè)置波特率9600IP=0x10;//設(shè)置串口中斷為高優(yōu)先級}voidinitial_interrupt(){EA=1;//開總中斷ES=1;//開串口中斷ET0=1;//開定時器0中斷?TR0=1;//開定時器0TR1=1;//開定時器1}voiddelay_long(unsignedinttime){unsignedinti;unsignedintj;for(i=0;i<time;i++){ for(j=0;j<500;j++);}}voidgo_forward(){motor_control_1=0;motor_control_2=1; motor_control_3=0;motor_control_4=1;}voidstop(){ motor_control_1=0;motor_control_2=0; motor_control_3=0;motor_control_4=0;}voidturn_left(){ inti=5000; for(;i>=0;i--) { if(i) { motor_control_1=0; motor_control_2=0; motor_control_3=0; motor_control_4=1; } else { motor_control_1=0; motor_control_2=0; motor_control_3=0; motor_control_4=0; } } }voidturn_right(){ inti=5000; for(;i>=0;i--) { if(i) { motor_control_1=0; motor_control_2=1; motor_control_3=0; motor_control_4=0; } else { motor_control_1=0; motor_control_2=0;

溫馨提示

  • 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)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論