---
product_id: 272820300
title: "Arduino Due [A000062]"
brand: "arduino"
price: "C$8331"
currency: NIO
in_stock: true
reviews_count: 5
category: "Arduino"
url: https://www.desertcart.ni/products/272820300-arduino-due-a000062
store_origin: NI
region: Nicaragua
---

# 84 MHz 32-bit ARM CPU Dual microUSB for fast & native USB 54 Digital I/O + 16 Analog Inputs Arduino Due [A000062]

**Brand:** arduino
**Price:** C$8331
**Availability:** ✅ In Stock

## Summary

> 🚀 Unlock next-level prototyping power with Arduino Due — where innovation meets speed!

## Quick Answers

- **What is this?** Arduino Due [A000062] by arduino
- **How much does it cost?** C$8331 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.ni](https://www.desertcart.ni/products/272820300-arduino-due-a000062)

## Best For

- arduino enthusiasts

## Why This Product

- Trusted arduino brand quality
- Free international shipping included
- Worldwide delivery with tracking
- 15-day hassle-free returns

## Key Features

- • **Massive I/O Arsenal:** 54 digital pins and 16 analog inputs to connect all your sensors and actuators effortlessly.
- • **Dual USB Connectivity:** Seamlessly program and communicate with two microUSB ports, including high-speed native USB.
- • **Pro-Grade Prototyping:** Compatible with 3.3V Arduino shields and equipped with DACs and SPI bus for sophisticated analog and multi-speed device control.
- • **Powerhouse 32-bit ARM Core:** Experience blazing 84 MHz performance for complex, real-time projects.
- • **Advanced Communication Suite:** 4 UARTs, CAN Bus, and dual TWI ports enable versatile multi-device networking.

## Overview

The Arduino Due is a professional-grade 32-bit ARM Cortex-M3 microcontroller board running at 84 MHz, featuring 54 digital I/O pins, 16 analog inputs, dual DAC channels, and multiple communication ports including UART, CAN Bus, and TWI. It offers dual microUSB connectors for programming and high-speed native USB communication, supports 3.3V Arduino shields, and includes an efficient switching voltage regulator. Ideal for advanced makers and rapid prototyping, it combines extensive connectivity and processing power in a compact, open-source platform.

## Description

Product description ABOUT ARDUINO Arduino is the world’s leading open-source hardware and software ecosystem. The Company offers a range of software tools, hardware platforms and documentation enabling almost anybody to be creative with technology. Originally started as a research project by Massimo Banzi, David Cuartielles, Tom Igoe, Gianluca Martino, and David Mellis at the Interaction Design Institute of Ivrea in the early 2000s, it builds upon the Processing project, a language for learning how to code within the context of the visual arts developed by Casey Reas and Ben Fry as well as a thesis project by Hernando Barragan about the Wiring board. WHY ARDUINO? Inexpensive Arduino boards are relatively inexpensive compared to other microcontroller platforms. The least expensive version of the Arduino module can be assembled by hand, and even the pre-assembled Arduino modules cost not so high. Simple, clear programming environment The Arduino Software (IDE) is easy-to-use for beginners, yet flexible enough for advanced users to take advantage of as well. For teachers, it's conveniently based on the Processing programming environment, so students learning to program in that environment will be familiar with how the Arduino IDE works. Open source and extensible software The Arduino software is published as open source tools, available for extension by experienced programmers. The language can be expanded through C++ libraries, and people wanting to understand the technical details can make the leap from Arduino to the AVR C programming language on which it's based. Similarly, you can add AVR-C code directly into your Arduino programs if you want to. Open source and extensible hardware The plans of the Arduino boards are published under a Creative Commons license, so experienced circuit designers can make their own version of the module, extending it and improving it. Even relatively inexperienced users can build the breadboard version of the module in order to understand how it works and save money. ARDUINO CLASSICS Message from Massimo Banzi - co-founder “The Arduino philosophy is based on making designs rather than talking about them. It is a constant search for faster and more powerful ways to build better prototypes. We have explored many prototyping techniques and developed ways of thinking with our hands.” Arduino Uno R3 The ideal board for getting started with electronics, through fun and engaging hands-on projects. Arduino Due Perfect for powerful larger scale projects, the Arduino Due is based on a 32-bit ARM core microcontroller. Arduino Leonardo with Headers Microcontroller board based on the ATmega32u4 that has built-in USB communication. Arduino Mega 2560 Rev3 Designed for your most ambitious projects which require additional pins and extra memory. Ideal for devices like 3D printers. ARDUINO CREATE Connect, Create, Collaborate Arduino Create is an integrated online platform that enables Makers and Professional Developers to write code, access content, configure boards, and share projects. Go from an idea to finished IoT project quicker than ever before. With Arduino Create you can use an online IDE, connect multiple devices with the Arduino IoT Cloud, browse a collection of projects on Arduino Project Hub, and connect remotely to your boards with Arduino Device Manager. As well you can share your creations, along with step-by-step guides, schematics, references, and receive feedback from others.

Review: Guten Produkt für Fortgeschrittene - Insgesamt ist es ein solides Arduino Board mit vielen Funktionen fürs schnelle Protoyping. Beispielsweise die beiden DAC Kanäle sind sehr vom Vorteil, wenn man analoge Schaltungen ansteuern möchte. Auch Funktionen, wie natives High-Speed USB, eine (relativ) hohe Taktfrequenz, mehrere Serielle Schnittstellen, usw. Somit ist es ein ideales Board für jeden Maker, Hobbyist, etc. im Bereich des Prototypenbaus. Jedoch ist der Preis sehr happig mit um die 42 Euro. Dafür gibt es schon von anderen Herstellern bessere Boards für kleineres Geld, welche dann bestimmte Funktionen des Due drauf haben. Der Due hat sie aber alle. Somit kann dieses Board ein absoluter Schatz im Prototypenbau sein, würde aber von einer Serienfertigung mit diesem Board abraten, da der Preis ja wie beschrieben doch etwas höher liegt...
Review: Arduino Due + Arduino Yun shield: great combination! - The Due from arduino.cc (the original Arduino group) has been discontinued, but Arduino.org (you can read up on the issues between the .cc and .org groups) made this Due board. That would be the only difference. The number of pins and amount of memory make this board especially useful. And as an added plus, it works with the Arduino Yun Shield (see the arduino.cc website) which allows the Due to communicate via Bridge.h to the Yun (which runs Linux and includes wifi and ethernet connectivity). Just add this to your Due sketch: #include  // Arduino Due to Yun Shield communication BridgeClient client; You can also access Linux processes by including: #include  which, for example, will allow the Due to get the current system date and time from the Yun. Over-the-air programming is the nicest feature of the Due-Yun combination which allows programs to be upload to the Due when it is connected to wifi. To enable this functionality, you first upload a sketch to the Due via USB with the setup() containing the line 'checkForRemoteSketchUpdate()' as shown below: void setup() { checkForRemoteSketchUpdate(); // use for Due when programming over Yun Shield } void loop() { // put your main code here, to run repeatedly: } After that, sketches can be uploaded by just including 'checkForRemoteSketchUpdate();' as the first line in the setup. From [...] DUE boards special note This board can be programmed remotely, but the way it interacts with the Yún shield requires a specific procedure that it is initialized by the checkForRemoteSketchUpdate() function. As suggested by the name this instruction is responsible to check if there is a new sketch to upload on the board. This is required only on the Due because you need to erase the flash before uploading a new sketch. The same action is performed automatically when you upload a sketch using any of the USB ports. Check the example called RemoteDueBlink includedin the Bridge library (Example -> Bridge -> RemoteDueBlink), which introduces you on how to use the checkForRemoteSketchUpdate() function. You must first load such a sketch via USB and also remember that any remotely loaded sketch must have that instruction to maintain the remote upload functionality. In order to enable the remote upload feature you need to install the SAM core version 1.6.8 or greater. To ensure that remote upload works you need to power the DUE from the barrel jack or using the Native USB port.

## Features

- Powerful 32-bit CPU from ARM working at 3.3 Volts ,Onboard: 54 Digital I/O pins, 16 Analog Inputs, 4 UARTs, 2 DAC (Digital to Analog Converter), a CAN Bus port, and 2 TWI (I2C) Communication Ports
- Has two microUSB connectors: one for programming and serial communication, and the second one for faster USB native communication
- The Arduino Due has an efficient switching voltage regulator, it can host devices attaching a USB device to the micro-A usb connector, so the board will provide the power to the device.
- Expanded SPI Bus functionality: simultaneously communicate with multiple devices transmitting at different speeds, such as sensors or SD card readers.
- Due is compatible with Arduino shields that work at 3.3V

## Technical Specifications

| Specification | Value |
|---------------|-------|
| ASIN | B00A6C3JN2 |
| Best Sellers Rank | #57,376 in Computers ( See Top 100 in Computers ) #781 in Single-Board Computers |
| Brand | Arduino |
| Built-In Media | 1 x Arduino Due |
| CPU Model | core_m |
| CPU socket | BGA 1023 |
| Compatible Devices | Personal Computer |
| Compatible devices | Personal Computer |
| Country of Origin | Italy |
| Customer Reviews | 4.6 out of 5 stars 584 Reviews |
| Global Trade Identification Number | 07640152110498 |
| Item Dimensions L x W x H | 10.2L x 2.5W x 5.1H centimeters |
| Main Power Connector Type | 24-Pin |
| Manufacturer | Arduino |
| Memory Clock Speed | 84 MHz |
| Memory Slots Available | 1 |
| Memory Storage Capacity | 512 KB |
| Memory clock speed | 84 MHz |
| Mfr Part Number | A000062 |
| Model Name | Arduino Due |
| Model Number | A000062 |
| Platform | Android |
| Processor Socket | BGA 1023 |
| RAM Memory Technology | SRAM |
| Ram memory technology | SRAM |
| Smart Home Compatibility | Not Smart Home Compatible |
| System Bus Standard Supported | SATA 3 |
| Total Number of HDMI Ports | 1 |
| Total Usb Ports | 2 |
| UPC | 610098743989 |
| USB 2.0 | 2 |
| Unit Count | 1 Count |

## Product Details

- **Brand:** Arduino
- **CPU model:** core_m
- **Installed RAM memory size:** 96 KB
- **Memory storage capacity:** 512 KB
- **Model name:** Arduino Due

## Images

![Arduino Due [A000062] - Image 1](https://m.media-amazon.com/images/I/61qbd6n7sDL.jpg)

## Questions & Answers

**Q: Does it come with the connector cable?**
A: Not, it does not come with a cable (either USB or power).You only receive the Due board.

**Q: Hello... Its an original arduino?**
A: You see how it looks... If it looks like one, it will operate like one. I've used several Arduino boards. The first few I purchased, I made sure that they were from Italy in order to know how to compare those that may be made elsewhere. For the most part, if they are not exactly the same as the open source original, then they will use the word "compatible", which may have features on it that appeal to your project. The picture that I am looking at I have no compunction about recommending. It was manufactured to the open source spec, so I would not be concerned about origin. If you can pop one of these honeys for less than $20, you've done well. The Due has some limitations, however, unless your project is really into tight timing loops where every 12.5 nanoseconds are crucial, you'll not see the limitations. Someone will no-doubt bang on me about floating point, whatever....Go Forth Boldly.

**Q: is it a clone DUE board ??**
A: This is either a legitimate Arduino or a "they're going to get sued soon"-level knock off

**Q: Any tutorial on how to program it using atmel studio and atmel ice? i searched and couldn't find any info on the web and youtube.**
A: Hi Ali,Below are three tutorial links that can get you started using Atmel Studio for the Arduino Due.http://www.elecrom.com/program-arduino-due-atmel-studio/http://www.cloud-rocket.com/2014/05/programming-arduino-due-atmel-studio-asf/http://www.microdigitaled.com/AVR/Hardware/Arduino/UsingArduinoBoardsInAtmelStudio.pdf

## Customer Reviews

### ⭐⭐⭐⭐⭐ Guten Produkt für Fortgeschrittene
*by E***B on 6 January 2023*

Insgesamt ist es ein solides Arduino Board mit vielen Funktionen fürs schnelle Protoyping. Beispielsweise die beiden DAC Kanäle sind sehr vom Vorteil, wenn man analoge Schaltungen ansteuern möchte. Auch Funktionen, wie natives High-Speed USB, eine (relativ) hohe Taktfrequenz, mehrere Serielle Schnittstellen, usw. Somit ist es ein ideales Board für jeden Maker, Hobbyist, etc. im Bereich des Prototypenbaus. Jedoch ist der Preis sehr happig mit um die 42 Euro. Dafür gibt es schon von anderen Herstellern bessere Boards für kleineres Geld, welche dann bestimmte Funktionen des Due drauf haben. Der Due hat sie aber alle. Somit kann dieses Board ein absoluter Schatz im Prototypenbau sein, würde aber von einer Serienfertigung mit diesem Board abraten, da der Preis ja wie beschrieben doch etwas höher liegt...

### ⭐⭐⭐⭐⭐ Arduino Due + Arduino Yun shield: great combination!
*by J***P on 6 December 2016*

The Due from arduino.cc (the original Arduino group) has been discontinued, but Arduino.org (you can read up on the issues between the .cc and .org groups) made this Due board. That would be the only difference. The number of pins and amount of memory make this board especially useful. And as an added plus, it works with the Arduino Yun Shield (see the arduino.cc website) which allows the Due to communicate via Bridge.h to the Yun (which runs Linux and includes wifi and ethernet connectivity). Just add this to your Due sketch: #include <BridgeClient.h> // Arduino Due to Yun Shield communication BridgeClient client; You can also access Linux processes by including: #include <Process.h> which, for example, will allow the Due to get the current system date and time from the Yun. Over-the-air programming is the nicest feature of the Due-Yun combination which allows programs to be upload to the Due when it is connected to wifi. To enable this functionality, you first upload a sketch to the Due via USB with the setup() containing the line 'checkForRemoteSketchUpdate()' as shown below: void setup() { checkForRemoteSketchUpdate(); // use for Due when programming over Yun Shield } void loop() { // put your main code here, to run repeatedly: } After that, sketches can be uploaded by just including 'checkForRemoteSketchUpdate();' as the first line in the setup. From [...] DUE boards special note This board can be programmed remotely, but the way it interacts with the Yún shield requires a specific procedure that it is initialized by the checkForRemoteSketchUpdate() function. As suggested by the name this instruction is responsible to check if there is a new sketch to upload on the board. This is required only on the Due because you need to erase the flash before uploading a new sketch. The same action is performed automatically when you upload a sketch using any of the USB ports. Check the example called RemoteDueBlink includedin the Bridge library (Example -> Bridge -> RemoteDueBlink), which introduces you on how to use the checkForRemoteSketchUpdate() function. You must first load such a sketch via USB and also remember that any remotely loaded sketch must have that instruction to maintain the remote upload functionality. In order to enable the remote upload feature you need to install the SAM core version 1.6.8 or greater. To ensure that remote upload works you need to power the DUE from the barrel jack or using the Native USB port.

### ⭐⭐⭐⭐⭐ Fonctionne bien
*by D***. on 22 June 2015*

D'abord vous devrez installer l'Arduino IDE et télécharger le paquet pour supporter les contrôleur en SAM (donc celui-ci inclus). Il suffit ensuite de brancher l'arduino en micro/mini-usb et choisir l'arduino dans l'IDE (native ou programming port et le port COM). Fonctionne très bien, pléthore de pins comparés au raspberry pi. Il y a beaucoup plus de ressources que sur les modèles précédents même si cela ne reste pas glorieux (n'imaginez pas faire tourner linux ou autre dessus, pour cela il faut voir le yùn). Attention les pins ne supporteront pas plus de 3.3V, auquel cas vous risqueriez de détruire un pin voir le processeur entier.

## Frequently Bought Together

- Arduino Due with Headers [A000062] – 32-bit ARM Cortex-M3, 84MHz, 54 Digital I/O Pins, 12 Analog Inputs, 512KB Flash, USB Host, Pre-Soldered Headers, Compatible IDE for Advanced Projects
- ELEGOO 120pcs Multicolored Dupont Wire 40pin Male to Female, 40pin Male to Male, 40pin Female to Female Breadboard Jumper Ribbon Cables Kit Compatible with Arduino Projects
- DIN Rail Mount Pinout Breakout Terminal Block Module for Arduino MEGA-2560 R3 / Due

---

## Why Shop on Desertcart?

- 🛒 **Trusted by 1.3+ Million Shoppers** — Serving international shoppers since 2016
- 🌍 **Shop Globally** — Access 737+ million products across 21 categories
- 💰 **No Hidden Fees** — All customs, duties, and taxes included in the price
- 🔄 **15-Day Free Returns** — Hassle-free returns (30 days for PRO members)
- 🔒 **Secure Payments** — Trusted payment options with buyer protection
- ⭐ **TrustPilot Rated 4.5/5** — Based on 8,000+ happy customer reviews

**Shop now:** [https://www.desertcart.ni/products/272820300-arduino-due-a000062](https://www.desertcart.ni/products/272820300-arduino-due-a000062)

---

*Product available on Desertcart Nicaragua*
*Store origin: NI*
*Last updated: 2026-07-30*