Bidirectional Visitor Counter Using Arduino

  Рет қаралды 44,293

Creative Stuff

Creative Stuff

Күн бұрын

Пікірлер: 49
@ashwansaini
@ashwansaini Жыл бұрын
If you only increment or decrememt when both the sensors are triggered one after the other then one door can be used for both in out.
@gowthamimunakala7502
@gowthamimunakala7502 2 жыл бұрын
Nice project! It helped me a lot. great idea. It is nice to use IR Sensor and you gave code,circuit etc.
@ryanmurphy3611
@ryanmurphy3611 2 жыл бұрын
Where has the code for this circuit been posted.
@sameerk12982
@sameerk12982 4 жыл бұрын
Good project.....I have a suggestion.....don't use two separate doors....instead use sensors together at one door...and write a code that if sensor one is detected first and then sensor two someone has entered the room and if sensor two is detected first and then sensor one someone exited from the room....so only one door will be used.
@HAMID323467431
@HAMID323467431 4 жыл бұрын
@Hare Krishna i fixed this problem go and see my code i posted
@NothingNew_01
@NothingNew_01 3 жыл бұрын
For this project...we need two different paths for outgoing nd incoming. This isn't what I'm looking for
@andrieyrazalanmasongsong2796
@andrieyrazalanmasongsong2796 11 ай бұрын
Is it possible to set the turn detection limit? Imagine that I set a restriction of roughly ten turns only.
@prajjwalshukla2825
@prajjwalshukla2825 2 жыл бұрын
your voice is like hritik roshan from koi mil gaya
@jieligracelisondra7164
@jieligracelisondra7164 3 жыл бұрын
Sir why does our lcd does not show letters?
@MrDx-wh4ex
@MrDx-wh4ex 2 жыл бұрын
Can I use laser sensor module in place of IR sensor? Because my project is using laser.
@gamalmothersil9683
@gamalmothersil9683 3 жыл бұрын
Can this circuit works if people uses the wrong door. For example, what happen if people enter from the exit door and exit from the enter door.
@nuraa7681
@nuraa7681 3 жыл бұрын
if ir sensor is changed to pir sensor can it still work?
@manojkumardas2777
@manojkumardas2777 4 жыл бұрын
Your Code not working! 404 error! ⚠️
@HAMID323467431
@HAMID323467431 4 жыл бұрын
code works fine, look at my updated one, check to see if your software is working, and see if ur wiring is correct
@behcetderin1725
@behcetderin1725 3 жыл бұрын
Hello ,if between sensors and arduino will be 5 mt it will work again?
@mayurpatilish
@mayurpatilish 3 жыл бұрын
Ir sensor module ke jaga pir sensor module lagaya to chalega kya our veriable resitor work kya karata hai
@mayurpatilish
@mayurpatilish 3 жыл бұрын
Sir jab one person entry karata hai tab usi time exit se second person aaya to light on or off hoga kya our person count hoga
@archananaikpb9484
@archananaikpb9484 Жыл бұрын
My lcd is not displaying what to do
@BlackBoxtec
@BlackBoxtec 4 жыл бұрын
Good. Can you show how to create laser line break sensor with Arduino counting unith.
@Sunny21216
@Sunny21216 Жыл бұрын
Sir i want to purchase Arduino pls give me purchase link it's my major project pls rply sir ?
@TravelGeekLinux
@TravelGeekLinux 4 жыл бұрын
Hii i need a help I am making bidirectional visitor counter using arduino uno With automatic room light controller I am getting error like When there is no visitor my led was glowing instead of turn on led i need to turn off when there is no visitor and when there is any visitor my led wants to glow Plzz help me This is my code: #include LiquidCrystal lcd(2,3,7,6,5,4); #define in 8 #define out 9 #define led 10 int count=0; void setup() { lcd.begin(16,2); lcd.print("Visitor Counter"); delay(2000); pinMode(in, INPUT); pinMode(out, INPUT); pinMode(led, OUTPUT); lcd.clear(); lcd.print("Person In Room:"); lcd.setCursor(0,1); lcd.print(count); } void loop() { int in_value = digitalRead(in); int out_value = digitalRead(out); if(in_value == LOW) { count++; lcd.clear(); lcd.print("Person In Room:"); lcd.setCursor(0,1); lcd.print(count); delay(1000); } if(out_value == LOW) { count--; lcd.clear(); lcd.print("Person In Room:"); lcd.setCursor(0,1); lcd.print(count); delay(1000); } if(count==0) { lcd.clear(); digitalWrite(led, LOW); lcd.clear(); lcd.print("Nobody In Room"); lcd.setCursor(0,1); lcd.print("Light is Off"); delay(200); } else { digitalWrite(led, HIGH); } }
@danial2559
@danial2559 4 жыл бұрын
Is there a schematic that includes the breadboard? That would be tremendous help. I'm confused in what pin I should insert as it may don't align with the code
@CreativeStuff
@CreativeStuff 4 жыл бұрын
Schematic is there in the description
@danial2559
@danial2559 4 жыл бұрын
@@CreativeStuff alongside the bread. The schematic didn't have the bread board
@Whoareyou0708
@Whoareyou0708 2 жыл бұрын
resistor value?
@callumhewitt9756
@callumhewitt9756 4 жыл бұрын
Can anyone help i'm in need of some assistance on a project that is similar to this one, a novice on Arduino and i have a deadline due in a few days to complete this project. Any help is greatly appreciated.
@utronit
@utronit 4 жыл бұрын
How can i get the ckt diagram and code
@danial2559
@danial2559 4 жыл бұрын
why does the counting increase endlessly? The sensor literally don't have any contact at any object
@HAMID323467431
@HAMID323467431 4 жыл бұрын
IR emitter pings every few seconds. IR reciever says, "WOAH, count up now." i think if you put a delay in the code or something it can be made better, or some other method
@HAMID323467431
@HAMID323467431 4 жыл бұрын
go see the code i posted
@animetn653
@animetn653 2 ай бұрын
Code plaise
@skmusictricks4972
@skmusictricks4972 4 жыл бұрын
Please give me the source code
@CreativeStuff
@CreativeStuff 4 жыл бұрын
Search description
@pedrobasso597
@pedrobasso597 4 жыл бұрын
@@CreativeStuff I cant access the code too
@manojkumardas2777
@manojkumardas2777 4 жыл бұрын
@@CreativeStuff Your Code not found! Error 404 ⚠️
@HAMID323467431
@HAMID323467431 4 жыл бұрын
go see the code i posted
@tonyvarghese75
@tonyvarghese75 4 жыл бұрын
Nice
@MrDx-wh4ex
@MrDx-wh4ex 2 жыл бұрын
Plz tell me as soon as possible
@soheel2009ify
@soheel2009ify 3 жыл бұрын
This is not a bidirectional
@anujsaini9353
@anujsaini9353 4 жыл бұрын
This is not 100% perfect, if some one stand in front of IR sensor, Count increase more than 1.
@CreativeStuff
@CreativeStuff 4 жыл бұрын
Yep...I have told that in the video
@HAMID323467431
@HAMID323467431 4 жыл бұрын
@Hare Krishnajust remove the second sensor
@HAMID323467431
@HAMID323467431 4 жыл бұрын
go see the code i posted
@ranahassan4453
@ranahassan4453 2 жыл бұрын
@@HAMID323467431 can you please repost the code
@akashasbro3913
@akashasbro3913 4 жыл бұрын
He is cheeting
@CreativeStuff
@CreativeStuff 4 жыл бұрын
What do you mean brother?
@Shandip67558
@Shandip67558 4 жыл бұрын
Nice
Haunted House 😰😨 LeoNata family #shorts
00:37
LeoNata Family
Рет қаралды 15 МЛН
Effective Ways To Detect People With Common Sensors
7:43
Core Electronics
Рет қаралды 88 М.
Arduino Tutorial 32# How to make Bi-Directional Visitor Counter
2:49
Automatic lighting control / people counter
6:48
Hardware Boy
Рет қаралды 69 М.
I Made The Ultimate Cheating Device
9:39
ChromaLock
Рет қаралды 1,5 МЛН
Bidirectional Counter using IR sensors and Arduino.
6:21
MYTECTUTOR
Рет қаралды 44 М.
Automatic Visitor Counter | Arduino Projects
8:01
Tech Trends Shameer
Рет қаралды 12 М.
Digital Object Counter using Arduino
9:31
Enjoy Mechatronics
Рет қаралды 22 М.
Top 20 Arduino Projects | Arduino project compilation
24:55
Mr Innovative
Рет қаралды 967 М.