Stufin
Home Quick Cart Profile

24V 5A SMPS Power Supply

Buy Now on Stufin

Component Name

24V 5A SMPS Power Supply

Description

The 24V 5A SMPS Power Supply is a compact, high-reliability Switch Mode Power Supply (SMPS) designed to provide a stable 24V DC output at a maximum current of 5A. This power supply is ideal for use in a wide range of applications, including industrial control systems, automation, robotics, medical devices, and other IoT systems that require a reliable and efficient power source.

Functionality

The 24V 5A SMPS Power Supply is designed to convert AC input voltage to a stable DC output voltage, ensuring a reliable power supply to connected devices. The power supply operates with a high degree of efficiency, minimizing heat generation and reducing energy losses.

Key Features

  • Input Voltage: 100-240V AC, 50-60Hz
  • Output Voltage: 24V DC 10%
  • Output Current: 5A max
  • Efficiency: Up to 85% efficient, reducing heat generation and energy losses
  • Protection Features:
  • Isolation: The power supply provides electrical isolation between the input and output, ensuring safe and reliable operation
  • Compact Design: The power supply is designed to be compact and lightweight, making it ideal for use in space-constrained applications
  • Low Ripple and Noise: The power supply provides a low ripple and noise output, ensuring stable operation of connected devices
  • High Reliability: The power supply is designed to provide long-term reliability, with a MTBF (Mean Time Between Failures) of over 500,000 hours
  • Certifications: The power supply meets international safety standards, including UL, CE, and RoHS
  • Overvoltage Protection (OVP)Prevents damage from excessive input voltage
    Short Circuit Protection (SCP)Shuts down the power supply in case of a short circuit
    Overcurrent Protection (OCP)Limits output current to prevent damage from excessive loading
    Overtemperature Protection (OTP)Shuts down the power supply if internal temperature exceeds a safe limit

Dimensions

101.6mm x 50.8mm x 30mm (L x W x H)

Weight

200g

Material

Metal casing with a plastic enclosure

Input

IEC C14 socket

Output

2-pin terminal block ( Phoenix connector )

Operating Temperature

-20C to +70C

Storage Temperature

-40C to +80C

Humidity

20% to 90% RH

Warranty and Support

The 24V 5A SMPS Power Supply is backed by a 2-year warranty and comprehensive technical support, ensuring that users have access to reliable and efficient power supply solutions.

Pin Configuration

  • Component Name: 24V 5A SMPS Power Supply
  • Pin Description:
  • The 24V 5A SMPS Power Supply has a standard connector with multiple pins, each serving a specific purpose. Below is a detailed explanation of each pin and how to connect them:
  • Pin 1: AC_IN (Live/Hot Wire)
  • Function: Connects to the live wire of the AC power source (e.g., wall outlet)
  • Type: Input
  • Voltage: 100-240V AC
  • Connection: Use a suitable gauge wire to connect to the live wire of the AC power source. Ensure proper insulation and safety precautions.
  • Pin 2: AC_IN (Neutral Wire)
  • Function: Connects to the neutral wire of the AC power source (e.g., wall outlet)
  • Type: Input
  • Voltage: 100-240V AC
  • Connection: Use a suitable gauge wire to connect to the neutral wire of the AC power source. Ensure proper insulation and safety precautions.
  • Pin 3: FG (Ground/Fault)
  • Function: Provides a safety ground connection for the power supply
  • Type: Input
  • Voltage: 0V
  • Connection: Connect to a suitable earth ground point, such as a grounding rod or a metallic chassis, using a copper wire.
  • Pin 4: V_OUT (+24V)
  • Function: Outputs a regulated 24V DC voltage
  • Type: Output
  • Voltage: +24V DC
  • Connection: Connect to the input of the device or circuit that requires 24V DC power. Use a suitable gauge wire and ensure proper insulation.
  • Pin 5: V_OUT (GND/0V)
  • Function: Outputs the return path for the 24V DC voltage
  • Type: Output
  • Voltage: 0V
  • Connection: Connect to the ground or 0V point of the device or circuit that requires 24V DC power. Use a suitable gauge wire and ensure proper insulation.
  • Pin 6: PG (Power Good)
  • Function: Indicates when the output voltage is within the specified regulation range (typically 90% to 110% of the nominal output voltage)
  • Type: Output
  • Voltage: 5V DC (high) or 0V DC (low)
  • Connection: Connect to a monitoring circuit or a microcontroller input to monitor the power supply status.
  • Pin 7: REMOTE (Remote On/Off)
  • Function: Allows remote control of the power supply's on/off state
  • Type: Input
  • Voltage: 5V DC (high) or 0V DC (low)
  • Connection: Connect to a digital output of a microcontroller or a switch to control the power supply's on/off state.
  • Connection Structure:
  • When connecting the pins, follow these guidelines:
  • Use suitable gauge wires for the AC input and DC output connections.
  • Ensure proper insulation and safety precautions when handling electrical connections.
  • Connect the AC input wires to the AC_IN pins (1 and 2) and secure them with wire nuts or connectors.
  • Connect the FG pin (3) to a suitable earth ground point.
  • Connect the V_OUT pins (4 and 5) to the device or circuit that requires 24V DC power.
  • Connect the PG pin (6) to a monitoring circuit or microcontroller input.
  • Connect the REMOTE pin (7) to a digital output of a microcontroller or a switch, if remote control is required.
  • Important Safety Notes:
  • Always follow proper safety precautions when working with electrical components.
  • Ensure the power supply is installed and used in accordance with the manufacturer's instructions and safety guidelines.
  • Avoid touching electrical components or wires to prevent electrical shock or injury.
  • By following these guidelines and connection structures, you can safely and effectively use the 24V 5A SMPS Power Supply in your IoT projects and applications.

Code Examples

24V 5A SMPS Power Supply Documentation
Overview
The 24V 5A SMPS Power Supply is a high-efficiency, switching-mode power supply designed to provide a stable 24V output voltage with a maximum current rating of 5A. This power supply is suitable for various IoT applications, including industrial control systems, automated machinery, and IoT devices requiring a reliable 24V power source.
Technical Specifications
Input Voltage: 100-240V AC, 50-60Hz
 Output Voltage: 24V DC
 Output Current: 5A
 Efficiency: 85%
 Protection Features: Overvoltage, Overcurrent, and Short-Circuit Protection
 Operating Temperature: -20C to +60C
 Dimensions: 78mm x 42mm x 30mm (L x W x H)
Example 1: Using the 24V 5A SMPS Power Supply with an ESP32 IoT Board
In this example, we will use the 24V 5A SMPS Power Supply to power an ESP32 IoT board, which requires a 24V power source to operate.
Hardware Requirements
24V 5A SMPS Power Supply
 ESP32 IoT Board
 Jumper wires
 Breadboard
Software Requirements
ESP32 Arduino Core (version 2.0.0 or higher)
Code Example
```c
#include <WiFi.h>
const char ssid = "your_wifi_ssid";
const char password = "your_wifi_password";
void setup() {
  Serial.begin(115200);
// Initialize Wi-Fi connection
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to Wi-Fi...");
  }
Serial.println("Connected to Wi-Fi");
}
void loop() {
  // Perform IoT-related tasks, such as sending data to the cloud or reading sensor values
  delay(1000);
}
```
Example 2: Using the 24V 5A SMPS Power Supply with a Stepper Motor
In this example, we will use the 24V 5A SMPS Power Supply to power a stepper motor, which requires a 24V power source to operate.
Hardware Requirements
24V 5A SMPS Power Supply
 Stepper Motor (24V, 1.5A)
 Stepper Motor Driver (e.g., A4988)
 Jumper wires
 Breadboard
Software Requirements
Arduino IDE (version 1.8.13 or higher)
Code Example
```c
#include <AccelStepper.h>
// Define stepper motor pins
const int dirPin = 2;
const int stepPin = 3;
// Create an instance of the AccelStepper library
AccelStepper stepper(AccelStepper::DRIVER, stepPin, dirPin);
void setup() {
  // Initialize stepper motor
  stepper.setMaxSpeed(1000);
  stepper.setAcceleration(500);
}
void loop() {
  // Move the stepper motor 1000 steps
  stepper.moveTo(1000);
  stepper.run();
  delay(1000);
// Move the stepper motor back to the initial position
  stepper.moveTo(0);
  stepper.run();
  delay(1000);
}
```
Example 3: Using the 24V 5A SMPS Power Supply with a PLC (Programmable Logic Controller)
In this example, we will use the 24V 5A SMPS Power Supply to power a PLC, which requires a 24V power source to operate.
Hardware Requirements
24V 5A SMPS Power Supply
 PLC (24V, 1A)
 I/O modules (e.g., digital input, analog output)
 Jumper wires
 Breadboard
Software Requirements
PLC programming software (e.g., Siemens SIMATIC STEP 7)
Code Example (in PLC programming language, e.g., Ladder Logic)
```ladder
// Define I/O variables
VAR
  digital_input_at_x000 := FALSE;
  analog_output_at_y001 := 0.0;
// Define the program
PROGRAM
  // Read digital input
  digital_input_at_x000 := IX0.0;
// Perform logic operation
  IF digital_input_at_x000 THEN
    analog_output_at_y001 := 10.0;
  ELSE
    analog_output_at_y001 := 0.0;
  END_IF;
// Write to analog output
  QY0.0 := analog_output_at_y001;
END_PROGRAM;
```
Note: The code examples provided are for illustrative purposes only and may require modifications to work with specific hardware and software configurations.