The MB102 Breadboard Power Supply Module is a versatile and compact power solution designed for electronic hobbyists and professionals alike. This module is commonly used to provide both 3.3V and 5V DC power to breadboard-based prototype circuits, making it an essential tool for developing microcontroller projects, testing circuits, and educational purposes.
Pin Number | Description | Voltage Level |
---|---|---|
1 | Ground (GND) | 0V |
2 | Output Voltage Select (VOUT) | 3.3V or 5V |
3 | Input Voltage (VIN) | 6.5V to 12V |
// 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 for testing
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// Turn the LED on for one second
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
// Turn the LED off for one second
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
// This will create a blinking effect using the power from the MB102 module
}
Note: The above code assumes that the MB102 module is correctly set up and providing power to the Arduino UNO. Ensure that the voltage selection jumper on the MB102 is set to 5V when powering the Arduino UNO.
Remember to always double-check your connections and adhere to the best practices mentioned in the usage instructions to ensure a safe and successful project.