Page 1 of 1

Using a Mac...not PC

Posted: Wed Aug 26, 2015 7:07 pm
by jmorrison
Hello-

I am using a Mac instead of a PC and I followed the instructions for downloading Arduino and no options for "com" come up for available ports. I have /dev/cu.Bluetooth-Incoming-Port, /dev/cu.Bluetooth-Modem, and /dev/cu.usbmodemfa131 available. Any ideas?

Re: Using a Mac...not PC

Posted: Wed Aug 26, 2015 8:27 pm
by teoman
Unplug arduino,

Check ports,

Plug arduino,

Check ports.

It is the one that appeared.

Re: Using a Mac...not PC

Posted: Wed Aug 26, 2015 8:30 pm
by teoman
It will appear similar to those you listed. They are not called com on the mac.

Re: Using a Mac...not PC

Posted: Wed Aug 26, 2015 8:58 pm
by Captain Starfish
Probably that last one.

- unplug the connection.
- Start the Terminal app.
- type

Code: Select all

ls /dev > t1
- plug the connection in and give it a moment to get discovered etc by the computer.
- type

Code: Select all

ls /dev > t2
then

Code: Select all

diff t1 t2
You should get something like

Code: Select all

17a18
> cu.usbmodemfd131
192a194
> tty.usbmodemfd131
These are the two endpoints for the usb serial connection. I tend to go with the "cu" version but I think both work OK.
Don't forget to clean up the files:

Code: Select all

rm t1 t2