Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

cellphone operated land rover

Status
Not open for further replies.

swati vsh

Newbie level 5
Joined
Mar 16, 2008
Messages
8
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,329
hi i worked on my major project.
i hve used avr atmega 16. i choose dis in efy magzine i need a soruce code in avr
dis code is so different dt is include # as well as . dts y i cnt understand it
in avr we use . and $ rightand in 8051 we use # cn smebody help in my project i am waiting..........
i hve a limited time bt 4 correct knoeledge i m waiting plz
 

cell phone operated robot

hi..
actually iam trying to work on this project as it sounds really intersting.Bt iam a beginer so i want 2 know the difficulties u facd and other help u can provide 2 me.
also somethin abt coding as iam nt able 2 kno how this coding woud help and in wat respect. plese do reply with an app amount of it by
thanks
 

project for cellphone operated landrover

i build the project of cellphone operated land rover.
mins one type of robot.
& it is run sucsess fully.
it's my final sem project.
i am stay in india.
i am student of aatamiya college. which is at rajkot in gujarat.
contect me on rahul_sss3@yahoo.com
§ § §
 

HI SWATI I ALSO MADE THIS PROJECT I SENT U PROGRAMING OF THIS PROJECT BECAUSE MY PROJECT IS NOW TOTALY IN WORKING CONDITION..................
I HOPE IT WILL BE HALP FULL IN YOUR PROJECT.................



SOFTWARE


#include<mega16.h>
Void main(void)
{
Unsigned int k,h ;
DDRA= 0X00;
DDRD=0XFF;
While (1)
{
k=~PINA;
h=k & 0X0F;
switch (h)
{
case 0X02 ; //if i/p is 0x02
{
PORTD=0x89; // forward
break;
}
case 0x08; // if i/p is 0x08
{
PORTD=0x86; // backward
break;
}
case 0x04;
{
PORTD=0x85; // left turn
break;
}
case 0x06;
{
PORTD=0x8A; // right turn

break;
}
case 0x05;
{
PORTD=0x00; // stop
break;
}
}
}
}
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top