The Arduino UNO Mini LE is a great little board that is very much like its dad: the good ol' UNO. It uses the same microcontroller, ATmega328P and the same USB-Serial Processor ATmega16U2, but differs in size and some other areas. Some notable differences are:
In this guide, we will go through some requirements, installation instructions, ideas for projects and some technical specifications. If you want to visit the official documentation for this board, you click on the link below:
The goal with this guide is to:
If you need help installing your UNO Mini LE board, you can follow any of the guides below. The board is based on the classic AVR core, which means the installation is identical to the Arduino UNO and other classic boards.
The UNO Mini LE can be programmed through the Classic Arduino IDE 1.8.X. To install your board, you can check out the guide below:
The UNO Mini LE can be programmed through the Arduino IDE 2. To install your board, you can check out the guide below:
The UNO Mini LE can be programmed through the Web Editor. To get started with your board, you will only need to install a plugin, which is explained in the guide below:
To test out your UNO Mini LE board, you can upload & run the Blink example. Inside any editor, navigate to:
File > Examples > 01.Basics > Blink
The code is also available from the snippet below. Upload the code to your board.
1void setup() {2 pinMode(LED_BUILTIN, OUTPUT);3}4
5void loop() {6 digitalWrite(LED_BUILTIN, HIGH);7 delay(1000);8 digitalWrite(LED_BUILTIN, LOW);9 delay(1000);10}
When the upload is finished, the built-in LED will turn on and off every one second.
In this section, we will explore some of the technical aspects of the UNO Mini LE, such as pinout, datasheet, schematics and external power sources.
These are also available from the official documentation for the UNO Mini LE board.
The pitch (distance between pin holes) is 0.05", or 1.27 mm. This is half the distance compared to the classic, regular sized UNO (0.1", 2.54 mm).
If you want a more detailed pinout, please refer to the UNO Mini LE Resources section in the documentation.
The UNO Mini LE has an in-depth datasheet that covers all of the technical aspects of the board. You can download from the resources section in the UNO Mini LE's documentation page.
The schematics for this board is available through an interactive viewer in the resources section of the UNO Mini LE's documentation page.
Unlike the classic UNO, the UNO Mini LE does not have a barrel jack plug. Although there are two pins dedicated for external power sources, such as batteries. Look for the VIN and GND pins at the corner of the board, and connect your power source (+ to VIN, - to GND).
Please not that the recommended range is 6-21 volts. Anything outside that range can damage your board.