The MB102 Breadboard Power Supply Module is a versatile and compact power solution designed by CorpCo for hobbyists, engineers, and students working on electronic projects and prototypes. This module is specifically created to fit standard solderless breadboards and provides both 3.3V and 5V regulated power outputs, which are commonly required voltages for digital and analog circuits. It is an essential tool for powering microcontrollers, sensors, and other electronic components during the prototyping phase.
Pin Number | Description | Voltage Level |
---|---|---|
1 | Ground (GND) | 0V |
2 | Output Voltage Select (VOUT) | 3.3V or 5V |
3 | Voltage Input (VIN) | 6.5V to 12V |
Q: Can I power the module using both USB and the barrel jack simultaneously?
A: No, you should only use one power input source at a time to prevent damage to the module.
Q: What is the maximum number of components I can power with this module?
A: This depends on the current draw of each component. Ensure the total current does not exceed 700mA when powered via USB and 1A when powered via the barrel jack.
Q: Is it possible to adjust the output voltage?
A: The output voltage is fixed and can be selected between 3.3V and 5V using the onboard switches.
// Example code to demonstrate the use of the MB102 with an Arduino UNO
void setup() {
// Set up the built-in LED pin as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// Turn the LED on (HIGH is the voltage level)
digitalWrite(LED_BUILTIN, HIGH);
// Wait for a second
delay(1000);
// Turn the LED off by making the voltage LOW
digitalWrite(LED_BUILTIN, LOW);
// Wait for a second
delay(1000);
}
This example code will blink the built-in LED on the Arduino UNO, which is powered by the MB102 module set to 5V. Ensure that the Arduino UNO's ground is connected to the MB102's ground and the 5V pin to the 5V output on the MB102.