The Mini AC-DC 110V-230V to 5V 700mA Converter Module by PermanentFly is a compact power supply module that converts high-voltage AC power to a low-voltage 5V DC output. This module is ideal for powering 5V DC electronics from a standard AC power supply and is commonly used in DIY projects, IoT devices, and small household electronics.
Pin Number | Description | Notes |
---|---|---|
1 | AC Input (L) | Connect to live wire of AC input |
2 | AC Input (N) | Connect to neutral wire of AC input |
3 | DC Output (+5V) | Positive output terminal |
4 | DC Output (GND) | Ground output terminal |
AC Input Connection:
DC Output Connection:
Q: Can I use this module to power a USB device? A: Yes, as long as the device operates at 5V and requires less than 700mA.
Q: Is this module isolated? A: Yes, it has an isolation voltage of over 1000V, but always handle with care.
Q: Can I connect multiple devices to this module? A: Yes, multiple devices can be connected as long as their combined current draw does not exceed 700mA.
// This example demonstrates how to power an Arduino UNO using the Mini AC-DC Converter Module.
void setup() {
// Initialize the digital pin as an output.
pinMode(LED_BUILTIN, OUTPUT); // Most Arduinos have an on-board LED on pin 13
}
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: The above code does not interact with the power module directly.
// It assumes that the Arduino is being powered by the 5V output from the module.
Remember to follow all safety precautions when working with AC mains power. This documentation is provided for informational purposes only, and it is the user's responsibility to ensure safe and proper use of the equipment.