The ProtoSnap - Pro Mini is a versatile and compact prototyping platform that incorporates an Arduino Pro Mini at its heart. It is designed for hobbyists, educators, and developers to rapidly prototype and test Arduino-based projects. The board's layout facilitates easy snapping of components and modules, making it an ideal choice for experimenting without the need for soldering.
Pin Number | Function | Description |
---|---|---|
1 | RESET | Used to reset the microcontroller |
2-13 | Digital Pins | Digital input/output, PWM output on pins 3, 5, 6, 9, 10, 11 |
14-19 | Analog Pins | Analog input pins A0-A5 |
20 | AREF | Analog reference voltage for the ADC |
21 | GND | Ground |
22 | RST | Reset pin, active low |
23 | VCC | Positive supply voltage for the microcontroller |
24 | GND | Ground |
25 | Raw | Raw input voltage for the onboard voltage regulator |
Powering the ProtoSnap - Pro Mini:
Programming the ProtoSnap - Pro Mini:
Connecting I/O Devices:
Q: Can I use the ProtoSnap - Pro Mini at 5V and 3.3V? A: The ProtoSnap - Pro Mini comes in two variants, one for 3.3V and one for 5V. Choose the appropriate model for your project's voltage requirements.
Q: How do I connect the ProtoSnap - Pro Mini to my computer? A: Use an FTDI breakout or similar USB-to-serial converter to connect the board to your computer for programming.
Q: What is the maximum current the ProtoSnap - Pro Mini can handle? A: The board can handle up to 40 mA per I/O pin, but the total current should not exceed the capacity of the power supply and voltage regulator.
// Blink the onboard LED connected to pin 13
void setup() {
pinMode(13, OUTPUT); // Initialize pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn on the LED
delay(1000); // Wait for a second
digitalWrite(13, LOW); // Turn off the LED
delay(1000); // Wait for a second
}
Note: The example code provided is for the Arduino UNO, which is compatible with the Arduino Pro Mini. Make sure to select the correct board (Arduino Pro Mini) in the Arduino IDE when uploading to the ProtoSnap - Pro Mini.