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

preview_player
Показать описание
𝐒𝐮𝐩𝐩𝐨𝐫𝐭 𝐔𝐬 𝐎𝐧
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
𝐌𝐞𝐞𝐭 𝐓𝐡𝐞 𝐂𝐫𝐞𝐚𝐭𝐨𝐫𝐬
Nekhil Ravi (Hardware Development, Narration)
Shebin Jose Jacob (Software Development)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
𝐖𝐞'𝐫𝐞 𝐅𝐚𝐢𝐫𝐥𝐲 𝐒𝐨𝐜𝐢𝐚𝐥 𝐏𝐞𝐨𝐩𝐥𝐞
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
𝐆𝐞𝐚𝐫𝐬 𝐔𝐬𝐞𝐝
Shot On: Canon M50
Microphone: Boya M1
Tripod : DigiTek DTR 520 BH
Software: Adobe Premiere | Adobe Photoshop | Adobe Audition | Adobe After Effects
- - - - -
Рекомендации по теме
Комментарии
Автор

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

pythoncreators
Автор

Используем 2 оптопары (на въезд и выезд за пределы шлагбаума), микросхему таймера ne555 для установки времени вращения ОБЫЧНОГО двигателя (можно заменить двумя дополнительными оптопарами для определения положения стрелы шлагбаума), сдвоенное реле (можно заменить двумя обычными) для переключения между режимами (открыть/закрыть), операционный усилитель для управления реле и расыпуха из линейного стабилизатора напряжения, нескольких конденсаторов и парочки резисторов. Таким образом схема управления становится в 5-6 раз дешевле и менее запарная без программирования. При этом при дополнительных расходах на потенциометры 10-100кОм - можно регулировать время перед открытием шлагбаума, время поднятия стрелы и время после отъезда машины без лишних телодвижений

ЁжикПодчебоксарский
Автор

A toll booth simulation would be so much fun to watch

StrayKittenLove
Автор

```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

Shubham
Автор

அருமை யான பதிவு ஐயா செ ஆனந்தன் விஞ்ஞானி

ananthandhangam
Автор

This is a lighting sensor which name IR.It is not work in sunlight.We made a project and it failed for this sensor

abiralhossain
Автор

Which kind of device did you use on that gate

havefunfree
Автор

How about the sensor detecting a number of cars and relative to the number of cars it detects, the time it gives also changes

krazyylatch
Автор

what programming language should we learn to program this

abhishekjadhav
Автор

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.

kartik
Автор

Is servo motor is directly powered by Arduino?

Villian
Автор

what sensor did you use for the motoric

muhamadfarizramadhan
Автор

May i ask sir what sensor we use to detect our bus in order to receive a message (voice message) to passenger?

warrenmontebon
Автор

What are the apparatus used in this project can anyone let me know other than jumper wires and breadboard

dosti.pyar.hai_
Автор

Cool Diagrama de auriculares para la bocina bloetooth q no trae Conector como hacerlo?

Omar-seqz
Автор

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.

Starving_pigeon
Автор

It’s cool but I’d like to see you write your own code.

dreadwharf
Автор

well from the security point of view its terrible add something that will accept change.

nikodemgorka
Автор

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

sudarsanhot
Автор

What about a black car cuz ir doesn't work on black colour

got-to-code