

The Fotek SSR DC - DC is a Solid State Relay (SSR) designed specifically for DC applications. Unlike traditional mechanical relays, this SSR uses semiconductor switching technology, enabling faster operation, silent switching, and a significantly longer lifespan. It is ideal for controlling high-voltage DC loads using low-voltage control signals, making it a reliable and efficient choice for various applications.








The following table outlines the key technical specifications of the Fotek SSR DC - DC:
| Parameter | Value |
|---|---|
| Manufacturer | Fotek |
| Part ID | Not specified |
| Input Control Voltage | 3-32 V DC |
| Output Voltage Range | 5-220 V DC |
| Maximum Output Current | 25 A |
| Trigger Current | ≤ 7.5 mA |
| On-State Voltage Drop | ≤ 1.5 V |
| Switching Speed | ≤ 10 ms |
| Insulation Resistance | ≥ 1000 MΩ (at 500 V DC) |
| Dielectric Strength | 2500 V AC (input to output) |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel-mounted |
The Fotek SSR DC - DC has four terminals, as described in the table below:
| Pin Number | Label | Description |
|---|---|---|
| 1 | + (Input) | Positive terminal for the control signal (3-32 V DC). |
| 2 | - (Input) | Negative terminal for the control signal (ground). |
| 3 | + (Load) | Positive terminal for the DC load (5-220 V DC). |
| 4 | - (Load) | Negative terminal for the DC load (ground). |
Connect the Control Signal:
+ (Input) terminal.- (Input) terminal.Connect the Load:
+ (Load) terminal.- (Load) terminal.Power the Circuit:
Switching:
The following example demonstrates how to control a DC load using the Fotek SSR DC - DC and an Arduino UNO.
+ (Input) terminal of the SSR.- (Input) terminal of the SSR.+ (Load) and - (Load) 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 on (control signal HIGH)
digitalWrite(ssrPin, HIGH);
delay(5000); // Keep the load on for 5 seconds
// Turn the SSR off (control signal LOW)
digitalWrite(ssrPin, LOW);
delay(5000); // Keep the load off for 5 seconds
}
SSR Not Switching On:
Load Not Receiving Power:
Overheating:
SSR Stuck in On/Off State:
Q: Can the SSR DC - DC be used for AC loads?
A: No, this SSR is designed specifically for DC loads. For AC loads, use an AC-rated SSR.
Q: Does the SSR require an external power supply?
A: No, the SSR operates directly from the control signal voltage (3-32 V DC).
Q: Can I use the SSR for PWM control?
A: While the SSR can handle fast switching, it is not ideal for high-frequency PWM control due to potential heating issues.
Q: How do I mount the SSR?
A: The SSR is panel-mounted. Use screws and ensure proper heat dissipation with a heat sink if necessary.