Beyond the Basics: Automatic Gatekeeper With IR Sensor And ChatGPT Generated Arduino Code

  Рет қаралды 2,402,776

Coders Cafe

Coders Cafe

Жыл бұрын

𝐒𝐮𝐩𝐩𝐨𝐫𝐭 𝐔𝐬 𝐎𝐧
Patreon : / coderscafetech
BuyMeACoffee : www.buymeacoffee.com/codersca...
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
𝐌𝐞𝐞𝐭 𝐓𝐡𝐞 𝐂𝐫𝐞𝐚𝐭𝐨𝐫𝐬
Nekhil Ravi (Hardware Development, Narration)
Shebin Jose Jacob (Software Development)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
𝐖𝐞'𝐫𝐞 𝐅𝐚𝐢𝐫𝐥𝐲 𝐒𝐨𝐜𝐢𝐚𝐥 𝐏𝐞𝐨𝐩𝐥𝐞
Facebook : / coderscafetech
Instagram : / coderscafetech
Twitter : / coderscafetech
KZfaq : / @coderscafetech
Official Email : mail.coderscafe@gmail.com
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
𝐆𝐞𝐚𝐫𝐬 𝐔𝐬𝐞𝐝
Shot On: Canon M50
Microphone: Boya M1
Tripod : DigiTek DTR 520 BH
Software: Adobe Premiere | Adobe Photoshop | Adobe Audition | Adobe After Effects
- - - - -

Пікірлер: 125
@user-ni1pf9or8j
@user-ni1pf9or8j Ай бұрын
Используем 2 оптопары (на въезд и выезд за пределы шлагбаума), микросхему таймера ne555 для установки времени вращения ОБЫЧНОГО двигателя (можно заменить двумя дополнительными оптопарами для определения положения стрелы шлагбаума), сдвоенное реле (можно заменить двумя обычными) для переключения между режимами (открыть/закрыть), операционный усилитель для управления реле и расыпуха из линейного стабилизатора напряжения, нескольких конденсаторов и парочки резисторов. Таким образом схема управления становится в 5-6 раз дешевле и менее запарная без программирования. При этом при дополнительных расходах на потенциометры 10-100кОм - можно регулировать время перед открытием шлагбаума, время поднятия стрелы и время после отъезда машины без лишних телодвижений
@pythoncreators7090
@pythoncreators7090 4 ай бұрын
Don't u think that this isn't beyond basics😂 like this can be one of the thing biggner can make on his/her first week
@shouryaupadhyay7329
@shouryaupadhyay7329 4 ай бұрын
Litterally that's right🤣
@shorthunt2460
@shorthunt2460 4 ай бұрын
Yha I made it when I started playing with arduino😂
@Manny73211
@Manny73211 Ай бұрын
I'm assuming English isn't your first language...
@DvN-_-Mk99
@DvN-_-Mk99 10 сағат бұрын
They just chose to yap without learning English first, that's it​@@Manny73211
@Shubham1906
@Shubham1906 8 ай бұрын
```arduino const int irSensorPin = 2; // Connect the IR sensor to digital pin 2 const int gatePin = 3; // Connect the gate motor to digital pin 3 void setup() { pinMode(irSensorPin, INPUT); pinMode(gatePin, OUTPUT); } void loop() { if (digitalRead(irSensorPin) == HIGH) { // IR sensor detects an obstacle (e.g., a person or a vehicle) openGate(); delay(5000); // Keep the gate open for 5 seconds (adjust as needed) closeGate(); } } void openGate() { digitalWrite(gatePin, HIGH); // Activate the gate motor to open } void closeGate() { digitalWrite(gatePin, LOW); // Deactivate the gate motor to close } ``` This is a coding Please like
@user-ju8cr4dy5t
@user-ju8cr4dy5t 8 ай бұрын
Thanks bro
@simplyelectronic4840
@simplyelectronic4840 7 ай бұрын
I know from my own work that this takes a long time to code on a computer. Thanks so much for doing this from your phone. I really appreciate it. Good day sir!
@GaneshVernekar-rp7sk
@GaneshVernekar-rp7sk 7 ай бұрын
Tq bro
@killertiger5499
@killertiger5499 6 ай бұрын
I am a python programmer and the codes look really simmilar i will give you an example. #are the numbers equal? Number_1= 6 Number_2= 6 #you can change these values If Number_1 == Number_2: Print("The numbers are equal") Else: Print("The numbers are not equal")
@JustRollin
@JustRollin 6 ай бұрын
That's a servo motor and does not have a high and low. It has a wire which uses a PWM signal to determine what position it should be.
@ananthandhangam3823
@ananthandhangam3823 6 ай бұрын
அருமை யான பதிவு ஐயா செ ஆனந்தன் விஞ்ஞானி
@sudarsanhot
@sudarsanhot 3 ай бұрын
Thats true
@Artiography3900
@Artiography3900 11 ай бұрын
Tutorial please
@MacherlaDeepak
@MacherlaDeepak Жыл бұрын
Excellent
@DIYMachineYT
@DIYMachineYT 9 ай бұрын
Cool idea with Arduino ❤
@StrayKittenLove
@StrayKittenLove 4 ай бұрын
A toll booth simulation would be so much fun to watch
@monilworld
@monilworld 8 ай бұрын
gun reload sound 💀
@kartik3881
@kartik3881 8 ай бұрын
It's awesome It will help me to make a prototype if you upload the video that how you have make this , what are the thing that you have use.
@abiralhossain
@abiralhossain 6 ай бұрын
This is a lighting sensor which name IR.It is not work in sunlight.We made a project and it failed for this sensor
@dreadwharf
@dreadwharf 19 күн бұрын
It’s cool but I’d like to see you write your own code.
@nikodemgorka834
@nikodemgorka834 6 ай бұрын
well from the security point of view its terrible add something that will accept change.
@abr2736
@abr2736 7 ай бұрын
Oscar level project 🔥
@krazyylatch9171
@krazyylatch9171 7 ай бұрын
How about the sensor detecting a number of cars and relative to the number of cars it detects, the time it gives also changes
@Mr.Electronics9898
@Mr.Electronics9898 7 ай бұрын
I like your video❤
@XueJoy
@XueJoy Ай бұрын
Nice show
@malikaamir6412
@malikaamir6412 8 ай бұрын
great 👍 keep sharing ideas like this....
@user-tk5wd6lh1g
@user-tk5wd6lh1g 2 ай бұрын
I teraz tak jakiego koloru była sukienka 😂
@Get_Rus
@Get_Rus 4 ай бұрын
Это легко сделать)
@Omar-se7qz
@Omar-se7qz Ай бұрын
Cool Diagrama de auriculares para la bocina bloetooth q no trae Conector como hacerlo?
@havefun4free615
@havefun4free615 Ай бұрын
Which kind of device did you use on that gate
@user-ef4ul7xv9k
@user-ef4ul7xv9k 7 ай бұрын
nice
@user-ow8es7fu9t
@user-ow8es7fu9t 7 ай бұрын
Bro need full video please
@vasu4177
@vasu4177 9 ай бұрын
Is servo motor is directly powered by Arduino?
@CorporalOp99
@CorporalOp99 9 ай бұрын
Details vdo ???
@Drxxx
@Drxxx Жыл бұрын
❤❤❤❤ top
@WIZZY_OFFICIAL_XD69
@WIZZY_OFFICIAL_XD69 Жыл бұрын
Wow man ❤❤❤❤❤❤❤😮😮😮😮😮😮
@dreew738
@dreew738 8 ай бұрын
in my country at bekasi they use pressure for open the gate
@anhhoangminh9474
@anhhoangminh9474 Ай бұрын
Nice.
@lukaschabotier4097
@lukaschabotier4097 6 ай бұрын
Oui bien !! voilà voilà
@abhishekjadhav2250
@abhishekjadhav2250 9 ай бұрын
what programming language should we learn to program this
@CodersCafeTech
@CodersCafeTech 9 ай бұрын
C++, arduino uses a variant of C++ and can be found here: www.arduino.cc/reference/en/
@remexyt2584
@remexyt2584 9 ай бұрын
I would start to program real microcontroller just bare metal avr to understand how microcontroller work. Than you should learn prober C and try to step up to more compilcated controllers like stm32 with the cube mx and some practice another world opens up than you can try to carefully learn c++ its a rabbit hole and very complicated. For everything a little bit more advanced than just copy and pasting libarys C++ is way to complicated
@sudarsanhot
@sudarsanhot 3 ай бұрын
Hey why use chatgpt all needed is to know how to detect the car and send Servo.write(180); If car detected = true and then delay 2000 Ms
@estudiobrasil8533
@estudiobrasil8533 Ай бұрын
Faltou um sensor na saida🤔
@cartoonsmation
@cartoonsmation 7 ай бұрын
just a kids projects . and your finger was caught at the time of cars stopping
@ZEALANELECTRONICSHKINTLLIMITED
@ZEALANELECTRONICSHKINTLLIMITED 10 күн бұрын
@Halocn.
@Halocn. Жыл бұрын
What is the model of the ir sensor?
@sagarswati32
@sagarswati32 10 ай бұрын
Ir sensor
@tusabih0218
@tusabih0218 5 ай бұрын
try making the remaining parking spaces automatic
@got-to-code
@got-to-code 5 ай бұрын
What about a black car cuz ir doesn't work on black colour
@AnvithArun
@AnvithArun 11 ай бұрын
What is the programs
@yusufsahintas46
@yusufsahintas46 4 ай бұрын
Nerden satın alabilirim
@A1facts06
@A1facts06 9 ай бұрын
Sir ye project mujhe bhi made karna h full video kaha milega
@ajaycreations2791
@ajaycreations2791 8 ай бұрын
Use of servo motor❤❤
@marvysegarra1795
@marvysegarra1795 11 ай бұрын
code? link?
@zainulkhotim7001
@zainulkhotim7001 7 ай бұрын
Kasir bilang 4000, padahal cuma 3000. Udah ga ada kembalian sribu jadi goceng😂😂😂😂
@rajeshsonkar-kt1ri
@rajeshsonkar-kt1ri 4 ай бұрын
Dese tool plaza ❤❤❤
@warrenmontebon6536
@warrenmontebon6536 10 ай бұрын
May i ask sir what sensor we use to detect our bus in order to receive a message (voice message) to passenger?
@CodersCafeTech
@CodersCafeTech 10 ай бұрын
You could use camera or gps or something similar depending on where you place the sensor.
@CodersCafeTech
@CodersCafeTech 10 ай бұрын
You could use camera or gps or something similar depending on where you place the sensor.
@tamilanimeedits7902
@tamilanimeedits7902 Жыл бұрын
Please mention the things that are used in this video da venna
@user-mn6xs7ur8o
@user-mn6xs7ur8o Жыл бұрын
May i ask where i can get the sensor you used for detecting the wooden stick? My ultrasonic sensor came in arduino kit is too big, so i was looking for a smaller one.
@CodersCafeTech
@CodersCafeTech Жыл бұрын
The sensor we used is an IR Sensor.
@user-mn6xs7ur8o
@user-mn6xs7ur8o Жыл бұрын
@@CodersCafeTech you are the best😊, and so are your videos. Keep up the good work!
@CodersCafeTech
@CodersCafeTech Жыл бұрын
@@user-mn6xs7ur8o Thank you☺
@Bogdan-2002
@Bogdan-2002 Жыл бұрын
Я би поставил на более больше расстояния
@mahmoudtaha8265
@mahmoudtaha8265 3 ай бұрын
How I can get
@kollywoodtrends8578
@kollywoodtrends8578 5 ай бұрын
How to fix please help me bro this is son project
@user-xz9zb8dx8z
@user-xz9zb8dx8z Жыл бұрын
How to do it please send video upload please please please please
@Samjain123
@Samjain123 6 ай бұрын
What is the name of sensor
@changed55555
@changed55555 7 ай бұрын
Aa time gap chalu manam escape avvataniki
@shashankab1394
@shashankab1394 10 ай бұрын
Brother can I get the codes for this ?
@yugalsharma13
@yugalsharma13 3 ай бұрын
Why have the gate at all then? 😂
@MythicScienceOfficial
@MythicScienceOfficial 11 ай бұрын
Can it be ultrasonic sensor
@CodersCafeTech
@CodersCafeTech 11 ай бұрын
Yes, it can be.
@MythicScienceOfficial
@MythicScienceOfficial 11 ай бұрын
@@CodersCafeTech oh thanks
@MythicScienceOfficial
@MythicScienceOfficial 11 ай бұрын
@@CodersCafeTech me from india
@larryhull2752
@larryhull2752 11 ай бұрын
Yes I just made one to keep my brother out of my room. It makes an annoying noise if he goes by it lol
@mohamedheshame470
@mohamedheshame470 Жыл бұрын
Arduino programming code
@gopiragastya1689
@gopiragastya1689 Ай бұрын
Please share the vode
@carrenoh2008
@carrenoh2008 Жыл бұрын
👍🤗🇻🇪
@Hokphaiduy
@Hokphaiduy 6 ай бұрын
oh
@pendrive3732
@pendrive3732 8 ай бұрын
Isso e um bloqueio duplo
@manishabhandari4241
@manishabhandari4241 10 ай бұрын
Im instarting
@cinthyad5099
@cinthyad5099 8 ай бұрын
What is the codig??????
@alig.faizanazam5672
@alig.faizanazam5672 7 ай бұрын
thats not gatekeeper thats open to all 😅
@animetoon1192
@animetoon1192 7 ай бұрын
Steeper motor
@Ras_188
@Ras_188 3 ай бұрын
Bro, use gpt for that monstrosity
@nisoalaxshan4946
@nisoalaxshan4946 10 ай бұрын
I need arduino program code
@xhorizon94x
@xhorizon94x 10 ай бұрын
cpp #include // IR sensor pin const int irSensorPin = 2; // Servo motor pin const int servoPin = 9; // Servo angle limits const int minAngle = 0; const int maxAngle = 180; // Servo motor object Servo servoMotor; void setup() { // Initialize the serial communication Serial.begin(9600); // Attach servo to the servo pin servoMotor.attach(servoPin); // Set initial position of the servo servoMotor.write(minAngle); } void loop() { // Read the value from the IR sensor int irSensorValue = digitalRead(irSensorPin); // Check if an object is detected if (irSensorValue == HIGH) { // Object detected, move the servo to the maximum angle servoMotor.write(maxAngle); delay(1000); // Move the servo back to the minimum angle servoMotor.write(minAngle); delay(1000); } }
@animetoon1192
@animetoon1192 7 ай бұрын
Or servo
@Task_Force_141
@Task_Force_141 8 ай бұрын
Kids project, can make in 15 min without ChatGPT. 😂
@user-fc9zj1kz9i
@user-fc9zj1kz9i 5 ай бұрын
Tutorial
@satishrajp1934
@satishrajp1934 7 ай бұрын
What if its a black car😂😂😂😂😂
@gonakl
@gonakl Жыл бұрын
code bro..
@user-jv3ov3rl3u
@user-jv3ov3rl3u 8 ай бұрын
🪫good staff
@sr.codeScript
@sr.codeScript Ай бұрын
Hola, me ayudarian mucho si pasan por el canal. He creado un curso de programación con raspberry pico W por si alguien está interesado en aprender 😊❤
@tamilanimeedits7902
@tamilanimeedits7902 Жыл бұрын
Sorry man my bad
@gandalf1783
@gandalf1783 3 ай бұрын
It isnt an ESP lol
@Guiltfreedelight
@Guiltfreedelight 8 ай бұрын
Purpose of gate is to make them pay....why there would be a gate that opens automatically. No gate is also good...
@abubakarsiddique5507
@abubakarsiddique5507 7 ай бұрын
Please can you tell the components and sensor used in this project All the required components to make this project Please can you elaborate this It will be very helpful for us Waiting for your reply
@AkrurMahapatra
@AkrurMahapatra 26 күн бұрын
Item
@MdArafat-qy9xj
@MdArafat-qy9xj 2 ай бұрын
Nm I just got your email ✉️ to
@phanimaheswar
@phanimaheswar Жыл бұрын
Tutorial please. ..
@anlonjs517
@anlonjs517 10 ай бұрын
What is that motor ?
@CodersCafeTech
@CodersCafeTech 10 ай бұрын
Servo Motor
@ImronIim-du8yf
@ImronIim-du8yf 20 күн бұрын
M😊
@BK_EDITZ_006
@BK_EDITZ_006 10 ай бұрын
Bro coding ❤
@shirinkamal788
@shirinkamal788 8 ай бұрын
Can u explain it to us in a full video
@Antonio.italian
@Antonio.italian 6 ай бұрын
Ж
Is It Possible To Completely Fill a Klein Bottle?
7:01
The Action Lab
Рет қаралды 21 МЛН
home automation
0:10
Toptecboy
Рет қаралды 305 М.
DO YOU HAVE FRIENDS LIKE THIS?
00:17
dednahype
Рет қаралды 97 МЛН
Vivaan  Tanya once again pranked Papa 🤣😇🤣
00:10
seema lamba
Рет қаралды 35 МЛН
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
Impossible 0.00001% Odds!
8:01
Beast Reacts
Рет қаралды 85 МЛН
From Brains to Bot: Arduino's Next-Level Journey with AI.
7:26
DIY Builder
Рет қаралды 368 М.
How to Make an Autonomous Mapping Robot Using SLAM
5:44
Kai Nakamura
Рет қаралды 16 М.
Evolving Genetic Neural Network Optimizes Poly Bridge Problems
9:59
How To Make A DIY Arduino Obstacle Avoiding Car At Home
6:09
DIY Builder
Рет қаралды 4,8 МЛН
Animation vs. Physics
16:08
Alan Becker
Рет қаралды 25 МЛН
You've Never Seen A Wheelchair Like This
16:49
Mark Rober
Рет қаралды 28 МЛН
Sensors - which one to use
17:06
Electronoobs
Рет қаралды 1,3 МЛН
Зачем ЭТО электрику? #секрет #прибор #энерголикбез
0:56
Александр Мальков
Рет қаралды 219 М.
Hisense Official Flagship Store Hisense is the champion What is going on?
0:11
Special Effects Funny 44
Рет қаралды 3 МЛН
Tag her 🤭💞 #miniphone #smartphone #iphone #samsung #fyp
0:11
Pockify™
Рет қаралды 44 МЛН
Как правильно выключать звук на телефоне?
0:17
Люди.Идеи, общественная организация
Рет қаралды 922 М.
Easy Art with AR Drawing App - Step by step for Beginners
0:27
Melli Art School
Рет қаралды 12 МЛН
iPhone socket cleaning #Fixit
0:30
Tamar DB (mt)
Рет қаралды 6 МЛН
$1 vs $100,000 Slow Motion Camera!
0:44
Hafu Go
Рет қаралды 20 МЛН