Discussion in "Project Help" started by    bhantadox    Nov 30, 2023.
Thu Nov 30 2023, 03:55 pm
#1
Im using 8051, LM016L and HC-SR04 for range finder but after range 9 it starts to display random stuff.


Thu Nov 30 2023, 03:56 pm
#2
unsigned int get_range(void)
{
long int timer_val;
send_pulse();
while(!INT0); //Waiting until echo pulse is detected
while(INT0); //Waiting until echo pulse changes its state
timer_val=(TH0<<8)+TL0;
lcd_cmd(0x81);
lcd_data_string("output:");
lcd_cmd(0x8a);
if(timer_val<38000)
{
cms=timer_val/59;
if (cms!=0)
{
lcd_data(cms+48);

if(cms<15)
{
P1=0xFF;
}
else

{P1=0X00;}


}
}
else
{
lcd_cmd(0x06);
lcd_data_string("Object out of range");
}
return cms;
}


[ Edited Thu Nov 30 2023, 03:57 pm ]
Thu Nov 30 2023, 03:58 pm
#3
Image
Fri Dec 08 2023, 08:50 am
#4
We need to see the rest of your code.
Comments to explain what is supposed to happen would be useful.

Get Social

Information

Powered by e107 Forum System

Downloads

Comments

Andyhet
Sat May 18 2024, 07:28 am
BrettTibre
Fri May 17 2024, 06:14 pm
Gordonfax
Fri May 17 2024, 10:28 am
Davidspils
Fri May 17 2024, 10:19 am
Patricknoind
Fri May 17 2024, 09:53 am
JeremyCycle
Fri May 17 2024, 09:46 am
FrabSeby
Thu May 16 2024, 07:31 pm
PeterGem
Thu May 16 2024, 06:27 am