Stufin
Home Quick Cart Profile

12V 2A SMPS

Buy Now on Stufin

Component Name

12V 2A SMPS (Switch Mode Power Supply)

Overview

The 12V 2A SMPS is a high-efficiency, compact, and reliable power supply module designed to provide a stable 12V DC output with a maximum current rating of 2A. This switch mode power supply is suitable for a wide range of applications, including IoT devices, robotics, automation systems, and other electronic projects that require a safe and efficient power supply.

Functionality

The primary function of the 12V 2A SMPS is to convert AC mains voltage (100-240V) to a regulated 12V DC output. The module uses advanced switch-mode technology to achieve high efficiency, reducing energy losses and heat generation. This results in a compact and lightweight design, making it ideal for applications where space is limited.

Key Features

  • Input Voltage Range: 100-240V AC, 50/60Hz
  • Output Voltage: 12V DC 5%
  • Output Current: 2A maximum
  • Efficiency: Up to 85% under full load conditions
  • Overcurrent Protection: Built-in overcurrent protection to prevent damage from excessive load currents
  • Short-Circuit Protection: Automatic recovery from short-circuit conditions
  • Overvoltage Protection: Protection against output voltage exceeding the rated value
  • Undervoltage Protection: Protection against output voltage dropping below the rated value
  • EMI Filter: Built-in electromagnetic interference (EMI) filter to minimize electromagnetic radiation
  • Safety Certifications: Meets international safety standards, including UL, CE, and RoHS
  • Compact Design: Small form factor with a dimensions of (LxWxH) 51.5mm x 27.5mm x 24.5mm
  • Mounting Options: Through-hole mounting pins for easy installation

Technical Specifications

Input Characteristics

+ Input Voltage100-240V AC
+ Input Frequency50/60Hz
+ Input Current0.5A maximum

Output Characteristics

+ Output Voltage12V DC 5%
+ Output Current2A maximum
+ Output Power24W maximum

Efficiency

+ Full Load EfficiencyUp to 85%
+ Typical Efficiency83% at 115V AC input and 12V output

Protection Features

+ Overcurrent ProtectionAuto-recovery from overload conditions
+ Short-Circuit ProtectionAuto-recovery from short-circuit conditions
+ Overvoltage ProtectionOutput voltage limited to 13.5V maximum
+ Undervoltage ProtectionOutput voltage limited to 10.5V minimum

Environmental Characteristics

+ Operating Temperature-20C to 70C
+ Storage Temperature-40C to 80C
+ Humidity20-90% RH

Applications

The 12V 2A SMPS is suitable for a wide range of applications, including

IoT devices and sensors

Robotics and automation systems

LED lighting systems

Industrial control systems

Medical devices

Audio and video equipment

Advertising displays and signage

Conclusion

The 12V 2A SMPS is a reliable and efficient power supply module designed for a variety of applications. Its compact design, high efficiency, and built-in protection features make it an ideal choice for designers and engineers looking for a robust and safe power supply solution.

Pin Configuration

  • Component Name: 12V 2A SMPS (Switch-Mode Power Supply)
  • Pinout Explanation:
  • The 12V 2A SMPS module has a total of 5 pins, which are used for input, output, and control functions. Here's a detailed explanation of each pin:
  • 1. VIN (Input Voltage Pin)
  • Function: Input voltage pin for the SMPS module.
  • Description: This pin is used to supply the input voltage to the SMPS module, which is typically between 100V to 240V AC (alternating current).
  • 2. GND (Ground Pin)
  • Function: Ground pin for the SMPS module.
  • Description: This pin provides a common ground reference for the SMPS module and is used to connect to the chassis or grounding point of the system.
  • 3. VOUT (Output Voltage Pin)
  • Function: Output voltage pin of the SMPS module.
  • Description: This pin provides the regulated 12V DC (direct current) output voltage from the SMPS module, with a maximum current capacity of 2A.
  • 4. GND (Output Ground Pin)
  • Function: Ground pin for the output stage of the SMPS module.
  • Description: This pin provides a local ground reference for the output stage of the SMPS module and should be connected to the ground point of the load or system being powered.
  • 5. NC (No Connection Pin)
  • Function: No connection pin.
  • Description: This pin is not connected internally and should be left unconnected.
  • Connection Structure:
  • To connect the 12V 2A SMPS module, follow these steps:
  • Step 1: Input Connection
  • Connect the input voltage (100V to 240V AC) to the VIN pin.
  • Connect the input ground to the GND pin.
  • Step 2: Output Connection
  • Connect the regulated 12V DC output voltage from the VOUT pin to the load or system being powered.
  • Connect the output ground from the load or system being powered to the GND (Output Ground) pin.
  • Important Notes:
  • Ensure proper insulation and clearance between the input and output pins to prevent electrical shock or damage.
  • Follow proper safety precautions when working with electrical circuits.
  • Refer to the SMPS module's datasheet or manufacturer's documentation for specific connection guidelines and safety precautions.
  • By following the above pinout explanation and connection structure, you can successfully connect and use the 12V 2A SMPS module in your IoT or electrical project.

Code Examples

12V 2A SMPS Documentation
Overview
The 12V 2A SMPS (Switch-Mode Power Supply) is a compact and efficient power supply module designed to provide a stable 12V output with a maximum current of 2A. This module is ideal for powering small to medium-sized IoT projects, robotic systems, and other electrical devices that require a reliable 12V power source.
Specifications
Input Voltage: 85-265V AC, 100-370V DC
 Output Voltage: 12V DC
 Output Current: 2A
 Efficiency: up to 85%
 Operating Temperature: -40C to 85C
 Dimensions: 51mm x 33mm x 20mm
Connecting the 12V 2A SMPS
The 12V 2A SMPS module has the following connections:
AC Input: 2-pin terminal block (L, N)
 DC Output: 2-pin terminal block (V+, V-)
Code Examples
### Example 1: Powering an Arduino Project
In this example, we will use the 12V 2A SMPS to power an Arduino Uno board and a few peripherals.
```c
// No code is required for this example, as the 12V 2A SMPS provides a stable power source
// for the Arduino board and peripherals.
// Connect the 12V 2A SMPS output to the Arduino Uno's Vin pin and GND pin.
// Connect your peripherals (e.g., sensors, LEDs, motors) to the Arduino Uno's digital and analog pins.
```
### Example 2: Powering a Raspberry Pi with Sensors and Actuators
In this example, we will use the 12V 2A SMPS to power a Raspberry Pi, a temperature sensor, and a relay module.
```python
# Import required libraries
import RPi.GPIO as GPIO
import time
# Set up GPIO pins for the relay module
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)  # Relay module control pin
try:
    while True:
        # Read temperature sensor data (not shown)
        # Control the relay module based on temperature readings
        GPIO.output(17, GPIO.HIGH)  # Turn on relay module
        time.sleep(1)
        GPIO.output(17, GPIO.LOW)  # Turn off relay module
        time.sleep(1)
except KeyboardInterrupt:
    GPIO.cleanup()
```
Note: In both examples, ensure that the 12V 2A SMPS is properly connected to the AC power source and the output is connected to the device being powered (Arduino Uno or Raspberry Pi). Additionally, follow proper safety precautions when working with electrical components.