This is a retired product.
The Arduino Mini is a small microcontroller board originally based on the ATmega328P intended for use on breadboards and when space is at a premium. Because of its small size, connecting the Arduino Mini is a bit more complicated than a regular Arduino board (see below for instructions and photos).
The Arduino Mini is programmed using the Arduino Software (IDE), our Integrated Development Environment common to all our boards and running both online and offline. For more information on how to get started with the Arduino Software visit the Getting Started page.
On this page... (hide)
All Arduino and Genuino boards, including this one, work out-of-the-box on the Arduino Web Editor, no need to install anything.
The Arduino Web Editor is hosted online, therefore it will always be up-to-date with the latest features and support for all boards. Follow this simple guide to start coding on the browser and upload your sketches onto your board.
If you want to program your Arduino Mini while offline you need to install the Arduino Desktop IDE
Open the LED blink example sketch: File > Examples >01.Basics > Blink.
You'll need to select the entry in the Tools > Board menu that corresponds to your Micro board. The port will be the one corresponding to the USB to Serial you are using to interface the board.
To upload the sketch to the Arduino Mini, you also need to press the reset button on the board immediately before pressing the upload button in the Arduino environment.
Click the Upload button in the upper left to load and run the sketch on your board:
Wait a few seconds - you should see the RX and TX leds on the board flashing. If the upload is successful, the message "Done uploading." will appear in the status bar.
The Arduino Micro doesn't have a built-in LED, therefore the Blink sketch needs a LED connected between D13 and GND to show its effects. A resistor is already mounted on that I/O to protect the microcontroller from overcurrents.
See this tutorial for a generic guide on the Arduino IDE with a few more infos on the Preferences, the Board Manager, and the Library Manager.
Now that you have set up and programmed your Arduino Mini board, you may find inspiration in our Project Hub tutorial platform.
The microcontroller (an ATmega328P) on the Arduino Mini is a physically smaller version of the chip on the USB Arduino boards, with the following small difference:
Also, the Arduino Mini is more fragile and easy to break than a regular Arduino board.
Here's a diagram of the pin layout of the Arduino Mini:
Mini 03 pinout (compatible with earlier revisions) |
Mini 04 and 05 pinout (the ground on the left has moved down one pin) |
To use the Arduino Mini, you need to connect:
You have a few options for connecting the board: the Mini USB Adapter, a regular Arduino board, or your own power supply and USB/Serial adapter.
The circuit shown here is the basic setup for an Arduino mini connected to a USB-to-serial converter. You can see power and ground from the USB are run to the rails of the breadboard so it's convenient for the other components on the board. The 0.1uF capacitor from the reset pin is connected to the RTS pin on the mini USB adaptor. This enables auto-reset when the serial port is opened, meaning you don't have to press the reset button every time you upload new code. If it gives you problems, you can remove it, and press reset every time.
You can use a USBSerial connector wired up in a similar fashion :
Here's a photo of the Arduino Mini connected to an Arduino NG. The NG has its ATmega8 removed and is being used for its USB connection, power source, and reset button. Thus, you can reset the Arduino Mini just by pressing the button on the NG.
Last revision 2018/02/10 by SM
The text of the Arduino getting started guide is licensed under a
Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the guide are released into the public domain.