The GLYPHMOD-1-CH-Relay (Manufacturer Part ID: GM-002) is a single-channel relay module designed and manufactured by PCBCUPID. This module allows users to control high-voltage devices (e.g., appliances, lights, motors) using low-voltage control signals from microcontrollers or other logic circuits. It features opto-isolation for enhanced safety and reliability, making it ideal for applications where electrical isolation is critical.
The following table outlines the key technical details of the GLYPHMOD-1-CH-Relay module:
Parameter | Specification |
---|---|
Operating Voltage | 5V DC |
Trigger Voltage | 3.3V to 5V DC |
Relay Type | SPDT (Single Pole Double Throw) |
Maximum Load Voltage | 250V AC / 30V DC |
Maximum Load Current | 10A |
Isolation Method | Opto-isolator |
Dimensions | 50mm x 26mm x 18mm |
Mounting | PCB mount or screw holes |
Indicator LED | Yes (indicates relay activation) |
The GLYPHMOD-1-CH-Relay module has a total of 6 pins and terminals. The table below describes each pin:
Pin Name | Description |
---|---|
VCC | Connect to 5V DC power supply. |
GND | Connect to ground of the power supply. |
IN | Control signal input (3.3V to 5V logic level). |
Terminal Name | Description |
---|---|
COM | Common terminal for the relay. |
NO | Normally Open terminal (connected to COM when |
the relay is activated). | |
NC | Normally Closed terminal (connected to COM |
when the relay is not activated). |
The following example demonstrates how to control the relay using an Arduino UNO:
// Example: Controlling the GLYPHMOD-1-CH-Relay with Arduino UNO
// Define the pin connected to the relay module's IN pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off at startup
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on (activate)
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the relay on for 1 second
// Turn the relay off (deactivate)
digitalWrite(relayPin, LOW);
delay(1000); // Keep the relay off for 1 second
}
Relay Not Activating
Indicator LED Not Lighting Up
Load Not Turning On/Off
Microcontroller Resetting When Relay Activates
Q1: Can I use the GLYPHMOD-1-CH-Relay with a 3.3V microcontroller?
A1: Yes, the relay module is compatible with 3.3V control signals, but ensure the VCC pin is powered with 5V DC.
Q2: Is the relay module safe for high-voltage applications?
A2: Yes, the module is designed for high-voltage applications up to 250V AC or 30V DC. However, always follow proper safety precautions when working with high voltages.
Q3: Can I control multiple relays with one microcontroller?
A3: Yes, you can control multiple relay modules by connecting each module's IN pin to a separate digital output pin on the microcontroller.
Q4: What is the purpose of the opto-isolator?
A4: The opto-isolator provides electrical isolation between the control circuit and the high-voltage load, protecting the microcontroller from voltage spikes or surges.
By following this documentation, you can safely and effectively use the GLYPHMOD-1-CH-Relay module in your projects.