

The Breadboard Power Supply Breakout is a compact and versatile module designed to provide regulated power to breadboards during prototyping and development. It is based on the AMS1117 voltage regulator and offers multiple output voltage options, typically 5V and 3.3V. This module connects directly to the power rails of a standard breadboard, making it an essential tool for hobbyists, students, and engineers working on electronic projects.








The Breadboard Power Supply Breakout is built around the AMS1117 voltage regulator and provides the following key specifications:
| Parameter | Value |
|---|---|
| Input Voltage Range | 6.5V to 12V DC |
| Output Voltage Options | 5V and 3.3V |
| Maximum Output Current | 800mA (depending on input voltage) |
| Power Input Options | DC barrel jack or USB connector |
| Output Interface | Standard breadboard power rails |
| Dimensions | 5.3cm x 3.5cm x 1.5cm |
The module has several key pins and connectors for input and output:
| Pin/Connector | Description |
|---|---|
| DC Barrel Jack | Accepts 6.5V to 12V DC input for powering the module. |
| USB Connector | Alternative input option for powering the module via a USB cable. |
| 5V Output Pin | Provides regulated 5V output to the breadboard power rail. |
| 3.3V Output Pin | Provides regulated 3.3V output to the breadboard power rail. |
| Power Switch | Toggles the power supply on or off. |
| Jumper Selectors | Allows selection between 5V and 3.3V output for each power rail. |
| GND Pins | Ground connections for the breadboard power rails. |
Connect the Power Supply:
Set the Output Voltage:
Power On the Module:
Connect Your Circuit:
The Breadboard Power Supply Breakout can be used to power an Arduino UNO via the breadboard. Below is an example of how to blink an LED using the module:
// Blink an LED connected to pin 13 of the Arduino UNO
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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 Not Powering On:
No Output Voltage:
Overheating:
LED Not Lighting Up:
Q: Can I use this module to power a Raspberry Pi?
A: No, the module cannot supply sufficient current for a Raspberry Pi. It is better suited for low-power devices like microcontrollers and sensors.
Q: Can I use both 5V and 3.3V outputs simultaneously?
A: Yes, you can configure one power rail for 5V and the other for 3.3V using the jumpers.
Q: What happens if I exceed the input voltage range?
A: Exceeding the input voltage range may damage the AMS1117 regulator and render the module unusable. Always use a regulated power source within the specified range.
Q: Is the module compatible with all breadboards?
A: The module is designed for standard breadboards with 2 power rails on each side. Ensure your breadboard matches this configuration.