

The Socket GZT80, manufactured by Relpol, is a versatile and reliable socket designed for connecting and securing electronic components in a variety of circuit applications. It ensures stable and durable electrical connections, making it an essential component in both prototyping and production environments. The GZT80 is particularly suited for use with relays, timers, and other modular electronic devices.








| Parameter | Value | 
|---|---|
| Manufacturer | Relpol | 
| Part ID | GZT80 | 
| Rated Voltage | 250V AC | 
| Rated Current | 10A | 
| Contact Material | Silver Alloy | 
| Operating Temperature | -40°C to +70°C | 
| Mounting Type | DIN Rail or Panel Mount | 
| Dimensions (L x W x H) | 78mm x 27mm x 35mm | 
| Weight | 45g | 
| Compliance | RoHS, CE | 
The GZT80 socket features a standard pin layout designed for compatibility with a wide range of relays and components. Below is the pin configuration:
| Pin Number | Description | Functionality | 
|---|---|---|
| 1 | Coil Terminal 1 | Connects to one side of the relay coil | 
| 2 | Coil Terminal 2 | Connects to the other side of the coil | 
| 3 | Normally Closed (NC) Contact | Closed when the relay is inactive | 
| 4 | Common Contact | Shared terminal for NC and NO contacts | 
| 5 | Normally Open (NO) Contact | Open when the relay is inactive | 
| 6 | Ground or Auxiliary Connection | Optional grounding or auxiliary use | 
Mounting the Socket:
Connecting Components:
Wiring the Circuit:
Testing the Circuit:
The GZT80 can be used to control a relay connected to an Arduino UNO. Below is an example circuit and code:
// Example code to control a relay using the GZT80 socket and Arduino UNO
const int relayPin = 7; // Pin connected to the relay coil
void setup() {
  pinMode(relayPin, OUTPUT); // Set the relay pin as an output
  digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
  digitalWrite(relayPin, HIGH); // Turn the relay on
  delay(1000); // Keep it on for 1 second
  digitalWrite(relayPin, LOW); // Turn the relay off
  delay(1000); // Keep it off for 1 second
}
| Issue | Possible Cause | Solution | 
|---|---|---|
| Component not seating properly | Misalignment of pins | Realign the component and reinsert it | 
| No electrical connection | Loose or incorrect wiring | Check and tighten all connections | 
| Relay not activating | Insufficient voltage/current to the coil | Verify power supply and connections | 
| Overheating of the socket | Exceeding rated current or voltage | Reduce load to within rated limits | 
| Intermittent operation | Environmental factors (e.g., vibration) | Secure the socket and connections | 
Can the GZT80 be used with DC circuits?
What types of relays are compatible with the GZT80?
How do I clean the socket contacts?
Can the GZT80 be used outdoors?
By following this documentation, users can effectively integrate the Socket GZT80 into their electronic projects and ensure reliable performance.