The ProtoSnap - Pro Mini - Pro Mini Board is a versatile and compact prototyping platform that incorporates an Arduino Pro Mini. This board is ideal for hobbyists, educators, and professionals who need a quick and efficient way to develop and test their Arduino-based projects. Its small form factor makes it suitable for portable applications, wearable technology, and embedded systems.
Pin Number | Function | Description |
---|---|---|
1 | RESET | Used to reset the microcontroller |
2-13 | Digital Pins | Digital input/output pins, PWM on 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 pin |
22 | RST | Reset pin, active low |
23 | VCC | Positive supply voltage for the microcontroller |
24 | GND | Ground pin |
25 | RAW | Raw input voltage for onboard regulator |
// Blink an LED connected to pin 13 of the ProtoSnap - Pro Mini
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
}
Q: Can I power the ProtoSnap - Pro Mini with a battery? A: Yes, you can power it with a battery connected to the RAW and GND pins, provided the battery voltage is within the 7-12V range.
Q: How do I connect sensors to the board? A: Sensors can be connected to the digital or analog pins, depending on their output type. Make sure to configure the pins correctly in your sketch.
Q: What should I do if I accidentally connect the power supply to the wrong pins? A: Disconnect the power immediately and check the board for any signs of damage. If the board does not function correctly afterward, it may be damaged beyond repair.
For further assistance, consult the community forums or the manufacturer's support resources.