How to make car parking system using arduino | Automatic car parking system | Arduino Project

Поделиться
HTML-код
  • Опубликовано: 3 окт 2024
  • how to make car parking system using arduino | car parking system using arduino | car parking system using arduino and ir sensor | car parking system using arduino code | how to make a car parking system using arduino and ir sensor | how to make car parking with cardboard | how to make car parking | how to make car parking system using arduino | how to make car parking sensor | how to make car parking at home | car parking system using arduino and ir sensor | arduino project | car parking system using arduino
    Materials Required:- simplecircuits...
    Circuit Diagram:- simplecircuits...
    Arduino Code:- simplecircuits...
    For any doubt join our telegram group:-
    t.me/+exPRiuri...
    Follow us on:-
    Instagram:- / simplecircuits.360
    _______Thanks for Watching___________
    #arduino #diy #project #led #arduinoproject

Комментарии • 206

  • @SimpleCircuitsOfficial
    @SimpleCircuitsOfficial  5 месяцев назад +4

    Join telegram group for any doubt. Link in description. Code link:-simplecircuitslol.blogspot.com/2024/03/arduino-code-car-parking-system.html

    • @SoulVerses54
      @SoulVerses54 7 часов назад

      Bro you're not responding to me there please provide proper source where i can come over to my theories.
      Instagram or telegram account!

  • @arduolingo-zh1pm
    @arduolingo-zh1pm 3 дня назад +3

    It's working perfectly. Thanks a lot! I created this for a competition at my campus. I'll update you with the results once they are announced.🥰🥰

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  3 дня назад

      I am waiting for your results.

    • @SoulVerses54
      @SoulVerses54 7 часов назад

      Would you like to share your Instagram or any source where I can talk to you about this project??

    • @SoulVerses54
      @SoulVerses54 7 часов назад

      Do we need to install i2c library or anything along with the given code ?????
      Or just follow all and only these steps which are instructed in this video!
      Cuz the comments are confusing me because many people complaining that it's not working etc

  • @Ge7_Skills
    @Ge7_Skills Месяц назад +1

    I have a small OLED display can I use the small one or it has to be the one your using?

  • @goodtoall-k3j
    @goodtoall-k3j День назад +1

    Bro its a very good project but i have a doubt should we use
    arduino uno r3 or arduino uno r3 sdm
    Bro pls reply fast

  • @VISHWA2Allinoneindia
    @VISHWA2Allinoneindia 2 месяца назад +1

    Thanks for giving all the material links

  • @prateekgour6932
    @prateekgour6932 7 месяцев назад +6

    Awesome video
    The last car went too fast still the system worked
    👏🏻

  • @laarnielaus3947
    @laarnielaus3947 5 месяцев назад +4

    Please elaborate how the Arduino manage and organize vehicle parking system. What are the feature of the system. What displays in LCD? What are the automation done by your project.

  • @technology_explorer_jitu
    @technology_explorer_jitu Месяц назад +2

    Hi. I am change your code.
    int Slot = 4; //Total number of parking Slots
    Slot 4 tha mene usko 6 kia to code me kehi par eroor aya ka kya bataya please

  • @technology_explorer_jitu
    @technology_explorer_jitu Месяц назад +3

    Hii iam creat the project it's working

    • @rameshkishore7893
      @rameshkishore7893 22 дня назад

      bro what about code?? it's really working

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  22 дня назад

      Ya that's why he sad project is working.

    • @technology_explorer_jitu
      @technology_explorer_jitu 22 дня назад

      @@rameshkishore7893 #include
      #include
      LiquidCrystal_I2C lcd(0x27,16,2);
      #include
      Servo myservo;
      int IR1 = 2;
      int IR2 = 3;
      int Slot = 4; //Total number of parking Slots
      int flag1 = 0;
      int flag2 = 0;
      void setup() {
      Serial.begin(9600);
      lcd.init(); //initialize the lcd
      lcd.backlight(); //open the backlight
      pinMode(IR1, INPUT);
      pinMode(IR2, INPUT);
      myservo.attach(4);
      myservo.write(100);
      lcd.setCursor (0,0);
      lcd.print(" ARDUINO ");
      lcd.setCursor (0,1);
      lcd.print(" PARKING SYSTEM ");
      delay (2000);
      lcd.clear();
      }
      void loop(){
      if(digitalRead (IR1) == LOW && flag1==0){
      if(Slot>0){flag1=1;
      if(flag2==0){myservo.write(0); Slot = Slot-1;}
      }else{
      lcd.setCursor (0,0);
      lcd.print(" SORRY :( ");
      lcd.setCursor (0,1);
      lcd.print(" Parking Full ");
      delay (3000);
      lcd.clear();
      }
      }
      if(digitalRead (IR2) == LOW && flag2==0){flag2=1;
      if(flag1==0){myservo.write(0); Slot = Slot+1;}
      }
      if(flag1==1 && flag2==1){
      delay (1000);
      myservo.write(100);
      flag1=0, flag2=0;
      }
      lcd.setCursor (0,0);
      lcd.print(" WELCOME! ");
      lcd.setCursor (0,1);
      lcd.print("Slot Left: ");
      lcd.print(Slot);
      }

    • @technology_explorer_jitu
      @technology_explorer_jitu 22 дня назад

      @@rameshkishore7893 #include
      #include
      LiquidCrystal_I2C lcd(0x27,16,2);
      #include
      Servo myservo;
      int IR1 = 2;
      int IR2 = 3;
      int Slot = 4; //Total number of parking Slots
      int flag1 = 0;
      int flag2 = 0;
      void setup() {
      Serial.begin(9600);
      lcd.init(); //initialize the lcd
      lcd.backlight(); //open the backlight
      pinMode(IR1, INPUT);
      pinMode(IR2, INPUT);
      myservo.attach(4);
      myservo.write(100);
      lcd.setCursor (0,0);
      lcd.print(" ARDUINO ");
      lcd.setCursor (0,1);
      lcd.print(" PARKING SYSTEM ");
      delay (2000);
      lcd.clear();
      }
      void loop(){
      if(digitalRead (IR1) == LOW && flag1==0){
      if(Slot>0){flag1=1;
      if(flag2==0){myservo.write(0); Slot = Slot-1;}
      }else{
      lcd.setCursor (0,0);
      lcd.print(" SORRY :( ");
      lcd.setCursor (0,1);
      lcd.print(" Parking Full ");
      delay (3000);
      lcd.clear();
      }
      }
      if(digitalRead (IR2) == LOW && flag2==0){flag2=1;
      if(flag1==0){myservo.write(0); Slot = Slot+1;}
      }
      if(flag1==1 && flag2==1){
      delay (1000);
      myservo.write(100);
      flag1=0, flag2=0;
      }
      lcd.setCursor (0,0);
      lcd.print(" WELCOME! ");
      lcd.setCursor (0,1);
      lcd.print("Slot Left: ");
      lcd.print(Slot);
      }

  • @Shivam__rts.
    @Shivam__rts. Месяц назад +1

    Can we use PowerBank for power supply

  • @architsingh8199
    @architsingh8199 Месяц назад +1

    Bro please can u make a display code for oled display please

  • @Darknight-yf1rk
    @Darknight-yf1rk Месяц назад +1

    Hey can we use ultrasonic sensors too? Pls reply fast

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  Месяц назад

      Yes

    • @Ge7_Skills
      @Ge7_Skills Месяц назад

      @@SimpleCircuitsOfficialis there a way you could tell me the wiring for the ultrasonic sensor? And how many do we need 2 or 1 and for the display you have I have a square little OLED display can I use that instead of the big one your using?

  • @ActuallyReazh
    @ActuallyReazh 16 дней назад

    Hello, my device worked fine at first time but now the second time it's keep showing full and 1 slot back and forth. Also the sensor has 2 lights, what should i fix on ?

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  16 дней назад

      Adjust potential meter of sensor according to your range and check the range by keeping your hand in front of sensor.

  • @trixybudgetgamer4036
    @trixybudgetgamer4036 2 месяца назад +1

    Please reply fast
    Can i attach a battery to it

  • @muhamadyogaadampratama5645
    @muhamadyogaadampratama5645 3 месяца назад +1

    Can I use Wemos D1 R1 as a replacement for Arduino Uno?

  • @trilogesh3027
    @trilogesh3027 2 месяца назад

    Sir one doubt , i have done everything according to video but for me text is not displayedafter soldering but the display lights up

  • @shraddhakaushal5881
    @shraddhakaushal5881 5 месяцев назад +2

    if i want to make car parking system project using machine learning then can I use this model in it??

  • @Darknight-yf1rk
    @Darknight-yf1rk Месяц назад

    hey my ir sensors detect objects but the servo motor still isnt working. I have not used lcd display. NOW IT WORKED BUT AFTER A FEW TIMES THE servo again stops

  • @yetundeyusuf607
    @yetundeyusuf607 День назад

    Lcd12c module blue or green

  • @Zulaikha2607
    @Zulaikha2607 3 месяца назад

    Hi, may I know, why my IR sensors only show green light? There is no red light.
    My toll gate keep on raising even when there is no car.

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  3 месяца назад

      Colour of led doesn't matters.
      Adjust your sensors from potential meter.

  • @architsingh8199
    @architsingh8199 Месяц назад

    can i use OLED display instead of LCD display?

  • @satvikgarg6125
    @satvikgarg6125 3 месяца назад

    HI MAY I ASK WHY THE BARRIER DOESN'T OPEN WHEN THE CAR TRIES TO EXTIT THE SYSTEM?

  • @hilalanramadhan1712
    @hilalanramadhan1712 6 месяцев назад +2

    awesome video bro
    how to make it with arduino nano? i only have arduino nano?

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  6 месяцев назад

      All connections are same. The only thing you need to do is change the board when you upload the program.
      If you have any doubts you can join telegram group.

  • @juinxin6634
    @juinxin6634 5 месяцев назад +2

    Hi sir may i ask why my lcd display doesnt works but others r ok

  • @Zarfrobotics2011
    @Zarfrobotics2011 Месяц назад +1

    @SimpleCircuits.
    Hello amazing

  • @techsavvyaftab
    @techsavvyaftab 6 месяцев назад +2

    Nice project 🔥

  • @wian_0774
    @wian_0774 4 месяца назад

    Do you use battery? And where did you put that battery

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  4 месяца назад

      No battery used, direct connection from laptop. But you can use battery.

    • @fawziafariha225
      @fawziafariha225 2 месяца назад

      Can i use mobile instead of a laptop? ​@@SimpleCircuitsOfficial

  • @SriPoojithaGuguloth
    @SriPoojithaGuguloth 3 месяца назад

    Its showing me ('LiquidCrystal_12C' does not nane a type error) !!
    What should i do now

  • @AMALKTMCA23-25
    @AMALKTMCA23-25 Месяц назад

    Hey is any database using for this for showing the parking slot availability

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  Месяц назад

      ???????

    • @AMALKTMCA23-25
      @AMALKTMCA23-25 Месяц назад

      @@SimpleCircuitsOfficial I am asking that is that necessary to use a database for storing the availability of each parking slot ?

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  Месяц назад +1

      What do you want to do tell me that first. This will help me to understand your question.

  • @KevinReyes-rz7lv
    @KevinReyes-rz7lv 4 месяца назад +2

    someone help me with the code please

  • @ROBLOX.IN51
    @ROBLOX.IN51 4 месяца назад

    sir for me its coming add liquid crystal library after adding it it shows the same

  • @kharismacitraa
    @kharismacitraa 13 дней назад

    Kira" untuk biaya pembuatannya lebih dari 200k nggak kak?

  • @birajsaikia7667
    @birajsaikia7667 3 месяца назад

    Bro 3 codes given which one to use???

  • @architsingh8199
    @architsingh8199 Месяц назад

    Can i use a 9v battery?

  • @HiHello-ru6rr
    @HiHello-ru6rr 2 месяца назад

    Can i change frome arduino > esp32

  • @rakinalam347
    @rakinalam347 5 месяцев назад +7

    Display is not working after uploding code

  • @antoniorosa7256
    @antoniorosa7256 4 месяца назад

    Sir, You can make a video explaining the program?

  • @suhaskashyap88247
    @suhaskashyap88247 6 месяцев назад +2

    👏👏great

  • @kggedrell2123
    @kggedrell2123 4 месяца назад

    is this IOT ? EVEN WITHOUT wifimodule?

  • @Thedemonsblack
    @Thedemonsblack 3 месяца назад +1

    You are replying to every comment. how?

  • @OffChillzy
    @OffChillzy 18 дней назад

    what is beneath the servo moto

  • @Sonali_Sharma14
    @Sonali_Sharma14 6 месяцев назад +1

    Amazing 😍

  • @gabru6935
    @gabru6935 6 месяцев назад +1

    Can we buy your project?

  • @architsingh8199
    @architsingh8199 Месяц назад

    How it can run without battery?

  • @karpagapriya4191
    @karpagapriya4191 2 месяца назад

    Sir this project order panuvingala

  • @antoniorosa7256
    @antoniorosa7256 4 месяца назад

    I installed Arduino for the first time

  • @asifalnayeem3242
    @asifalnayeem3242 3 месяца назад

    Bro No need for available supplies

  • @alizaburhan2568
    @alizaburhan2568 6 месяцев назад

    Kitne paise mein ye model ready ho jata hai ?

  • @tuhinangsukundu01
    @tuhinangsukundu01 2 месяца назад +1

    Sir the code didn't work!!😢

  • @jessecardoso5529
    @jessecardoso5529 4 месяца назад +1

    thanks

  • @ArdaGcr
    @ArdaGcr 4 месяца назад

    Merhaba hocam, LCD ekranımın neden çalışmadığını sorabilir miyim?

  • @ojashsonar4528
    @ojashsonar4528 5 месяцев назад +1

    How to implement code bro?

  • @GerardoMusi
    @GerardoMusi 4 месяца назад

    i need help it tells me something about liquidcrystal

  • @KevinReyes-rz7lv
    @KevinReyes-rz7lv 4 месяца назад +1

    i need help please

  • @mahalingam2396
    @mahalingam2396 5 месяцев назад +1

    Bro ithu ku report irrukka 😊

  • @Shivam__rts.
    @Shivam__rts. Месяц назад

    It is showing that connection not established

  • @dianajanebalog3928
    @dianajanebalog3928 4 месяца назад

    why there are no ir sensor in tinker cad

  • @walaabukhyarah4898
    @walaabukhyarah4898 Месяц назад

    Could help me in it i have a problem in coding

  • @krishnabamrotia357
    @krishnabamrotia357 4 месяца назад

    Sir servo motor is not work

  • @cuberios45
    @cuberios45 2 месяца назад

    Can I do this in science fair 11 std

  • @vijaychandra2369
    @vijaychandra2369 6 месяцев назад

    I can take some help please reply i also make this project

  • @HimanshuSingh-t3q
    @HimanshuSingh-t3q 5 месяцев назад

    Bro you have given 3 codes which code should I use?

  • @chinnunayak6926
    @chinnunayak6926 6 месяцев назад +1

    Program haaki

  • @NiranjaNiru-x6b
    @NiranjaNiru-x6b 21 день назад

    Bro program not working

  • @Ma.RheamorDizon
    @Ma.RheamorDizon 5 месяцев назад +1

    The code didn't work

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  5 месяцев назад

      Join telegram group I will solve this issue

    • @PaintingHub7
      @PaintingHub7 4 месяца назад

      ​@@SimpleCircuitsOfficial Ap idhr bta dyen please telegram nahi install

  • @Shivam__rts.
    @Shivam__rts. Месяц назад

    1 ir is not working

  • @vansh_2145
    @vansh_2145 5 месяцев назад

    What about the code ??

  • @tanhnguyenchon1755
    @tanhnguyenchon1755 7 месяцев назад +1

    👍👍👍

  • @ktrgamerz3930
    @ktrgamerz3930 6 месяцев назад +1

    Code error aarha hai Arduino ide mein

  • @lokendrapalsingh1442
    @lokendrapalsingh1442 4 месяца назад

    prog not working

  • @anvitasingh2596
    @anvitasingh2596 4 месяца назад

    Coding link??

  • @itXsPACEofficial
    @itXsPACEofficial 3 месяца назад +1

    Sir reply fast my science project is in 3 days
    I do not have a 12c module so what should I do
    Reply fast pls

    • @nazneenkosar6002
      @nazneenkosar6002 3 месяца назад

      Mine to

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  3 месяца назад

      You have to change your connections and code for this but I don't have that code and diagram. I suggest you to buy a I2C module.

  • @merlangga83
    @merlangga83 5 месяцев назад

    servo not worked?

  • @jessecardoso5529
    @jessecardoso5529 4 месяца назад

    send me code..please

  • @mahalingam2396
    @mahalingam2396 5 месяцев назад

    Bro report copy Link send me bro

  • @jessiefriolo1176
    @jessiefriolo1176 4 месяца назад +1

    bogo

  • @joychakma5694
    @joychakma5694 6 месяцев назад

    kam nahi karrAHA

  • @khadijalarhmari6670
    @khadijalarhmari6670 6 месяцев назад

    Plz passe moi le programme

  • @vijaychandra2369
    @vijaychandra2369 6 месяцев назад

    Brother how can i contact to you

  • @LatifaAbidi-ov6ox
    @LatifaAbidi-ov6ox 4 месяца назад

    I need to do this project for school so I want to Ask you if every thing is ok with this project:
    Does thé code works because someone Said that it dosen't work?
    Please answer me as soon as possible.🫸🫷

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  4 месяца назад

      It works perfectly. Then also if you face any problem you can use join telegram group.

  • @techsavvyaftab
    @techsavvyaftab 6 месяцев назад +1

    Nice project 🔥

  • @antoniorosa7256
    @antoniorosa7256 4 месяца назад

    What type a library use?

  • @JOMARCACERES-h1t
    @JOMARCACERES-h1t 6 месяцев назад

    Give me code

    • @SimpleCircuitsOfficial
      @SimpleCircuitsOfficial  6 месяцев назад

      It's in description.

    • @zhajar4355
      @zhajar4355 6 месяцев назад

      But IS ont correct whey plz contact me i have projet tmorrow ​@@SimpleCircuitsOfficial

    • @HimanshuSingh-t3q
      @HimanshuSingh-t3q 5 месяцев назад

      ​@@SimpleCircuitsOfficialBro you have given 3 codes which code should I use?