The Arduino Pro Mini v13 is a compact microcontroller board based on the ATmega328P, which is the same microcontroller used in the popular Arduino Uno. It is designed for advanced users who require a small, lightweight, and low-power board for embedded projects. The Pro Mini is ideal for applications where space is at a premium, such as wearable technology, portable instruments, and custom embedded systems.
Pin Number | Function | Description |
---|---|---|
1 | RESET | Used to reset the microcontroller |
2-3 | D0 (RX), D1 (TX) | Serial communication pins |
4-9 | D2-D7 | Digital pins, D3/D5/D6 provide PWM output |
10-15 | D8-D13 | Digital pins, D9/D10/D11 provide PWM output |
16-21 | A0-A5 | Analog input pins or digital I/O |
22 | AREF | Analog reference voltage for ADC |
23-26 | GND | Ground pins |
27-28 | RAW, VCC | RAW: Unregulated input voltage, VCC: Regulated operating voltage |
// Blink an LED connected to pin 13
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for a second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for a second
}
Note: The above code is for demonstration purposes and assumes an LED is connected to pin 13 with a suitable current-limiting resistor.
For more advanced usage and additional examples, refer to the Arduino community forums and the extensive library of shared projects available online.