Code - Electronics - IoT

Can't find Arduino DUE in board list?

Ivan Carosati

So, your Arduino DUE just came in the mail.
You're all excited, you unpack it and connect it to your USB, Open the Arduino IDE and you go to Tools → Board.
Nothing!
The Arduino DUE is missing from the list.

arduino-tools-board
Here's how you install the software for the Arduino DUE.

Tools → Board → Boards Manager...
Type Arduino SAM in the search box.
arduino-tools-board-search
Click on the Arduino SAM Boards (32-bits ARM Cortex-M3) and hit install. It may take a while, you'll need to download ~50Mb.
arduino-tools-board-install
Once it's done, you'll see that package as installed. Good!
arduino-tools-board-installed
Now go back to Tools → Board and you'll see Arduino DUE listed at the bottom. Select it and you're done!
arduino-tools-board-arduino-due

Let's make a LED blink! (no extra hardware necessary)

Make sure you've connected the Arduino DUE to the port labeled PROGRAMMING port at the bottom of the board.
Select the correct Port in Tools → Port as shown below.
arduino-tools-port-arduino-due

Arduino DUE comes with an on-board LED that you can control on the digital pin 13. Let's use it!
Copy and paste the following code into the IDE.

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin 13 as an output.
  pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);              // wait for 0.2 second
  digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
  delay(200);              // wait for 0.2 second
}

Hit the upload button and let it upload.
arduino-ide-blink-code

arduino-due-blink

Awesome!

Share twitter/ facebook/ copy link
Please enter at least 3 characters 0 Results for your search