excellent video bro, I am trying to integrate an ANPR technology with your toll project. It will scan the number plate and generate QR code for payment, then it will open the toll. Can you guide me or maybe just tell me how to do that in a working model
The gate continues to close and open in the form of a loop until I place my hand. As for the sensor, how do I make it open when I place my hand and close when I take it away? i checked my connections aswell
The gate continues to close and open in the form of a loop until I place my hand. As for the sensor, how do I make it open when I place my hand and close when I take it away?
//define Pins #include Servo servo; int trigPin = 9; int echoPin = 8; // defines variables long duration; int distance; void setup() { servo.attach(7); servo.write(0); delay(2000);
// Sets the trigPin as an Output pinMode(trigPin, OUTPUT); // Sets the echoPin as an Input pinMode(echoPin, INPUT); // Starts the serial communication Serial.begin(9600); } void loop() { // Clears the trigPin digitalWrite(trigPin, LOW); delayMicroseconds(2); // Sets the trigPin on HIGH state for 10 micro seconds digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); // Reads the echoPin, returns the sound wave travel time in microseconds duration = pulseIn(echoPin, HIGH); // Calculating the distance distance= duration*0.034/2; // Prints the distance on the Serial Monitor Serial.print("Distance: "); Serial.println(distance); if ( distance
thank you bhai aap ki waja se mujhe 5th sem main profit hua tha i love you bhai
Welcome! Feeling happy to know that, Ap kay lay aor bei best project banoga, Good luck👍
Ghar se utha lunga 😎
Ma sha ALLAH.... keep it up Misbah proud of you
I’m so glad to hear that. Thank you so much.
THANK U SO MUCH I JUST FINISHED MY HOMEWORK AND I GOT PERFECT
Good luck👍
Brother what u use to replace laptop in Arduino please reply fast how much w battery and what is connected with battery
You can used 3.7v (two cell)
Brother then how I can connect it with uno
With power cable
niceeeeeee
Thanks
Can i use IR sensor instead of ultrasonic??
@@ankush_1011 yes u can use
@@Experthand any code changes ??
excellent video bro, I am trying to integrate an ANPR technology with your toll project. It will scan the number plate and generate QR code for payment, then it will open the toll. Can you guide me or maybe just tell me how to do that in a working model
I m making my kids multilevel parking.
Hei can u help me with the things required nd i dnt know the coding process also.. is thr any solution
Coding process is for auto purpose, without code u can use manual method by using rope, some weight for balancing , rod etc
The gate continues to close and open in the form of a loop until I place my hand. As for the sensor, how do I make it open when I place my hand and close when I take it away? i checked my connections aswell
Program and code is fully functional according to your query otherwise again upload the code and make connection with arduino board
which port we need to select bro com8 or any other
Check your board com number then select
do we have to put both battery and then connect with the laptop ?
do we have to both of them together???
Dont connect outer supply while connecting with laptop
@@Experthand should we not connect with the battery then?
@@AleezaSajid-l4j connect power supply after upload the code
@@Experthand so first we have to put the code and then we have to connect the battery right?
@@AleezaSajid-l4j yes
What type of jumper wires should I use? Male to female,male to male or female to female?
Both used
Connect arduino with sensor (Male to female) wire
Servo motor with ( Male to Male)
@@Experthand Thank you
For the servo motor, should I use 180 degrees or 360 degrees?
Yes, u can use both motor
The gate continues to close and open in the form of a loop until I place my hand. As for the sensor, how do I make it open when I place my hand and close when I take it away?
Make sure your wire connection and sensor module connection is right according to video
If i start this project and due to some issues i am stuck will you help me ?
Yes I will help u
Can i use arduino nano instead of uno or not
Yes u can use
Yr ye chizein khan se milti hain? Arduino wagera?
May ny description may buying link provide krdya hay.
Working I got 89 out of 100 in Tech
Outstanding👏🥰
It is working only when connected to laptop or pc not working with battery
What type of battery u use?
@@Experthand 9v
9v suitable for working@@gameraarav1736
@@Experthand yes
How do I make the gate close after entering a certain number of people?
Gate will close automatically, after entering people.
do you have a diagram?
Plz watch full video step by step for connection
What kind of battery we can use?
Use minimum two cell of 3.7v
Level.
Active subscriber👍 .
Feel Happy to see that...
Can u send me circuit diagram for this pls pls sir
I uploaded the code and it appeared an error, it says it can’t be opened
Code is fully working ✅
Sensor Nii kam kr rha as my baki asy he kia ab Kya hua sakta???
Make sure your battery power, code and wire connection is right
@@Experthand double check kia lakin phr be sensor Nii work kr rhy...
Construction aaur working batana sir plz exhibition me banana chahta hu plz
Which app to be used for coding
Arduino
Thanks
Sensor is not working errroruploading to board
Check battery power
srvo motor ko 5v se connect krna hai...
Yes
No code available in drive.... please give the code
//define Pins
#include
Servo servo;
int trigPin = 9;
int echoPin = 8;
// defines variables
long duration;
int distance;
void setup()
{
servo.attach(7);
servo.write(0);
delay(2000);
// Sets the trigPin as an Output
pinMode(trigPin, OUTPUT);
// Sets the echoPin as an Input
pinMode(echoPin, INPUT);
// Starts the serial communication
Serial.begin(9600);
}
void loop()
{
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
// Prints the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.println(distance);
if ( distance
Is cash also will automatically collect from the vehicle?
If vehicle come infront of sensor barrier will up ,otherwise barrier will be down.
Then what about cash charges
@@saiharithaveluru2281 barrier will up after paying charges
K thanks for your reply
Where is the code
Code link in description
Servo motor is working automatically
It work according to program that install in Arduino board
@@Experthand thankyoy
The code can not be opened, what is the solution?
Code is fully working, please first dawonload then upload
@@Experthand I can't open the file, can you send it here, please?
@@WAJDMOH
drive.google.com/file/d/1JLsLBO-LCJGsDnjLJ3G9Ac5-XDRQXEYZ/view?usp=sharing
@@Experthand The link you sent looks blank, can you copy it here please because I worked on the project, the rest of the code
@@WAJDMOH
int trigPin = 9;
int echoPin = 10;
int led = 7;
void setup() {
Serial.begin(9600);
pinMode(led, OUTPUT);
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
// put your setup code here, to run once:
}
void loop() {
long duration, distance;
digitalWrite(trigPin,HIGH);
delayMicroseconds(1000);
digitalWrite(trigPin, LOW);
duration=pulseIn(echoPin, HIGH);
distance =(duration/2)/29.1;
Serial.print(distance);
Serial.println("CM");
delay(10);
if((distance10)
{
digitalWrite(led, LOW);
}
}
Vohh coding kisme krne kii... Aur firr insert kisme krneki
Coding in Arduino app then transfer to Arduino board
How to insert
how many total cost we have to need
If you have Arduino board then around 1000 rupees cost
there is an error in the code - it says that the serial port is not selected
It not error in code, it mean first select you port in menu br
@@Experthand but how do we select our port?
Not working with 9 v battery as shown. Works with 7.4 v.
9v rechargeable battery is good for working otherwise two cell of 3.7v is also good
NOT working🤥
What problem you face, otherwise program code is ok
Is batteery neccery
Yes
Servo code is not show or download
First download
This code is not available 😔
Code link in video description
Code is not able to preview
Download it
Bro can u please send me documentation pdf on it if u have it
Sorry it's not available
Bro wheres the code
Plz check video description
aur abdulrehman ke liye bhi project bata na badshah
BULL BANAO BRO
Its not working pls repaly fast
Plz check your wire and battery connection
The code file is not working
It is working💯 , plz first download then use
the servo is not moving
Make sure your battery power is enough for moving servo
@@Experthand so do we have to only connect with the laptop and it will work?
Code open hi nahi ho raha
Bro it is working.
I have olready checked
@@Experthand what app did you use to open the code?
@@nandinimodgil863 U can open directly in your pc or phone, No app is required for opening but for progamming u need Arduino App
coder x nmpk nk.. mcm mana bg jelas ckit
Dawonload it
cmne nk download it. can teach me
@@mieralysa3715 i gave the code link in video description
not working
Make sure your board & sensor work well (bcz everything is correct of project)
Code link download nahi ho raha hai bhai
Bro its working,,,,
Sir it is showing some error
Check your wire connection
I have already done it
Sir in my Arduino there is no port of 3.7v instead it is of 3.3v
@@AashimaGoel-zi3vk connect with 5v pin
Sir 5v is connected with VCC (
Bro can without laptop it work
Yes, programming is must
Mine didn't work :/
Check wire connection with arduino &battery
where is code
Code link in video description
the servo isn't moving
Check servo wire connection
Still not working
Me to could you tell me what did you do
It's moving bro
Yeah servo not moving