Uploading To Arduino

From Rhythm Cons Wiki

This page will walk you through step-by-step on how to set up the Arduino IDE and upload code to your Arduino for the first time!

Step 1: Download the Arduino IDE

Navigate to the Arduino Downloads Page and click on the right side for your OS.

Arduino Download.png

After downloading, install the IDE.

(Optional) Portable Mode

The author of this article (me) prefers to run Arduino in portable mode, which requires no installation and saves all of your settings within the same directory. To do so, download the ZIP file, extract, and then create an empty folder called "portable". When you run the .EXE, all of your settings will be saved to this folder.

Step 2: Download the code

You will find many codebases available on Github. There is a list of commonly used code on the Controller Code page.

In this example, we will be using KnucklesLee's code, but they will all work the same way.

Locate the green "Code" button, click it, and then click "Download ZIP".

Github Code Download.png

Then, unzip the file.

Step 2b: Additional Libraries

Look through the README of your chosen code carefully. Some may require additional libraries to be installed.

Common libraries are:

  • Bounce2, which may be installed directly from the Arduino Library Manager (Tools -> Manage Libraries...).
  • Arduino Joystick Library, which has separate install instructions in its README. This library is required for KnucklesLee's code.

Step 3: Open the IDE and Your Code

Run the Arduino IDE, select File -> Open, and locate your code. Select the file with the *.INO file extension.

It will look something like this:

Arduino IDE Board.png

Please note the board in the lower right, as indicated by the red arrow. This must match the board you are attempting to program to. Typically, this will be either an Arduino Leonardo or an Arduino Micro.

Arduino IDE ChoosingBoard.png

Step 4: Select the Port

Plug in your Arduino. Then under Tools -> Port, select the COMxx number that matches your board. It should be labeled.

Arduino IDE ChoosingPort.png

Step 5: Upload!

Press the Upload button, located in the upper left of the screen. It is an arrow pointing to the right. When the upload is finished, the words "Done Uploading." will appear in the lower portion of the screen.

Arduino IDE Upload.png

Step 5b: Troubleshooting

If the upload fails, examine the console output, shown in red text on a black background.

If the following message is spamming, double check the port number selected in Step 4. If this is correct, reset the Arduino using the Red reset button (Leonardo / Micro) or by double tapping the RST pin to GND (Pro Micro) using a piece of wire. Reset must be pressed while this message is occurring. If it is done before or after, the board will not upload.

Arduino IDE PortError.png