6 ways to access the serial monitor for Arduino

Поделиться
HTML-код
  • Опубликовано: 3 окт 2024

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

  • @ernestb.2377
    @ernestb.2377 3 года назад +3

    Thanks for the video. I have just tried a 7th way :-)
    install PySerial (via command line pip3 install PySerial), and then in IDLE 4 lines of code:
    import serial
    ser = serial.Serial('COM6',9600,timeout=10)
    while 1:
    print(ser.readline())

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

      Good one! I totally forgot to add that programmatically one can also access the serial monitor if need be!
      Other than Python, I'm sure other languages like JavaScript, Go lang, etc might also have libraries for this.

    • @_n0iro.project_590
      @_n0iro.project_590 3 года назад

      Sounds like another great option as well. I'd love to see a tutorial for that with different anguages such as JavaScript, PySerial or Processing.

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

    I could listen to you all day long. Thank you for sharing and best wishes from Denmark.

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

    coolterm : add timestamp and output to logfile, excellent! That's one of my tasks crossed off the list. Thanks!

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

    I like the video so much, especially the LINUX part.

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

    I love your contents Sayanee Basu. Thanks heaps

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

    Excellent well explained and demonstrated.
    Cheers from Oz

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

      It's an understatement. It is the top of youtube!

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

    Love it! Thanks much!

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

    PuTTY has also support for serial connections. If you are using it as SSH client, you have serial terminal already available....

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

    Honourable mention to the tio package -- a Linux command which can send *AND* receive serial data!

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

    If i am not connect the arduino uno board .. and open siriel monitor its not workoing right ?? ..

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

    Very useful! ... thanks! ... :)

  • @razorramzan-inc
    @razorramzan-inc 2 года назад

    You have really explained so well. My stereotypical bias on ladies Tutorials has been diluted and flushed off

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

    Can any monitor accept a ‘clear screen’ command from the arduino?

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

    Thanks dear

  • @abcd-yg2rx
    @abcd-yg2rx 4 года назад

    how do i remove monitor filters from visual studio ?

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

    sorry for my English
    does the serial monitor function only when the pc is connected whit arduino?

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

      Yes, your Arduino must be connected to your computer to have the serial monitor function. Also, do include the Serial prints in your firmware to see those print statements.

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

    In my ide serial monitor show nothing. Please help

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

      Which IDE and operating system are you using?

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

      @@sayanee Arduino ide and windows operating system

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

      @@shubhamkhandelwal2393 Without any deeper context into your setup or your code, I suggest re-installing the Arduino IDE so that the version is the latest: www.arduino.cc/en/Guide/Windows/#proceed-with-board-specific-instructions
      And then proceeding to run a simple Blinky program with the simplest example on an Arduino UNO with the Serial.print() statements: www.arduino.cc/reference/en/language/functions/communication/serial/print/