The Mtiny Power module by Makerlabvn is a compact and efficient power source designed for low-power electronics projects. It is ideal for hobbyists, students, and professionals who require a reliable power supply for their devices or circuits. Common applications include powering microcontrollers, sensors, and small motors in projects such as DIY electronics, robotics, and portable gadgets.
Pin Number | Name | Description |
---|---|---|
1 | VIN | Input voltage (6V-12V DC) |
2 | GND | Ground connection |
3 | VOUT | Regulated 5V output |
4 | GND | Ground connection for output |
Connecting Power Input:
Accessing Regulated Power Output:
Mounting:
Module not powering on:
Output voltage is unstable or incorrect:
Module overheats:
Q: Can I use the Mtiny Power module to power an Arduino UNO? A: Yes, the Mtiny Power module can be used to power an Arduino UNO as it requires a 5V power supply.
Q: Is it possible to adjust the output voltage of the module? A: No, the Mtiny Power module provides a fixed 5V output.
Q: What should I do if the module stops working? A: Disconnect the module and check for any visible damage or incorrect wiring. If the issue persists, contact Makerlabvn support for assistance.
// No specific code is required for power supply modules like the Mtiny Power.
// However, below is an example of how to connect it to an Arduino UNO.
// Connect the Mtiny Power module to the Arduino UNO as follows:
// Mtiny Power VIN to external power source (6V-12V)
// Mtiny Power GND to external power source ground
// Mtiny Power VOUT to Arduino UNO 5V pin
// Mtiny Power GND to Arduino UNO GND pin
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);
}
// This simple blink code will run with the power supplied by the Mtiny Power module.
Note: The above code is a standard Arduino blink sketch and does not interact with the Mtiny Power module directly. It serves as an example of how an Arduino UNO can be powered using the Mtiny Power module.