微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > 51单片机wifi小车代码

51单片机wifi小车代码

时间:11-22 来源:互联网 点击:
51单片机wifi小车代码

#include

#include

#define uchar unsigned char

#define uint unsigned int

uchar Buffer =0; //从串口接收的数据

uint i,j;

uchar flag=0;

uchar key_stime_counter,hight_votage=15,timeT_counter;

bit key_stime_ok;

sbit control_signal=P3^6;

sbit StatusLight=P2^2;

sbit MainLight=P2^3;

/********************************************************************

* 名称 : Delay_1ms()

* 功能 : 延时子程序,延时时间为 1ms * x

* 输入 : x (延时一毫秒的个数)

* 输出 : 无

***********************************************************************/

void Delay_1ms(uint i)//1ms延时

{

uchar x,j;

for(j=0;j

for(x=0;x<=148;x++);

}

void Turn*****tatusLight()

{

StatusLight=0;

}

/********************************************************************

* 名称 : Com_Int()

* 功能 : 串口中断子函数

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Com_Int(void) interrupt 4

{

EA = 0;

if(RI == 1) //当硬件接收到一个数据时,RI会置位

{

Buffer = SBUF-48; //这里减去48是因为从电脑中发送过来的数据是ASCII码。

RI = 0;

}

EA = 1;

}

/********************************************************************

* 名称 : Com_Init()

* 功能 : 串口初始化,晶振11.0592,波特率9600,使能了串口中断

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Com_Init(void)

{

TMOD = 0x21;

PCON = 0x00;

SCON = 0x50;

TH1 = 0xFd; //设置波特率 9600

TL1 = 0xFd;

TR1 = 1; //启动定时器1

ES = 1; //开串口中断

EA = 1; //开总中断

IT0=0;

EX0=1;

}

void TimerInit()

{

control_signal=0;

EA=1; //开总中断

ET0=1; //定时器0中断允许

TH0 = 0xFF; //定时器装初值

TL0 = 0xA3;

TR0=0;

}

/********************************************************************

* 名称 :Moto_Forward()

* 功能 : 电机1、2启动,都是前进,整车表现为前进。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Moto_Forward()

{

P1= 0x06;

Delay_1ms(100);

}

/********************************************************************

* 名称 :Moto_Backward()

* 功能 : 电机1、2启动,都是后退,整车表现为后退。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Moto_Backward()

{

P1= 0x05;

Delay_1ms(100);

}

/********************************************************************

* 名称 :Moto_TurnLeft()

* 功能 : 电机1后退,电机2前进,整车表现为左转。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Moto_TurnLeft()

{

P1= 0x09;

Delay_1ms(100);

}

/********************************************************************

* 名称 :Moto_TurnRight()

* 功能 : 电机1前进,电机2后退,整车表现为右转。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Moto_TurnRight()

{

P1= 0x0A;

Delay_1ms(100);

}

/********************************************************************

* 名称 :Moto_Stop()

* 功能 : 电机1停止,电机2停止,整车表现为停止。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void Moto_Stop()

{

P1= 0x00;

Delay_1ms(100);

}

/********************************************************************

* 名称 :SteerEngineTurningUp()

* 功能 : 舵机向上转。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void SteerEngineTurningUp()

{

ET0=1;

TR0=1;

Delay_1ms(40);

hight_votage-=1;

if(hight_votage<5)

hight_votage=5;

}

/********************************************************************

* 名称 :SteerEngineTurningDown()

* 功能 : 舵机向下转。

* 输入 : 无

* 输出 : 无

***********************************************************************/

void SteerEngineTurningDown()

{

ET0=1;

TR0=1;

Delay_1ms(40);

hight_votage+=1;

if(hight_votage>20)

hight_votage=20;

}

/********************************

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top