Arduino Lesson 6 - Serial Printing

Поделиться
HTML-код
  • Опубликовано: 8 дек 2016
  • Being able to print information to your computer from your Arduino can be a useful tool when it comes to diagnosing problems or even interfacing with computers as part of your project.
    Serial prints are one of the easiest ways to do this, and they are really simple thanks to the Arduino software!
  • НаукаНаука

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

  • @aldoromo5008
    @aldoromo5008 3 года назад +4

    I have been watching your tutorials since yesterday, and let me say that your little outro on this one just won you my subscription xD!
    Great content! Very understandable! Greetings from mexico! 🇲🇽

  • @tzamar977
    @tzamar977 Год назад +1

    brooo keep meking these, you describe so good and easy to understand:) i have watched so many videos about arduino without understanding but your explaining everything easy and good:) thanksssssssssssss

  • @charlieherbert7716
    @charlieherbert7716 6 лет назад +1

    Great explanation. Thanks!

  • @yadwindersingh9494
    @yadwindersingh9494 4 года назад

    You are a great teacher....
    Thanks thanks thanks thanks thanks thanks thanks thanks... great thanks
    You explain me very well...
    Finally i subscribed you

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

    Awesome video! Really helped me out sir :D

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

    Bro☺️☺️☺️...
    Keep up the good work...
    I have been woardering on how to write a code...
    But you have done it perfectly

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

    Thanks a lot , really it is a great experience to watch this valuable video

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

    I was actually eating a bowl of cereal while watching this.

  • @aryangarg9344
    @aryangarg9344 4 года назад

    Great Teacher!!!

  • @fissehaadmasu90
    @fissehaadmasu90 6 лет назад

    Great videos, thanks :)

  • @shan_singh
    @shan_singh 5 лет назад +7

    1:01
    Please show the diagram/image of the Arduino connections clearly in the video .
    That will help beginners to repeat those examples :)

  • @mustafaabdelkarim4255
    @mustafaabdelkarim4255 4 года назад

    Your explanation is nice

  • @TheTvRadioDude
    @TheTvRadioDude 7 лет назад +1

    Thank you for explaining! Great vids :)!!

    • @benduino7327
      @benduino7327  7 лет назад +1

      Thanks Papimo!

    • @TheTvRadioDude
      @TheTvRadioDude 7 лет назад

      No thank you! Had a test today which asked alot about arduino programming etc. :)

    • @benduino7327
      @benduino7327  7 лет назад

      Hope it went well! :)

  • @muhamadsyaifulanwar9216
    @muhamadsyaifulanwar9216 5 лет назад

    Sir, is it possible if you want to read the voltage of 2 separate batteries simultaneously with Arduino?

  • @himanshushekhar3304
    @himanshushekhar3304 5 лет назад

    great explanatio thanks

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

    Good explanation sir

  • @cowboyatthebebop
    @cowboyatthebebop 6 лет назад

    If you have multiple serial inputs and you want to name them so you know what each of them are doing how would you do that

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

    Love it!! Is this vids captured with GP8/9/10 or Dji cam? Did you do colorGrading?

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

    show me how to digits right a run thread pitch . {"command"}:

  • @rutulhapani8972
    @rutulhapani8972 4 года назад

    I was wandering if you could help me figure out how to ask user for two numbers and then multiply them in arduino.

  • @zoglchaim5634
    @zoglchaim5634 Год назад

    where does the ground connect to? do u actually need it? Once button is depressed, the current is interrupted..

  • @vamsikrishna5391
    @vamsikrishna5391 4 года назад

    sir can we use serial monitor option without connecting arduino board

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

    If it's only 1 or 0 couldn't bool instead of int also be used for serial.print?

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

    Why does it keep printing zeros when the button is not pressed? How would you code it so it only print zero once when the button is not being pressed?
    Why does the delay function help only print “the button has been pressed!” only once? Shouldn’t it only print once if the button has been pressed once regardless of the delay function?

  • @FernandoHernandez-lc9hl
    @FernandoHernandez-lc9hl 4 года назад

    How can I print within a FOR cycle only the last value?

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

    thanks mate

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

    what the different serial.print and serial.printf ?

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

    Thanks

  • @weirdthings9583
    @weirdthings9583 Год назад

    My thing just printing random numbers nothing im telling it to print.

  • @empty7534
    @empty7534 6 лет назад +1

    is the codes still the same if i'm using arduino nano?

    • @benduino7327
      @benduino7327  6 лет назад

      Yes it's the same :)

    • @empty7534
      @empty7534 6 лет назад

      Thanks man
      Were still not finish though

    • @benduino7327
      @benduino7327  6 лет назад

      You just have to change some of the settings in the menu "tools>board" then change to nano

  • @maspoetry1
    @maspoetry1 Год назад

    int L=13;
    void setup() {
    pinMode(L, OUTPUT);
    Serial.begin(9600);
    Serial.print("hello");
    }
    // the loop function runs over and over again forever
    void loop() {
    digitalWrite(L, HIGH); // turn the LED on (HIGH is the voltage level)
    delay(1000); // wait for a second
    digitalWrite(L, LOW); // turn the LED off by making the voltage LOW
    delay(100); // wait for a second
    }

  • @Hayduk11
    @Hayduk11 4 года назад

    I know I'm a little late. But does anyone have a fix for this. I copied this exactly and when I open the serial monitor it spams my statement over and over again.

    • @benduino7327
      @benduino7327  4 года назад

      do you have the "if" statement added in there, with a delay?

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

      @@benduino7327 yes thank you I figured it out.

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

      @@Hayduk11 how i have the same problem

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

      can you help me please

    • @weirdthings9583
      @weirdthings9583 Год назад

      mines printing random numbers and not what im telling it to print