

The MB102 is a breadboard power supply module designed to provide a convenient and reliable power source for electronic circuits built on a breadboard. It is widely used in prototyping and development due to its simplicity and versatility. The module typically offers dual voltage outputs of 5V and 3.3V, making it compatible with a wide range of components, sensors, and microcontrollers.








Below are the key technical details of the MB102 breadboard power supply module:
| Parameter | Specification |
|---|---|
| Input Voltage | 6.5V to 12V (via DC barrel jack) or 5V (via USB) |
| Output Voltage | 3.3V and 5V (selectable via jumpers) |
| Output Current | Up to 700mA (depending on input source) |
| Power Input Options | DC barrel jack or USB connector |
| Dimensions | 5.3cm x 3.5cm x 1.5cm |
| Compatibility | Standard 400-point and 830-point breadboards |
The MB102 module does not have traditional pins but instead connects directly to the power rails of a breadboard. Below is a description of its key components:
| Component | Description |
|---|---|
| DC Barrel Jack | Accepts 6.5V to 12V input for powering the module. |
| USB Connector | Provides an alternative 5V input source. |
| Voltage Selection Jumpers | Allows selection between 3.3V and 5V for each power rail. |
| Power Rails | Outputs regulated 3.3V or 5V to the breadboard's power rails. |
| Power Switch | Turns the module on or off. |
| LED Indicator | Lights up when the module is powered on. |
Connect the Module to a Breadboard:
Provide Power to the Module:
Select the Desired Output Voltage:
Power On the Module:
Connect Your Circuit:
The MB102 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 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:
LED Indicator Not Lit:
Q: Can I use the MB102 to power a Raspberry Pi?
A: The MB102 is not recommended for powering a Raspberry Pi, as it may not provide sufficient current for stable operation. Use a dedicated power supply for the Raspberry Pi.
Q: Can I use both the USB and DC barrel jack inputs simultaneously?
A: No, only one input source should be used at a time to avoid damaging the module.
Q: What is the maximum current the MB102 can supply?
A: The module can supply up to 700mA, but this depends on the input source and load conditions.
Q: Is the MB102 compatible with all breadboards?
A: The MB102 is designed for standard 400-point and 830-point breadboards. Ensure your breadboard is compatible before use.