---
title:        Installing Marlin (Arduino)
description:  Marlin Install Quick Start Guide

author: jbrazio
contrib: thinkyhead, shitcreek
category: [ articles, getting-started ]
---

Before proceeding be sure to read [Installing Marlin](install.html) first and download the Marlin source code. If you haven't done these steps yet, take [one step back](install.html), then follow the link back to this page to continue with the install process.

### Get Arduino IDE

The first thing you'll need to do is [download Arduino IDE](//www.arduino.cc/en/Main/Software) and install it following the usual procedure for your OS. Arduino IDE is available for Linux, Windows, macOS, and Unix.

{% alert warning %}
- Your printer may require you to install [additional libraries](//www.arduino.cc/en/Guide/Libraries) or a [non-standard Arduino core](//www.arduino.cc/en/Guide/Cores) (_e.g.,_ *Sanguino*, *Teensy++*). See [Configuring Marlin](/docs/configuration/configuration.html) and comments in `Configuration.h`, `Configuration_adv.h`, and `pins_YOUR_BOARD.h` pertaining to your hardware and add-ons. In many cases, instructions and links to resources are included.

- Arduino IDE can only build Marlin for AVR, Due, and Teensy++ 2.0. If you need to install Marlin 2.0 on another board, see [Installing Marlin (PlatformIO)](install_platformio.html) for instructions on building Marlin with PlatformIO.
{% endalert %}

### Preparation

. Double-click the `Marlin.ino` file to open it in Arduino IDE.

![Launch 'Marlin.ino'](/assets/images/basics/install_arduino/marlin_ino.png)

![Arduino starting](/assets/images/basics/install_arduino/arduino.png)

1. In Arduino IDE, select your board from the **Tools > Board** menu.<br />(Note: You may need to [add support](//www.arduino.cc/en/Guide/Cores) for your board to Arduino.)

![Select board](/assets/images/basics/install_arduino/select_board.png)


1. Select the serial (USB) port your board is connected to in the **Tools > Port** menu.

![Select board](/assets/images/basics/install_arduino/select_usb_port.png)

### Verify / Compile

- Click the **Verify** button at the top of the window to test for configuration errors.
  (Marlin includes several tests for common errors and outdated settings.)

{% alert warning %}
If you get a warning that Marlin requires too much Program Memory or SRAM to fit on your board, you can disable features or use less expensive features to bring Marlin down to a smaller size. The `SLIM_LCD_MENUS` option is included as a way to save space by leaving extraneous menus out of the LCD interface.
{% endalert %}

### Upload

![Compile and upload](/assets/images/basics/install_arduino/compile_upload.png)

- Put your board into *Program Mode* if required. _(Most boards don't require it.)_
- Click **Upload** to flash your board. A blue or green LED on the board will blink rapidly during the upload.

That’s it! With Marlin installed you can now enjoy silky smooth printing!

#### Generate 'firmware.bin' file

For platforms that require a `firmware.bin` file such as the LPC1768

![Generate bin file](/assets/images/basics/install_arduino/firmware_bin.png)

- After successfully compiling, select **Export compiled Binary** under **Sketch**
- Then transfer the bin file over to the SD card to be used

### Troubleshooting

- If you get "timeout" errors while attempting to flash the board, make sure that no other software is connected with the board. Disconnect or quit any host or slicer software (_e.g.,_ **PrintRun**, **Repetier Host**, **Simplify3D**, **Cura**, etc.) to release the serial port.

- If nothing seems to work, your board may not have a **bootloader** installed. A bootloader is required to allow the board to be programmed from the USB port. Arduino IDE includes a "Burn Bootloader" function, but a programmer device or spare Arduino is required. For more information read the article [Installing an Arduino Bootloader](//learn.sparkfun.com/tutorials/installing-an-arduino-bootloader/all).

Once you have a programmer you can use it to install Marlin directly, but we recommend installing a bootloader first, then following the easy instructions above.
