Arduino Uno Download Mac

The Arduino Uno can be programmed with the Arduino software (download). Select 'Arduino Uno w/ ATmega328' from the Tools Board menu (according to the microcontroller on your board). For details, see the reference and tutorials. The ATmega328 on the Arduino Uno comes preburned with a bootloader that allows you to upload new code. Download the previous version of the current release the classic Arduino 1.0.x, or the Arduino 1.5.x Beta version. All the Arduino 00xx versions are also available for download. The Arduino IDE can be used on Windows, Linux (both 32 and 64 bits), and Mac OS X.

Arduino Uno Download Free

Install the Arduino Software (IDE) on Windows PCs

This document explains how to install the Arduino Software (IDE) on Windows machines

On this page... (hide)

Download the Arduino Software (IDE)

Get the latest version from the download page. You can choose between the Installer (.exe) and the Zip packages. We suggest you use the first one that installs directly everything you need to use the Arduino Software (IDE), including the drivers. With the Zip package you need to install the drivers manually. The Zip file is also useful if you want to create a portable installation.

When the download finishes, proceed with the installation and please allow the driver installation process when you get a warning from the operating system.


Choose the components to install

Arduino download windows 7


Choose the installation directory (we suggest to keep the default one)


The process will extract and install all the required files to execute properly the Arduino Software (IDE)

Proceed with board specific instructions

When the Arduino Software (IDE) is properly installed you can go back to the Getting Started Home and choose your board from the list on the right of the page.



Last revision 2016/08/09 by SM

The text of the Arduino getting started guide is licensed under aCreative Commons Attribution-ShareAlike 3.0 License. Code samples in the guide are released into the public domain.

Updating the Atmega8U2 and 16U2 on an Uno or Mega2560 using DFU

The ATmega16U2 chip on your Arduino board acts as a bridge between the computer's USB port and the main processor's serial port. Previous versions of the Uno and Mega2560 had an Atmega8U2. It runs software called firmware (so named because you couldn't change it once it had been programmed in the chip) that can be updated through a special USB protocol called DFU (Device Firmware Update).

Here's how to update the firmware on your 16u2 in a few steps.

Check whether you need to update the firmware

The Arduino Uno and Mega 2560 have been shipping with the updated version of the ATmega16u2 firmware. To check which version of the firmware is on your board, connect it to your computer and follow the directions for your operating system:

  • Windows (before 7): locate the board in the Device Manager (it should be under Ports), right click on it and select 'Properties'; in the resulting dialog, click on 'driver details' in the 'Driver' tab ('Details' in Windows 7). In one of the properties, you should the VID, PID, and the revision number.
  • Mac OS X: run the System Profiler application (e.g. by selecting 'About This Mac' from the Apple menu and clicking the 'More Info...' button); go to the USB sheet and click on the item for the Arduino board. The firmware version is listed as 'version' (e.g. 0.01 for rev. 0001).

Download a DFU Programmer

This is the software that will update the code :

Windows: Download Atmel's flip programmer from here

Arduino Uno Download Mac Pro

Mac: Install MacPorts following these instructions: Once MacPorts is installed, in a Terminal window, type sudo port install dfu-programmer

NB: If you've never used sudo before, it will ask for your password. Use the password you login to your Mac with. sudo allows you to run commands as the administrator of the computer

Linux: from a command line type

sudo apt-get install dfu-programmer

or

sudo aptitude install dfu-programmer

depending on your distribution

Download updated firmware

The latest version is here

Choose the version that is suitable for your board, either arduino-usbserial/Arduino-usbserial-uno.hex or arduino-usbserial/Arduino-usbserial-mega.hex

The firmware is also located with the Arduino software in the /hardware/arduino/firmwares/arduino-usbserial folder. On OSX, right-click or command-click on the Arduino application and select 'show package contents' to find this folder.

If your board is Arduino UNO R1

You'll need to solder a 10k resistor (Brown-Black-Orange) at the back of your board in the same location as this picture.

Arduino uno download free

Connect the Arduino to your computer with a USB cable

Arduino Uno Download Mac Os

Just like you do whenever you're programming it.

Reset the 8u2 or 16u2

To do this, briefly bridge the reset pin with the ground. The pins are located near the USB connector, as shown in this picture. Connect them briefly with a piece of wire.

To verify you have reset the 8u2 or 16u2 chip: In the Arduino programming environment, check the list of serial ports. The serial port for your board should no longer show up.

Program the chip

Windows: use flip to upload the hex file to your board

Mac & Linux: from a terminal window, change directories to get into the folder with the firmware. If you saved the firmware in your downloads folder on OSX, then you might type

cd Downloads/

Once there, type:

sudo dfu-programmer atmega16u2 erase

When this command is done and you get a command prompt again, type

sudo dfu-programmer atmega16u2 flash Arduino-usbserial-uno.hex

Arduino Uno Download Mac Software

Finally, type

sudo dfu-programmer atmega16u2 reset

Arduino uno download mac download

Note

If your board has an atmega8u2 type atmega8u2 instead of atmega16u2 in the command lines above.

Arduino Uno Download Mac

Unplug your board and plug it back in

Your board should be ready and up to date. You can check this by looking in the serial port menu of the Arduino software. Your port should re-appear.

Arduino Uno Download Mac Free

Using other firmware

The 8u2 and 16u2's flexibility allows for other firmware so your board can appear as a different USB device (MIDI controller, HID, etc.). See the tutorials below for additional information.

Arduino Uno Download Mac Free

  • UnoJoy : Turn you Arduino Uno into a PS3 compatible USB joystick