Arduino Software does not find our board in Tools-> Serial Port on OS X Yosemite

I bought this board an extruder controller board and this panel for connecting to a computer. I am following the tutorial above trying to set it up. We have successfully completed the bootloader part of this tutorial, and the DEBUG LED is blinking. I followed the tutorial until the program was downloaded. Arduino software does not find it in "Tools → Serial Port", but allows me to record a bootlegger. The only options are the two Bluetooth devices that I connected, none of which are useful.

+4
source share
1 answer

I only know the Windows drivers for the ISP programmer board you are using. When I ordered funky hardware from eBay with a non-existent or hard-to-reach OSX driver, I had success with Parallels. This is fun work, but it might be your best bet - many people on the Arduino.cc forums have the same problem .

So: Curse the Gods. Buy parallels. Install windows. Install official Atmel drivers. Write down your bootloader. Return to the building.

As always, if the serial port does not appear in the Arduino development environment, run the following command from the terminal:

ls /dev/tty* | grep 'usb'
0
source

All Articles