Stufin
Home Quick Cart Profile

5 Pin 48V DC Coil Voltage Electromagnetic Power Relay

Buy Now

Component Name

5 Pin 48V DC Coil Voltage Electromagnetic Power Relay

Description

The 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay is an electro-mechanical switching device designed to control high-power circuits in a variety of applications. It operates on a 48V DC coil voltage and features five pins, which include a normally open (NO) contact, a normally closed (NC) contact, a common (COM) terminal, and two coil terminals.

Functionality

The relay's primary function is to allow a low-power electrical signal to control a high-power circuit. When a 48V DC voltage is applied to the coil terminals, the relay's internal electromagnet is energized, causing the normally open (NO) contact to close and the normally closed (NC) contact to open. This switching action allows the relay to control the flow of electrical current in the connected circuit.

Key Features

  • 48V DC Coil Voltage: The relay operates on a 48V DC voltage, making it suitable for applications where a higher coil voltage is required.
  • 5-Pin Configuration: The relay features five pins, which include:

Normally Open (NO) contact

Normally Closed (NC) contact

Common (COM) terminal

Coil Terminal 1

Coil Terminal 2

  • Electromagnetic Operation: The relay uses an electromagnetic coil to control the switching action, ensuring reliable and efficient operation.
  • High-Power Switching: The relay is capable of switching high-power circuits, making it suitable for applications such as motor control, lighting, and HVAC systems.
  • Reliable and Durable: The relay is designed to provide reliable operation over a long lifespan, with a mechanically robust design and high-quality components.
  • Compact Size: The relay's compact size makes it suitable for use in space-constrained applications, such as industrial control panels and IoT devices.
  • Low Power Consumption: The relay's low power consumption makes it an energy-efficient solution for applications where power consumption is a concern.

Coil Voltage

48V DC

Coil Resistance

[Insert coil resistance value]

Contact Rating

[Insert contact rating value]

Operating Temperature

[Insert operating temperature range]

Dimensions

[Insert dimensions]

Weight

[Insert weight]

Applications

Industrial automation and control systems

IoT devices and applications

Motor control and starting circuits

Lighting control systems

HVAC systems

Power supply systems

Precautions and Considerations

Ensure the relay is used within its specified operating temperature range and voltage ratings to prevent damage or premature failure.

Use proper safety precautions when handling the relay, as it may be hot or carry high voltage during operation.

Follow proper wiring and installation procedures to ensure reliable operation and prevent electrical shock or fire hazards.

Pin Configuration

  • 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay Documentation
  • Overview:
  • The 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay is a type of electromagnetic relay used to control high-power devices in various IoT applications. This relay features a 48V DC coil voltage and is suitable for use in industrial control systems, automation, and other applications that require high-power switching.
  • Pinout Diagram:
  • The relay has a total of 5 pins, which are labeled as follows:
  • Pin Description:
  • 1. VCC (Pin 1):
  • Function: Positive power supply for the relay coil
  • Voltage: 48V DC
  • Description: This pin provides the positive voltage to energize the relay coil. Connect this pin to a 48V DC power source.
  • 2. GND (Pin 2):
  • Function: Ground or negative power supply for the relay coil
  • Voltage: 0V DC
  • Description: This pin provides the ground or negative voltage to complete the circuit for the relay coil. Connect this pin to a 0V DC or ground point.
  • 3. IN (Pin 3):
  • Function: Input or control signal for the relay
  • Voltage: 0V to 48V DC
  • Description: This pin receives the control signal from a microcontroller, circuit, or other control device to energize or de-energize the relay. The relay will turn on when the input voltage is above the specified threshold (typically around 2-3V DC) and turn off when the input voltage is below the threshold.
  • 4. NO (Pin 4):
  • Function: Normally Open (NO) contact
  • Description: This pin is the normally open contact of the relay. When the relay is energized, the NO contact will close, connecting this pin to the COM pin. When the relay is de-energized, the NO contact will open, disconnecting this pin from the COM pin.
  • 5. COM (Pin 5):
  • Function: Common contact
  • Description: This pin is the common contact of the relay. It is connected to the load or device being controlled. When the relay is energized, the NO contact will close, connecting the COM pin to the load. When the relay is de-energized, the NO contact will open, disconnecting the COM pin from the load.
  • Connection Structure:
  • To connect the pins properly, follow this structure:
  • Connect Pin 1 (VCC) to a 48V DC power source.
  • Connect Pin 2 (GND) to a 0V DC or ground point.
  • Connect Pin 3 (IN) to a control signal from a microcontroller, circuit, or other control device.
  • Connect Pin 4 (NO) to one terminal of the load or device being controlled.
  • Connect Pin 5 (COM) to the other terminal of the load or device being controlled.
  • Important Notes:
  • Make sure to use the correct voltage and polarity when connecting the relay to prevent damage.
  • Use appropriate safety precautions when working with high-voltage and high-power devices.
  • The relay should be used within its specified ratings and guidelines to ensure safe and reliable operation.
  • By following this documentation, you can properly connect and use the 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay in your IoT applications.

Code Examples

Component Documentation: 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay
Overview
The 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay is a type of relay module that allows you to control high-voltage devices with a low-voltage signal. It is commonly used in IoT projects, industrial control systems, and automation applications. This relay module features a 48V DC coil voltage and can switch up to 10A of current.
Pinout
The relay module has 5 pins:
VCC: Positive power supply (48V DC)
 GND: Ground
 IN: Input signal pin (low-voltage signal to control the relay)
 COM: Common pin (connected to the normally open (NO) or normally closed (NC) pin)
 NO/NC: Normally open (NO) or normally closed (NC) pin (dependent on the relay's configuration)
Code Examples
### Example 1: Basic Relay Control using Arduino
In this example, we will use an Arduino board to control the relay module.
Hardware Connections:
Connect the VCC pin of the relay module to the 48V DC power supply.
 Connect the GND pin of the relay module to the GND pin of the Arduino board.
 Connect the IN pin of the relay module to a digital output pin of the Arduino board (e.g., pin 13).
 Connect the COM pin of the relay module to the positive terminal of a load (e.g., a LED or a small motor).
 Connect the NO/NC pin of the relay module to the negative terminal of the load.
Arduino Code:
```c
const int relayPin = 13;  // Choose a digital output pin on the Arduino board
void setup() {
  pinMode(relayPin, OUTPUT);
}
void loop() {
  digitalWrite(relayPin, HIGH);  // Turn the relay ON
  delay(1000);  // Wait for 1 second
  digitalWrite(relayPin, LOW);  // Turn the relay OFF
  delay(1000);  // Wait for 1 second
}
```
### Example 2: Relay Control using Raspberry Pi and Python
In this example, we will use a Raspberry Pi board to control the relay module using Python.
Hardware Connections:
Connect the VCC pin of the relay module to the 48V DC power supply.
 Connect the GND pin of the relay module to the GND pin of the Raspberry Pi board.
 Connect the IN pin of the relay module to a GPIO pin of the Raspberry Pi board (e.g., GPIO 17).
Python Code:
```python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
relay_pin = 17  # Choose a GPIO pin on the Raspberry Pi board
GPIO.setup(relay_pin, GPIO.OUT)
try:
    while True:
        GPIO.output(relay_pin, GPIO.HIGH)  # Turn the relay ON
        time.sleep(1)  # Wait for 1 second
        GPIO.output(relay_pin, GPIO.LOW)  # Turn the relay OFF
        time.sleep(1)  # Wait for 1 second
except KeyboardInterrupt:
    GPIO.cleanup()
```
These code examples demonstrate the basic operation of the 5 Pin 48V DC Coil Voltage Electromagnetic Power Relay module. You can modify the code to suit your specific project requirements.