BytesOfProgress

Serial Monitor

Home › Wiki › Microcontroller › Arduino-CLI › Serial Monitor
  • Find out the right serial port:
  • $ arduino-cli board list
    Port         Type              Board Name      FQBN
    /dev/ttyUSB0 Serial Port       Arduino Uno     arduino:avr:uno
    
  • Connect to the serial monitor of the board:
  • $ arduino-cli monitor -p /dev/ttyUSB0 -b arduino:avr:uno

    The baud rate is taken from the board definition.


← Back