

The Geya GSR1-1-40DA is a solid-state relay (SSR) designed for high-performance switching applications. Unlike traditional electromechanical relays, this SSR operates without moving parts, ensuring minimal heat generation, no mechanical wear, and reliable, fast switching. It is ideal for applications requiring high current handling and long operational life.








The following table outlines the key technical details of the GSR1-1-40DA:
| Parameter | Specification |
|---|---|
| Manufacturer | Geya |
| Model Number | GSR1-1-40DA |
| Input Control Voltage | 3-32 VDC |
| Output Load Voltage | 24-380 VAC |
| Maximum Load Current | 40 A |
| Control Current | ≤ 10 mA |
| On-State Voltage Drop | ≤ 1.5 V |
| Off-State Leakage Current | ≤ 2 mA |
| Isolation Voltage | ≥ 2500 VAC |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel-mounted |
| Dimensions | 58 mm x 45 mm x 30 mm |
The GSR1-1-40DA has four terminals, as described in the table below:
| Pin Number | Label | Description |
|---|---|---|
| 1 | + | Positive terminal for DC control input |
| 2 | - | Negative terminal for DC control input |
| 3 | Load (L1) | AC load input terminal |
| 4 | Load (L2) | AC load output terminal |
Input Control Connection:
+ and - terminals of the SSR.Load Connection:
Load (L1) and Load (L2) terminals.Mounting:
Power Supply:
The GSR1-1-40DA can be controlled using an Arduino UNO. Below is an example circuit and code to toggle an AC load using the SSR.
+ terminal of the SSR.- terminal of the SSR to the Arduino's GND.Load (L1) and Load (L2) terminals of the SSR.// Define the pin connected to the SSR control input
const int ssrPin = 9;
void setup() {
// Set the SSR pin as an output
pinMode(ssrPin, OUTPUT);
}
void loop() {
// Turn the SSR (and connected load) ON
digitalWrite(ssrPin, HIGH);
delay(5000); // Keep the load ON for 5 seconds
// Turn the SSR (and connected load) OFF
digitalWrite(ssrPin, LOW);
delay(5000); // Keep the load OFF for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| SSR does not turn ON | Insufficient control voltage or current | Verify the control voltage is within 3-32 VDC |
| SSR does not turn OFF | Leakage current in the load circuit | Use a load with higher resistance or add a bleeder resistor |
| Excessive heat generation | Inadequate heat dissipation | Install a heat sink or cooling fan |
| Load does not operate correctly | Incorrect wiring or load type mismatch | Double-check wiring and ensure load compatibility |
| Flickering or unstable operation | Electrical noise or interference | Add a capacitor or snubber circuit to suppress noise |
Can the GSR1-1-40DA handle inductive loads?
What happens if the control voltage exceeds 32 VDC?
Do I need a heat sink for low-current applications?
Can I use the SSR with a DC load?
By following this documentation, users can effectively integrate the Geya GSR1-1-40DA into their projects for reliable and efficient switching performance.