Arduino Traffic Light Controller Tutorial Using Tinkercad

Поделиться
HTML-код
  • Опубликовано: 16 сен 2024
  • In this video, you are going to learn about how to make an Arduino traffic light controller. This traffic light controller will be used to control the flow of traffic. These can be applied at high traffic areas to avoid traffic blocks or accidents.
    Arduino Code :
    github.com/sma...
    • Introductory Video of ...
    • Arduino Tutorial (Moti...

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

  • @RiaMeiLi
    @RiaMeiLi 3 года назад +1

    Good job! I hope you make more videos like this, this helpful might be useful to my project😍👏🏻
    ~💕from🇵🇭

  • @bhuvidatta2115
    @bhuvidatta2115 4 года назад +1

    Great work Kartik ❤

  • @ecstasy3172
    @ecstasy3172 4 года назад +2

    great work bro keep it up🔥🔥

  • @holaheeworlasheu4545
    @holaheeworlasheu4545 3 года назад +1

    this video is so incredible.
    I love it.

  • @roshanmitra1117
    @roshanmitra1117 4 года назад +1

    V good kartik👏👏

  • @SMILE-ie3mh
    @SMILE-ie3mh 2 года назад

    You earned a new subscriber my friend

  • @sahiltripathi2221
    @sahiltripathi2221 4 года назад +1

    Good going bruh keep it up ♥️

  • @peterfuhnwi179
    @peterfuhnwi179 3 года назад +2

    The explaination is not clear to me. When the green led of direection 1 is on and the the rest direction are red right? at this moment people from direction 2,3 and 4 cant move because they are red and people from direction 1 cant move even if it green because direction 2,3 and 4 are red. so there is no movement. Because with this explaination, it shows that each way have only one direction.
    Will it not be more understandable to use a 4 way sytem road and with each way having two direction in which the leds are placed in one direction of each way?

    • @skhumbuzocele1330
      @skhumbuzocele1330 2 года назад

      Exactly bro......that is what i have observed as well...........

  • @kbcreation2341
    @kbcreation2341 2 года назад +1

    what are you use for component use for directions

  • @pratiksonavane9966
    @pratiksonavane9966 4 года назад +1

    Beautifully explained, way to go!

  • @shakirinjahanmozumder2572
    @shakirinjahanmozumder2572 3 года назад +1

    Thank you

  • @komalagarwal4256
    @komalagarwal4256 4 года назад +1

    Grt wrk👍👍

  • @Simran.820
    @Simran.820 4 года назад +1

    👏good job

  • @parthsharma5750
    @parthsharma5750 4 года назад +1

    Your video is good , but abhinav video is next level. You should watch his video.

  • @lilsak
    @lilsak 2 года назад

    ty

  • @yashwanthkatla3001
    @yashwanthkatla3001 3 года назад +2

    Can you send code for this?

  • @meghanaunnam4405
    @meghanaunnam4405 4 года назад +1

    3 way or four traffic controller can you tell please

  • @Jiminiiebabo
    @Jiminiiebabo 3 года назад +1

    How much will be the resistance?

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

    Sir I'm asking for the code

  • @aniketgiri2414
    @aniketgiri2414 3 года назад

    Can u plz explain how to make this circuit on tinkercad ..., its urgent.

  • @engkabangn1053
    @engkabangn1053 10 месяцев назад

    cannot work, already tried this one

  • @barryallen9686
    @barryallen9686 4 года назад +2

    I need the code please upload the code

  • @leelamullu27
    @leelamullu27 4 года назад +2

    Can you please upload the code sir

  • @faiqueAhmed28
    @faiqueAhmed28 4 года назад +1

    sir plz share the tinkercad link for Arduino Traffic Light Controller

  • @nishuverma7327
    @nishuverma7327 3 года назад +2

    this code does not works properly, pls send accurate code so that it can work on tinkercard

  • @nishuverma7327
    @nishuverma7327 3 года назад

    great work!!!! i need that code kindly send me

  • @VISHRUTHAVSECE--
    @VISHRUTHAVSECE-- 4 года назад +1

    Can you send me code

  • @alexamojica6866
    @alexamojica6866 11 месяцев назад

    CAN I HAVE A COPY OF THE CODE

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

      //First of all, we define the pins where we have //connected the LEDs. int red_1=13; int orange_1=12; int green_1=11; int red_2=10; int orange_2=9; int green_2=8; int red_3=7; int orange_3=6; int green_3=5; int red_4=4; int orange_4=3; int green_4=2;
      void direction_1_green(void)//green LED of direction 1 will turn ON { digitalWrite(red_1,LOW); digitalWrite(orange_1,LOW); digitalWrite(green_1,HIGH); digitalWrite(red_2,HIGH); digitalWrite(orange_2,LOW); digitalWrite(green_2,LOW); digitalWrite(red_3,HIGH); digitalWrite(orange_3,LOW); digitalWrite(green_3,LOW); digitalWrite(red_4,HIGH); digitalWrite(orange_4,LOW); digitalWrite(green_4,LOW); }
      void direction_2_orange(void)//orange LED of direction 2 will turn ON { digitalWrite(red_1,HIGH); digitalWrite(orange_1,LOW); digitalWrite(green_1,LOW); digitalWrite(red_2,LOW); digitalWrite(orange_2,HIGH); digitalWrite(green_2,LOW); digitalWrite(red_3,HIGH); digitalWrite(orange_3,LOW); digitalWrite(green_3,LOW); digitalWrite(red_4,HIGH); digitalWrite(orange_4,LOW); digitalWrite(green_4,LOW); }
      void direction_2_green(void)//green LED of direction 2 will turn ON { digitalWrite(red_1,HIGH); digitalWrite(orange_1,LOW); digitalWrite(green_1,LOW); digitalWrite(red_2,LOW); digitalWrite(orange_2,LOW); digitalWrite(green_2,HIGH); digitalWrite(red_3,HIGH); digitalWrite(orange_3,LOW); digitalWrite(green_3,LOW); digitalWrite(red_4,HIGH); digitalWrite(orange_4,LOW); digitalWrite(green_4,LOW); }
      void direction_3_orange(void)//orange LED of direction 3 will turn ON { digitalWrite(red_1,HIGH); digitalWrite(orange_1,LOW); digitalWrite(green_1,LOW); digitalWrite(red_2,HIGH); digitalWrite(orange_2,LOW); digitalWrite(green_2,LOW); digitalWrite(red_3,LOW); digitalWrite(orange_3,HIGH); digitalWrite(green_3,LOW); digitalWrite(red_4,HIGH); digitalWrite(orange_4,LOW); digitalWrite(green_4,LOW); }
      void direction_3_green(void)//green LED of direction 3 will turn ON { digitalWrite(red_1,HIGH); digitalWrite(orange_1,LOW); digitalWrite(green_1,LOW); digitalWrite(red_2,HIGH); digitalWrite(orange_2,LOW); digitalWrite(green_2,LOW); digitalWrite(red_3,LOW); digitalWrite(orange_3,LOW); digitalWrite(green_3,HIGH); digitalWrite(red_4,HIGH); digitalWrite(orange_4,LOW); digitalWrite(green_4,LOW); } void direction_4_orange(void)//orange LED of direction 4 will turn ON { digitalWrite(red_1,HIGH); digitalWrite(orange_1,LOW); digitalWrite(green_1,LOW); digitalWrite(red_2,HIGH); digitalWrite(orange_2,LOW); digitalWrite(green_2,LOW); digitalWrite(red_3,HIGH); digitalWrite(orange_3,LOW); digitalWrite(green_3,LOW); digitalWrite(red_4,LOW); digitalWrite(orange_4,HIGH); digitalWrite(green_4,LOW); } void direction_4_green(void)//green LED of direction 4 will turn ON { digitalWrite(red_1,HIGH); digitalWrite(orange_1,LOW); digitalWrite(green_1,LOW); digitalWrite(red_2,HIGH); digitalWrite(orange_2,LOW); digitalWrite(green_2,LOW); digitalWrite(red_3,HIGH); digitalWrite(orange_3,LOW); digitalWrite(green_3,LOW); digitalWrite(red_4,LOW); digitalWrite(orange_4,LOW); digitalWrite(green_4,HIGH); } void direction_1_orange(void)//orange LED of direction 1 will turn ON { digitalWrite(red_1,LOW); digitalWrite(orange_1,HIGH); digitalWrite(green_1,LOW); digitalWrite(red_2,HIGH); digitalWrite(orange_2,LOW); digitalWrite(green_2,LOW); digitalWrite(red_3,HIGH); digitalWrite(orange_3,LOW); digitalWrite(green_3,LOW); digitalWrite(red_4,HIGH); digitalWrite(orange_4,LOW); digitalWrite(green_4,LOW); } void setup() { // Declaring all the LED's as output
      for(int i=2;i

  • @shreyayadav2629
    @shreyayadav2629 3 года назад

    Sir it's not working

  • @faisalmajeed2747
    @faisalmajeed2747 4 года назад +1

    i need that code kindly send me😀😀😀

  • @alliyahjeanquintos1379
    @alliyahjeanquintos1379 2 года назад

    beh sumabog samen

  • @saivishalbharadhwajjuvvala6316
    @saivishalbharadhwajjuvvala6316 4 года назад +1

    Can you share code