

The Fotek SSR DC-DC is a Solid State Relay (SSR) designed specifically for DC applications. It enables the control of high-voltage DC loads using low-voltage control signals. Unlike traditional mechanical relays, the SSR DC-DC offers fast switching, high reliability, and no mechanical wear, making it ideal for applications requiring frequent switching or long operational lifespans.








The following table outlines the key technical details 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 | 40 A |
| Switching Speed | ≤ 10 ms |
| Isolation Voltage | ≥ 2500 V AC |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel-mounted |
| Weight | ~120 g |
The Fotek SSR DC-DC typically 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 | Output (+) | Positive terminal for the DC load. |
| 4 | Output (-) | Negative terminal for the DC load. |
Connect the Control Signal:
Input (+) terminal.Input (-) terminal.Connect the Load:
Output (+) terminal.Output (-) terminal.Power the Circuit:
Mounting:
The following example demonstrates how to control a DC motor using the SSR DC-DC and an Arduino UNO:
// Example: Controlling a DC motor with Fotek SSR DC-DC and Arduino UNO
const int ssrPin = 9; // Pin connected to the SSR control input
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn the SSR (and motor) ON
delay(5000); // Keep the motor ON for 5 seconds
digitalWrite(ssrPin, LOW); // Turn the SSR (and motor) OFF
delay(5000); // Keep the motor OFF for 5 seconds
}
Note:
ssrPin (pin 9) to the Input (+) terminal of the SSR.Input (-) terminal of the SSR.SSR Not Switching On:
Overheating:
Load Not Operating:
Voltage Drop Across SSR:
Q1: Can the SSR DC-DC be used with AC loads?
No, the SSR DC-DC is designed specifically for DC loads. For AC loads, use an AC-AC or DC-AC SSR.
Q2: Is the SSR DC-DC suitable for PWM control?
Yes, the SSR can handle PWM signals, but ensure the switching frequency is within the relay's response time (≤ 10 ms).
Q3: How do I protect the SSR from voltage spikes?
For inductive loads, use a flyback diode across the load to suppress voltage spikes and protect the SSR.
Q4: Can I use the SSR without a heat sink?
For low-current applications, a heat sink may not be necessary. However, for high-current loads, a heat sink is strongly recommended to prevent overheating.