The MKE-M12 5VDC 5A Power Supply Module is a compact and efficient solution for providing a stable 5V DC power supply to electronic devices and circuits. With its capability to deliver up to 5A of current, it is ideal for powering a wide range of applications, including microcontrollers like Arduino, Raspberry Pi, sensors, and small motors.
Pin Number | Description | Notes |
---|---|---|
1 | V_IN | Input voltage (7V-12V DC) |
2 | GND | Ground |
3 | V_OUT | Regulated 5V output |
4 | GND | Ground for the output |
Connecting Input Power:
Drawing Power:
Q: Can I use this module to power multiple devices? A: Yes, as long as the combined current draw does not exceed 5A.
Q: Is this module protected against reverse polarity? A: No, always double-check connections to prevent damage from reverse polarity.
Q: Can I adjust the output voltage? A: The output voltage is fixed at 5V and cannot be adjusted.
// Example code to demonstrate how to power an Arduino UNO with the MKE-M12 module
void setup() {
// Initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// Turn the LED on (HIGH is the voltage level)
digitalWrite(LED_BUILTIN, HIGH);
// Wait for a second
delay(1000);
// Turn the LED off by making the voltage LOW
digitalWrite(LED_BUILTIN, LOW);
// Wait for a second
delay(1000);
}
Note: This code is a simple blink example. The Arduino UNO is powered by the MKE-M12 module connected as described in the Usage Instructions section. The module provides a stable 5V which is essential for the reliable operation of the microcontroller.