

The MB102 Breadboard Power Supply Module by CorpCo (Part ID: Uno) is a compact and versatile power supply solution designed specifically for breadboards. It provides stable output voltages of 3.3V and 5V, making it ideal for powering a wide range of electronic projects and components. This module is particularly useful for prototyping and development, as it eliminates the need for external power supplies or complex wiring.








The MB102 Breadboard Power Supply Module is designed to fit standard breadboards and offers the following technical features:
| Parameter | Specification |
|---|---|
| Input Voltage | 6.5V to 12V (via DC barrel jack) |
| USB Input Voltage | 5V (via USB Type-A port) |
| Output Voltage Options | 3.3V, 5V |
| Maximum Output Current | 700mA (per rail) |
| Dimensions | 53mm x 35mm x 20mm |
| Power Indicator | LED (indicates power status) |
The module has several key pins and connectors for input and output. Below is a detailed description:
| Pin/Connector | Description |
|---|---|
| DC Barrel Jack | Accepts 6.5V to 12V input for powering the module. |
| USB Type-A Port | Accepts 5V input as an alternative power source. |
| Breadboard Pins (VCC) | Outputs 3.3V or 5V to the breadboard power rails (selectable via jumpers). |
| Breadboard Pins (GND) | Provides ground connection to the breadboard. |
| Voltage Selection Jumper | Allows switching between 3.3V and 5V output for each power rail. |
| Power Switch | Turns the module ON or OFF. |
| LED Indicator | Lights up when the module is powered. |
Connect the Power Source:
Insert the Module into the Breadboard:
Set the Output Voltage:
Power On the Module:
Connect Your Circuit:
The MB102 module can be used to power an Arduino UNO via the breadboard. Below is an example of how to connect and use it:
Here is a simple Arduino code example to blink an LED using the MB102 module as the power source:
// Simple LED Blink Example
// Connect an LED to pin 13 of the Arduino UNO with a 220-ohm resistor.
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
}
Module Does Not Power On:
Incorrect Output Voltage:
Overheating:
No Power to Breadboard:
Q: Can I use both the DC barrel jack and USB input simultaneously?
A: No, only one power source should be connected at a time to avoid damage.
Q: What happens if I exceed the maximum current rating?
A: The module may overheat or shut down. Prolonged overcurrent conditions can damage the module.
Q: Can I use this module with a Raspberry Pi?
A: The MB102 module can power a Raspberry Pi Pico, but it is not recommended for full-sized Raspberry Pi boards due to their higher current requirements.
Q: Is the module compatible with all breadboards?
A: The MB102 module is designed for standard breadboards. Ensure your breadboard has compatible power rail spacing.
By following this documentation, you can effectively use the MB102 Breadboard Power Supply Module for your electronic projects.