

The Arduino UNO R4 Minima is a compact and versatile microcontroller board developed by Arduino. It is based on the Renesas RA4M1 microcontroller, offering enhanced performance and features compared to its predecessors. Designed for easy prototyping and development, the UNO R4 Minima is ideal for a wide range of applications, including IoT devices, robotics, home automation, and educational projects. Its compatibility with the Arduino IDE and extensive library support makes it beginner-friendly while still catering to advanced users.








| Specification | Details |
|---|---|
| Microcontroller | Renesas RA4M1 (Arm Cortex-M4, 48 MHz) |
| Operating Voltage | 5V |
| Input Voltage (VIN) | 6-24V |
| Digital I/O Pins | 14 (6 PWM outputs) |
| Analog Input Pins | 6 |
| Flash Memory | 256 KB |
| SRAM | 32 KB |
| Clock Speed | 48 MHz |
| USB Interface | USB-C (for programming and power supply) |
| Current per I/O Pin | 8 mA |
| Dimensions | 68.6 mm x 53.4 mm |
| Weight | 25 g |
| Pin | Type | Description |
|---|---|---|
| VIN | Power Input | External power input (6-24V). |
| 5V | Power Output | Regulated 5V output for powering external components. |
| GND | Ground | Ground connection. |
| Digital 0-13 | Digital I/O | General-purpose digital input/output pins. |
| PWM Pins | PWM Output | Pins 3, 5, 6, 9, 10, and 11 support PWM output. |
| Analog 0-5 | Analog Input | Analog input pins for reading sensor data (0-5V). |
| AREF | Analog Reference | Reference voltage for analog inputs. |
| RESET | Reset | Resets the microcontroller. |
| USB-C | USB Interface | Used for programming and power supply. |
Powering the Board:
Programming the Board:
Connecting Components:
The following example demonstrates how to blink an LED connected to digital pin 13.
// This code blinks an LED connected to pin 13 on the Arduino UNO R4 Minima.
// The LED will turn on for 1 second and off for 1 second in a loop.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
The board is not detected by the computer:
Code upload fails:
Components not working as expected:
The board overheats:
Can I use 3.3V sensors with the UNO R4 Minima?
Is the UNO R4 Minima compatible with shields designed for the UNO R3?
What is the maximum current the board can supply?
Can I use the Arduino UNO R4 Minima for battery-powered projects?
This documentation provides a comprehensive guide to using the Arduino UNO R4 Minima, ensuring users can maximize its potential for their projects.