How to program 8051
hai there.......any wan cn help ah..i need help as fast as soon...PLZZZZZz
i did one robot following the tut from the web bellow "http://www.botskool.com/tutorials/electronics/8051/line-follower"
so i hv done all..all ok ready...but i wan to know.which source i need to program it...bcos i try to program the code below in my 8051..but its still not working..i hv check all conection and ic ready all ok no problem ..i think problem in programing...i jus program the code below.plzzz help me...
#include <AT89X52.h>
/*
Sensors input port - P1
P1_0 --------> Left sensor
P1_4 --------> Right sensor
Motors output port - P0
P0_0 --------> Enable pin of the left half of the H-bridge
P0_1 --------> will drive the left motor in forward direction
P0_2 --------> will drive the left motor in reverse direction
P0_3 --------> will drive the right motor in forward direction
P0_4 --------> Enable pin of the right half of the H-bridge
P0_5 --------> will drive the right motor in reverse direction
*/
/*Delay function runs an idle loop to create a time delay. If the crystal used is of 11.0592 MHz then the argument passed in delay is in 'milliseconds'.*/
void Delay(unsigned int itime)
{
unsigned int i,j;
for(i=0;i<itime;i++)
for(j=0;j<1275;j++); //Idle loop
}
void Forward()
{
P0_1=1;
P0_2=0;
P0_3=1;
P0_5=0;
}
/*Generally for turning we use a pulsated wave so the bOt doesn’t get out of control i.e. we run the motor for sometime then again stop it and this is done very quickly to create an effective pulse. See the function below.*/
void TurnLeft()
{
P0_1=0; /*Left motor is not running in any direction.*/
P0_2=0;
P0_3=1; /*Right motor is running in forward direction. bOt will eventually turn left*/
P0_5=0;
Delay(50); /* Wait for 50 ms*/
P0_1=0; /*Motors are not running*/
P0_2=0;
P0_3=0;
P0_5=0;
Delay(50); /*Delay of another 50 ms*/
}
/*So in the above program we have effectively created a pulse of 100ms which is on for 50ms and off for another 50ms. You can change this value to suit your needs*/
/*Similarly we can write a function to turn right*/
void TurnRight()
{
P0_1=1; /*Left motor running in forward direction.*/
P0_2=0;
P0_3=0; /*Right motor is not running.*/
P0_5=0;
Delay(50); /*50ms time delay*/
P0_1=0; /*Motors not running in any direction*/
P0_2=0;
P0_3=0;
P0_5=0;
Delay(50); /*50ms time delay*/
}
void main()
{
/* The pins which are receiving inputs from the sensors should be initially set to logic 1.*/
P1_0=1; /*Left sensor input*/
P1_4=1; /*Right sensor input*/
P0_0=1; /*Enable pin of the left half of the H-bridge*/
P0_4=1; /*Enable pin of the right half of the H-bridge*/
//main loop of the program
while(1)
{
if((P1_0==0)&&(P1_4==1))
TurnRight();
else if((P1_0==1)&&(P1_4==0))
TurnLeft();
else
Forward();
}
}


please follow this discussion
http://www.botskool.com/forum/robotics/general-robotics/line-follower-program-doubt
Hi sivan000,
If your bOt is not working as expected and you think there is some problem with programming part then try out a much simpler program. Just try to run your bOt forward through programming your microcontroller accordingly and see what happens.