---
product_id: 1955474
title: "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 with Arduino IDE for Advanced Projects"
brand: "arduino org"
price: "£52.12"
currency: GBP
in_stock: true
reviews_count: 13
category: "Arduino Org"
url: https://www.desertcart.co.uk/products/1955474-arduino-due-with-headers-a000062-32-bit-arm-cortex-m3
store_origin: GB
region: United Kingdom
---

# 4x1x2 in 2.08 oz Made in Italy 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 with Arduino IDE for Advanced Projects

**Brand:** arduino org
**Price:** £52.12
**Availability:** ✅ In Stock

## Summary

> 🚀 Elevate Your Projects with Arduino Due!

## Quick Answers

- **What is this?** 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 with Arduino IDE for Advanced Projects by arduino org
- **How much does it cost?** £52.12 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.co.uk](https://www.desertcart.co.uk/products/1955474-arduino-due-with-headers-a000062-32-bit-arm-cortex-m3)

## Best For

- arduino org enthusiasts

## Why This Product

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

## Key Features

- • **Global Quality:** Crafted in Italy, ensuring top-notch engineering!
- • **Future-Ready Tech:** Stay ahead with a product that’s not going anywhere!
- • **Compact Powerhouse:** Perfectly sized for any workspace or project!
- • **Lightweight Innovation:** Weighs in at just 2.08 ounces for ultimate portability!
- • **Unleash Your Creativity:** Empower your projects with the versatile Arduino Due!

## Overview

The Arduino Due with Headers (A000062) is a powerful microcontroller board designed for advanced projects. Measuring 4 x 1 x 2 inches and weighing only 2.08 ounces, it combines portability with performance. Manufactured in Italy, this board is a staple for innovators and creators, ensuring you stay at the forefront of technology.

## 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.” MOST POPULAR OF CLASSICS 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: 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.
Review: Works Perfectly - A real Arduino, no clone. I obtained this for a project that employs several external 3.3V sensors. The Due is native 3.3V, so a number of bidirectional level converters that were required for a Mega 2650 were eliminated. The board is fully supported by the Arduino IDE with no surprises. Recommended if one is locked into 3.3V peripherals.

## Features

- High-Performance 32-bit ARM Cortex-M3 Processor: Powered by the Atmel SAM3X8E microcontroller with a 32-bit ARM Cortex-M3 core running at 84 MHz, providing superior processing power for demanding applications.
- Large Memory for Complex Applications: Equipped with 512KB of flash memory and 96KB SRAM, allowing for large, memory-intensive projects such as data logging, signal processing, and real-time systems.
- 54 Digital I/O Pins & 12 Analog Inputs: Offers an extensive I/O range with 54 digital pins (12 of which can be used as PWM outputs), 12 analog inputs with 12-bit resolution, and 4 hardware serial ports, making it ideal for complex sensor networks and embedded systems.
- Native USB Host and Device Support: Supports both USB Host and USB Device functionality, enabling the connection of external USB peripherals (e.g., USB keyboards, mice, and storage devices) and allowing the Due to act as a USB device.
- Full Compatibility with Arduino IDE: Fully compatible with the Arduino IDE, providing easy access to libraries, examples, and community-driven projects, enabling rapid development and prototyping for advanced embedded systems.

## Technical Specifications

| Specification | Value |
|---------------|-------|
| ASIN | B00A6C3JN2 |
| Best Sellers Rank | #464 in Single Board Computers (Computers & Accessories) |
| Brand | Arduino Org |
| Built-In Media | microprocessor |
| Compatible Devices | Personal Computer |
| Connectivity Technology | USB |
| Customer Reviews | 4.6 out of 5 stars 602 Reviews |
| Global Trade Identification Number | 07640152110498 |
| Included Components | microprocessor |
| Item Dimensions L x W x H | 4"L x 2"W x 1"H |
| Manufacturer | Arduino |
| Memory Storage Capacity | 512 KB |
| Mfr Part Number | A000062 |
| Model Name | Arduino Due |
| Model Number | A000062 |
| Operating System | Windows, macOS, Linux |
| Processor Brand | Atmel |
| Processor Count | 1 |
| RAM Memory Installed | 0.09 GB |
| RAM Memory Technology | SRAM |
| Ram Memory Installed Size | 0.09 GB |
| Total Usb Ports | 2 |
| UPC | 610098743989 |
| Unit Count | 1 Count |
| Warranty Description | as described on the official website |
| Wireless Compability | Bluetooth |

## Product Details

- **Brand:** Arduino Org
- **Connectivity Technology:** USB
- **Memory Storage Capacity:** 512 KB
- **Model Name:** Arduino Due
- **Ram Memory Installed Size:** 0.09 GB

## Images

![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 with Arduino IDE for Advanced Projects - 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

### ⭐⭐⭐⭐⭐ Arduino Due + Arduino Yun shield: great combination!
*by J***P on December 6, 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.

### ⭐⭐⭐⭐⭐ Works Perfectly
*by K***A on April 14, 2025*

A real Arduino, no clone. I obtained this for a project that employs several external 3.3V sensors. The Due is native 3.3V, so a number of bidirectional level converters that were required for a Mega 2650 were eliminated. The board is fully supported by the Arduino IDE with no surprises. Recommended if one is locked into 3.3V peripherals.

### ⭐⭐⭐⭐⭐ Awesome! Bought this for UDemy RTOS Class
*by T***) on March 4, 2017*

This is a great ATSAM-based Arduino board! I bought this for the UDemy online class: "Mastering RTOS: Hands on with FreeRTOS, Arduino and STM32Fx". I've wanted to learn more about embedded real-time operating systems and this is a great, low-cost way to do just that! This board does not come with an embedded hardware debugger like some other boards (e.g. STM32F4xx based Nucleo-F446RE boards used in class such as STMICROELECTRONICS NUCLEO-F410RB DEV BOARD, STM32F410RB NUCLEO-64 MCU or NUCLEO-F446RE with MCU STM32F446RET6 supports Arduino STM32 Nucleo mbed development board integrates ST-LINK/V2-1 @XYG-Study ) so for hardware debugging something like SEGGER - 8.08.90 J-LINK EDU - JTAG EMULATOR, J-LINK, EDU, USB or In-Circuit Debuggers Atmel-ICE debugger with accessories will be needed. Note that the JTAG connector on this Due is the tiny 0.05" spacing connector! (and as far as I know, only the Atmel ICE kit has this size, most others use the 2.54 mm standard connectors). As far as I can tell, this is a "genuine", made-in-Italy, arduino.org board from the great folks at mp3car store (I'm really glad .cc and .org worked out their differences!). The box came with the little Arduino hologram on the back. The board itself is really quite nice: Well soldered, clean and crisp silkscreen printing, and as a completely unexpected bonus, arrived with a nice little protective "half-case" base to keep it protected below. So ya, I paid a few bucks more to buy this original: in part to support the Arduino efforts, but also to get an exacting board with no quirks. If you've ever had JTAG problems, you know what I mean. I'm completely happy with this Due and would definitely recommend it!

## 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.co.uk/products/1955474-arduino-due-with-headers-a000062-32-bit-arm-cortex-m3](https://www.desertcart.co.uk/products/1955474-arduino-due-with-headers-a000062-32-bit-arm-cortex-m3)

---

*Product available on Desertcart United Kingdom*
*Store origin: GB*
*Last updated: 2026-05-19*