The Breadboard Power Module is an essential tool for hobbyists, students, and professionals working on electronic prototyping and testing. This device is designed to supply power to a breadboard circuit, offering both 3.3V and 5V output voltages, which are common requirements for a wide range of electronic components and microcontrollers. Its ease of use and versatility make it a staple in electronic labs and workshops.
Pin Number | Description | Voltage/Signal |
---|---|---|
1 | Ground (GND) | 0V |
2 | Output Voltage (Vout) | 3.3V or 5V |
3 | Voltage Selector (VS) | Selects Vout |
4 | Input Voltage (Vin) | 6.5V to 12V DC |
Q: Can I use this module to power an Arduino UNO? A: Yes, you can set the output to 5V to power an Arduino UNO through its 5V pin.
Q: What should I do if the module is not supplying enough current? A: Ensure that the power supply connected to the input can provide enough current. If the issue persists, the module may be faulty.
Q: Is it possible to get both 3.3V and 5V at the same time? A: No, the voltage selector allows for only one output voltage at a time.
// This example demonstrates how to power an Arduino UNO using the Breadboard Power Module.
void setup() {
// Initialize the digital pin as an output.
pinMode(LED_BUILTIN, OUTPUT); // Most Arduino boards have an on-board LED
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED on
delay(1000); // Wait for a second
digitalWrite(LED_BUILTIN, LOW); // Turn the LED off
delay(1000); // Wait for a second
}
// Note: Connect the 5V and GND outputs from the Breadboard Power Module
// to the 5V and GND pins on the Arduino UNO, respectively.
Remember to ensure that the voltage selector on the power module is set to 5V before connecting it to the Arduino UNO.