Automatic Visitor Counter | Arduino Projects

  Рет қаралды 12,818

Tech Trends Shameer

Tech Trends Shameer

Күн бұрын

Пікірлер: 60
@hemanthjami1287
@hemanthjami1287 24 күн бұрын
What will happen if we do same direction of entry far after the black tape it will count outside or we have to do the opposite direction for the outside count
@ENGR_KAYBEE
@ENGR_KAYBEE Жыл бұрын
Hi sir, how to use two ultrasonic sensors(ultrasonic one for person IN and ultrasonic two for person OUT .
@Hk-or1cn
@Hk-or1cn 11 ай бұрын
i have a doubt bro ...how to display both image and text in tft dispaly i want code and video for this project...pls bro help me
@jvnx1137
@jvnx1137 11 ай бұрын
Sir can we use this with IR sensor ?
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Yes. You can.
@nirajdeshmukh8982
@nirajdeshmukh8982 3 жыл бұрын
Where is circuit diagram? The description link contain only your video thumbnail image
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Sorry. Please check the link now. By mistake I have uploaded the thumbnail image instead of circuit. If you have any clarifications, please let me know.
@nagaarjun8925
@nagaarjun8925 4 ай бұрын
How to install Library for wire
@TechTrendsShameer
@TechTrendsShameer 4 ай бұрын
The Wire library is bundled with Arduino AVR Boards. If you installed the Arduino board, then you no need to install this library.
@p1dtcodm41
@p1dtcodm41 3 жыл бұрын
Thankssss.....This project is 100% workinggggg😁
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Thank you so much
@aqilidris4034
@aqilidris4034 3 жыл бұрын
Can you show the circuit using tinker cad and paste the code here because i cant access the link. Hope to get the response asap
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Circuit Diagram: bit.ly/3vN5u4e Source Code: bit.ly/30j4U0n
@kingofluck7728
@kingofluck7728 11 ай бұрын
Is this project on tinkercard to simulate online?
@TechNode23
@TechNode23 Жыл бұрын
IN counter continously counting..please help
@nikitaambiger9575
@nikitaambiger9575 3 жыл бұрын
Could u please share the code of this bidirectional visitors counter
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Please check description for source code.
@sarans7163
@sarans7163 11 ай бұрын
Sir my LCD display ON aagamatinguthu enna pananum
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Check power supply and circuit connection
@sarans7163
@sarans7163 11 ай бұрын
@@TechTrendsShameer sir all connections is correct ahh than iruku power supply corect ahh than iruku but display ON aagala 😥
@TechTrendsShameer
@TechTrendsShameer 10 ай бұрын
Adjust the potentiometer in I2C and try.
@starmagicthuglife4649
@starmagicthuglife4649 Жыл бұрын
Bro vcc supply voltage .
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
VCC = 5 v
@aidilazman1364
@aidilazman1364 3 жыл бұрын
Hi sir how to make limit for 10 people inside
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Please try this code //Tech Trends Shameer //Visitor Counter #include #include #define trigPin 13 //Sensor Echo pin connected to Arduino pin 13 #define echoPin 12 //Sensor Trip pin connected to Arduino pin 12 #define buzzer 7 //Create Liquid Crystal Object called LCD LiquidCrystal lcd(11, 10, 5, 4, 3, 2); int counter = 0; int currentState1 = 0; int previousState1 = 0; int currentState2 = 0; int previousState2 = 0; int inside = 0; int outside = 0; void setup() { // Initialize the LCD lcd.begin(16,2); //Tell Arduino to start your 16 column 2 row LCD //Serial.begin (9600); pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); pinMode(buzzer, OUTPUT); } void loop() { lcd.setCursor(0, 0); //Set cursor to first column of first row lcd.print("IN: "); lcd.setCursor(8, 0); lcd.print("OUT: "); lcd.setCursor(0, 1); //Set cursor to first column of second row lcd.print("Total Inside: "); long duration, distance; digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance = (duration/2) / 29.1; if (distance 7 && distance 10 || counter < 0) { lcd.setCursor(14, 1); lcd.print(counter); digitalWrite(buzzer, HIGH); delay(100); lcd.clear(); } else { digitalWrite(buzzer, LOW); } }
@OO-tj7xv
@OO-tj7xv 2 жыл бұрын
Hello sir Shameer can i ask or could you please share the processing code for this project
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
The source is provided in the video description. There is no processing code for this project.
@victoriousvedanti2614
@victoriousvedanti2614 9 ай бұрын
He is saying program sir.
@tamilarasanv8881
@tamilarasanv8881 Жыл бұрын
Sir program uploaded successful but not showing LCD display
@tamilarasanv8881
@tamilarasanv8881 Жыл бұрын
Blank screen how to solve this problem?
@reshmiharisudha
@reshmiharisudha Жыл бұрын
Same problem here 😭
@AswinSurya-yr8no
@AswinSurya-yr8no 9 ай бұрын
Workaha current thevaiya anan
@TechTrendsShameer
@TechTrendsShameer 9 ай бұрын
Yes. Needed.
@AswinSurya-yr8no
@AswinSurya-yr8no 9 ай бұрын
@@TechTrendsShameer how to connect anna
@TechTrendsShameer
@TechTrendsShameer 9 ай бұрын
Connect the other end of the cable to the laptop or power banker.
@AswinSurya-yr8no
@AswinSurya-yr8no 9 ай бұрын
@@TechTrendsShameer I want contact you anan
@TechTrendsShameer
@TechTrendsShameer 9 ай бұрын
instagram.com/tech_trends_shameer/
@thalapathi623
@thalapathi623 Жыл бұрын
Bro circuit diagram please
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Please watch the full video.
@balakumar6670
@balakumar6670 Жыл бұрын
salam rocky bhai........
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Hi
@messielaa1734
@messielaa1734 2 жыл бұрын
bro code open aka mattuthu pls send pannuga bro 1week tha time irukku
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Bro. Instagram la message panunga. Code anupren
@jvnx1137
@jvnx1137 11 ай бұрын
Sir where did you buy all the components?
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Please check video description for components link.
@sunnyboyTuhafeni
@sunnyboyTuhafeni 17 күн бұрын
Hi ser in struggle with coding pleas prove the code
@TechTrendsShameer
@TechTrendsShameer 16 күн бұрын
Check video description.
@amansinjali5584
@amansinjali5584 3 жыл бұрын
Hi thank you for this video but i want to ask whether if this project could be done using a LED matrix board instead of a LCD display? i would really appreciate a quick response!!
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Yes you can. You need to modify the program
@Raghuyash.
@Raghuyash. Жыл бұрын
Bro where is power supply
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Connect to laptop or power banker.
@veenodran1393
@veenodran1393 11 ай бұрын
Bro programing
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Check video description.
@electronicsideas1361
@electronicsideas1361 3 жыл бұрын
boss nedd voice in ENGLISH
@TechTrendsShameer
@TechTrendsShameer 3 жыл бұрын
Sure Sir. This is an old video. Right now for all the videos I am doing in English.
@tamilarasanv8881
@tamilarasanv8881 Жыл бұрын
Sir unga contact number venum
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Connect me in instagram
Wireless Notice Board Using Arduino | Wireless Notice Board Using Bluetooth
6:37
風船をキャッチしろ!🎈 Balloon catch Challenges
00:57
はじめしゃちょー(hajime)
Рет қаралды 84 МЛН
Happy birthday to you by Secret Vlog
00:12
Secret Vlog
Рет қаралды 6 МЛН
Voice Controlled Light | Home Automation
5:58
Tech Trends Shameer
Рет қаралды 13 М.
Posy’s designs ➔ REAL DISPLAYS
8:50
upir
Рет қаралды 430 М.
Bidirectional Counter using IR sensors and Arduino.
6:21
MYTECTUTOR
Рет қаралды 44 М.
I Made The Ultimate Cheating Device
9:39
ChromaLock
Рет қаралды 1,5 МЛН
Digital Object Counter Using Arduino || DIY || TexoBot
11:46
Effective Ways To Detect People With Common Sensors
7:43
Core Electronics
Рет қаралды 88 М.
with the power of denden it can turn into an iPhone #shorts
0:10
Мучительная смерть  HUAWEI Mate XT
0:58
Кик Обзор
Рет қаралды 3,9 МЛН
Apple Intelligence vs Galaxy Ai✨ #Shorts
0:19
lifegoodd
Рет қаралды 3,9 МЛН
The M4 Mac Mini is Incredible!
11:45
Marques Brownlee
Рет қаралды 5 МЛН
Me Charging My Phone Before Going Out
0:18
Godfrey Twins
Рет қаралды 11 МЛН