For loops arduino - (Arduino Uno Programming for Beginners)

Поделиться
HTML-код
  • Опубликовано: 8 дек 2023
  • For loops arduino - (Arduino Uno Programming for Beginners)
    In this video I show how to use a for loop to create a blinking pattern using an LED.
    I will explain how to increment a variable and what a byte and a int variable is.

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

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

    The best explanation on this i have watched till date, thanks!
    Actually the best presentation on Arduino programming so far for me. Thanks for keeping it simple

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

      Thank you for the nice feedback and all the best on your Programming Journey :)

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

    Good information

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

    That was a great explanation!

  • @Volker-Dirr
    @Volker-Dirr 6 месяцев назад

    Nice video. I also like using the byte on an UNO R3. I am note sure if i would also use it on an R4.
    But in fact there are small differences between your "ugly" code and the "for" code. The "critical" difference is, that you can see in the "ugly" code only 1 delay with value 100, while in the for loops are 2 delays with value 100. That mean at the end the ugly code has a delay of 3000ms, while the for loop has a delay of 100+3000=3100ms. So in the for loop you must modify the 3000ms delay to 2900ms delay to get the same result.

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

      Thank you! well spotted 👌

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

    Best video on this I've seen thanks!

  • @BoogarTheTinkerer
    @BoogarTheTinkerer 5 дней назад

    Hey man, loved the video. Just wondering, where did u learn how to code? I’m wanting to get into electrical and mechanical engineering and I’m wondering where I learn to code things like lights, audio, motors, etc. What kind of coding would that be called? Thanks 🤘

    • @playduino
      @playduino  5 дней назад

      Hey thank you. Arduino is great for interacting with electronics of all sorts so if you learn to code Arduino, it will help you a lot on your journey.
      I learned it in School, in the University and tinkering around at home :)