

The POWERSUPPLY (Manufacturer: ME, Part ID: 2) is a versatile device designed to provide electrical energy to circuits. It converts AC or DC input voltage into the required voltage and current levels suitable for powering various electronic components and systems. This component is essential in ensuring stable and reliable operation of electronic devices by regulating and delivering the appropriate power.








| Parameter | Value |
|---|---|
| Input Voltage Range | 100-240V AC or 12-24V DC |
| Output Voltage Options | 3.3V, 5V, 12V DC (selectable) |
| Maximum Output Current | 2A |
| Efficiency | ≥85% |
| Ripple and Noise | ≤50mV |
| Operating Temperature | -10°C to 50°C |
| Dimensions | 50mm x 30mm x 20mm |
| Weight | 50g |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | AC_IN_L | Live input for AC voltage (100-240V AC) |
| 2 | AC_IN_N | Neutral input for AC voltage |
| 3 | DC_IN+ | Positive terminal for DC input (12-24V DC) |
| 4 | DC_IN- | Negative terminal for DC input |
| 5 | VOUT+ | Positive terminal for regulated DC output |
| 6 | VOUT- | Negative terminal for regulated DC output |
| 7 | GND | Ground connection for safety and shielding |
| 8 | SEL_VOLT | Voltage selection pin (connect to GND for 3.3V, leave open |
| for 5V, or connect to VOUT+ for 12V) |
AC_IN_L and the neutral wire to AC_IN_N.DC_IN+ and the negative terminal to DC_IN-.VOUT+ and the negative terminal to VOUT-.SEL_VOLT pin to select the desired output voltage:GND for 3.3V output.VOUT+ for 12V output.GND pin is properly connected to the circuit's ground for safety and noise reduction.SEL_VOLT pin configuration before powering the circuit to avoid incorrect voltage output.To power an Arduino UNO with 5V using the POWERSUPPLY:
VOUT+ pin to the Arduino's 5V pin.VOUT- pin to the Arduino's GND pin.SEL_VOLT pin unconnected to select the 5V output.// Example code to blink an LED using Arduino UNO powered by POWERSUPPLY
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
SEL_VOLT pin configuration for proper voltage selection.Overheating:
High Ripple or Noise:
GND pin.Incorrect Output Voltage:
SEL_VOLT pin configuration.Q: Can I use the POWERSUPPLY to charge a battery?
A: Yes, but ensure the battery's voltage and current requirements match the POWERSUPPLY's output specifications. Use a charge controller if necessary.
Q: What happens if I connect both AC and DC inputs simultaneously?
A: Do not connect both inputs simultaneously. Use either AC or DC input to avoid damage to the component.
Q: Can I use the POWERSUPPLY outdoors?
A: The POWERSUPPLY is not weatherproof. Use it in a dry, indoor environment or within a weatherproof enclosure.
Q: How do I know if the POWERSUPPLY is overloaded?
A: The device may shut down or overheat if overloaded. Reduce the load to within the specified 2A limit.