![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](https://m.media-amazon.com/images/I/61qbd6n7sDL._AC_SL3840_.jpg)

Buy anything from 5,000+ international stores. One checkout price. No surprise fees. Join 2M+ shoppers on Desertcart.
Desertcart purchases this item on your behalf and handles shipping, customs, and support to OMAN.
🚀 Power your next-gen projects with the ultimate 32-bit microcontroller!
The Arduino Due is a high-performance 32-bit development board featuring an 84MHz ARM Cortex-M3 processor, 512KB flash memory, and 54 digital I/O pins alongside 12 analog inputs. It supports native USB host/device functionality and is fully compatible with the Arduino IDE, making it ideal for advanced embedded systems, real-time applications, and complex sensor networks.











| ASIN | B00A6C3JN2 |
| Best Sellers Rank | 48,500 in Computers & Accessories ( See Top 100 in Computers & Accessories ) 951 in Single-Board Computers & Accessories |
| Box Contents | 1 x Arduino Due |
| Brand | Arduino |
| Brand Name | Arduino |
| CPU Model | core_m |
| CPU model | core_m |
| CPU speed | 84 MHz |
| Compatible Devices | Personal Computer |
| Country of Origin | Italy |
| Customer Reviews | 4.5 out of 5 stars 586 Reviews |
| Global Trade Identification Number | 07640152110498 |
| Item Dimensions L x W x H | 10.2L x 5.1W x 2.5H centimetres |
| Manufacturer | Arduino |
| Manufacturer Part Number | A000062 |
| Memory Storage Capacity | 512 KB |
| Memory storage capacity | 512 KB |
| Model Name | Arduino Due |
| Model Number | A000062 |
| Model name | Arduino Due |
| Network Connectivity Technology | USB |
| Operating System | FreeRTOS |
| Processor Brand | Atmel |
| Processor Count | 1 |
| Processor Speed | 84 MHz |
| RAM Memory Installed | 0.09 GB |
| RAM Memory Technology | SRAM |
| RAM memory installed size | 0.09 GB |
| Smart Home Compatibility | Not Smart Home Compatible |
| Total USB Ports | 2 |
| UPC | 610098743989 |
| Unit Count | 1.0 count |
| Wireless Compability | Bluetooth |
V**R
This is the genuine Due at a good price.
This is the genuine Arduino Due made in Italy. It is a much more powerful microcontroller than the Mega (check the specs... it has 2 real D/A pins, lots of memory, and a Cortex CPU that is even capable of real-time FFT). On the other side it's also more delicate than the Mega. It's a 3.3V board and there is no overvoltage protection so if you connect 5V to any data pins then it'll likely brick the controller. The pins can only source 10-15mA current (check the pinout diagram, it differs pin by pin), so the usual trick of creating extra Vcc pins by pulling a data pin high is not going to work. You need to check your shields carefully before you connect. Almost all Adafruit shields (and faithful replicas) are Due compatible, but cheapo LCD shields that have buttons are feeding 5V back to the analog pins - don't use these. I'm using this to drive a sound-reactive NeoPixel plasma display and it's very fast and easy to program with Arduino IDE.
M**N
Fantastic
This is a great microcontroller. I have an Arduino Uno for components which use 5 volts and I can use this one for 3.3 volt devices (although you can use a logic level shifter). One unexpected feature is that it can produce true random numbers from within the processor (you can use a library to access this feature) which gives 32 random bits every 84 clock cycles. It has a 32 bit architecture and lots of input/output ports. I am very pleased with it but I think having a small amount of RAM holds it back a little considering that it is a 32 bit processor. There are numerous other features like a real time clock, temperature sensor etc which are detailed on the Arduino website. Overall, a marvellous product.
D**W
Value for money
Excellent value
A**O
Brilliant for many jobs but especially for CAN control
When used with SavvyCAN this is a superb piece of kit.
H**Z
Great buy :)
Great board. Can tell the difference in the quality of the pcb compared to non-original models. The due board is overall a very powerful board and is exactly what you need if you want to do multitasking with arduino.
D**Y
More up to date products compete with this
Purchased this as I wanted a 32 bit processsor, too many pins for my requirement and started to use far nicer teensy 3.2 32 bit Arduino compatible modules due to much smaller package
P**Y
Specification is not as advertised
The specification states: "a power jack, an ICSP header, a JTAG header, and a reset button" however no power jack or headers were soldered to the board. The pictures quite clearly show these items fitted.
N**.
Awesome!
Probably one of the best electronic board for hobyists. Super cheap and a lot of GPIOs and common digital functions. Ideal for rapid prototyping. I would buy tens of them easily
E**B
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...
J**P
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 <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.
D**.
Fonctionne bien
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.
V**.
Un bel “gioco didattico”
Preso “per sbaglio” (non avevo ancora capito la differenza tra il Due e il Mega) senza neppure conoscerne pregi, difetti, caratteristiche, funzioni… Arduino Due non è esattamente “compatibile” con le librerie utilizzate da Uno (Nano, Mega…) e in rete non è semplice trovare “la pappa pronta” (sempre non si chieda a ChatGPT :P ) e il fatto che i suoi pin supportino solo tensioni inferiori o uguali a 3,3volt (a differenza degli altri Arduino che accettano fino si 5volt) lo rende “meno compatibile” alle “periferiche” (shield) che si possono collegare. Prodotto ottimo per chi ha voglia di apprendere nuove cose e si accinga alla prototipazione di un suo progetto elettronico, meccanico, motive, di domotica… (siamo circondati ed utilizziamo ogni giorno un prodotto che contiene una scheda simil Arduino). Le potenzialità sono davvero incredibili soprattutto perché, essendo open source, crescono assieme alle persone che utilizzano questo sistema. Ogni scheda Arduino ha i suoi pregi e i suoi difetti ed è più o meno indicata per le proprie finalità (esattamente come accade per i computer). Contentissimo del mio acquisto arrivato nei tempi prestabiliti ed abbandonato sul vialetto di casa da un corriere troppo sbrigativo (poteva almeno suonare il campanello)
J**B
One board to rule them all...
It's the last Arduino board you'll ever need.
Trustpilot
5 days ago
2 months ago