Search code examples
uart

How can I find Arduino's UART COM port in MAC / Linux


I'm using Arduino DUE with a Windows 7 machine.

In Windows, I can check the list of ports(COM & LPT) at the "Device Manager".

What about in MAC OSX or Linux (Ubuntu)?

-Best regards


Solution

  • You should find the device by using

    dmesg | grep tty
    

    after plugging it in.