

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 specifications of the Fotek SSR DC-DC:
| Parameter | Value |
|---|---|
| Control Voltage (Input) | 3-32 V DC |
| Load Voltage (Output) | 5-200 V DC |
| Load Current (Output) | 0.1-20 A |
| Trigger Current | ≤ 10 mA |
| On-State Voltage Drop | ≤ 1.5 V |
| Switching Speed | ≤ 10 ms |
| Isolation Voltage | ≥ 2500 V AC |
| Operating Temperature | -30°C to +80°C |
| Storage Temperature | -30°C to +100°C |
| Dimensions | 58 mm x 45 mm x 23 mm |
| Weight | ~100 g |
The Fotek SSR DC-DC has four terminals, as described in the table below:
| Pin | 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 (5-200 V DC). |
| 4 | Output (-) | Negative terminal for the DC load (ground). |
Connect the Control Signal:
Input (+) terminal.Input (-) terminal.Connect the Load:
Output (+) terminal.Output (-) terminal.Power the Control Circuit:
Verify Connections:
The Fotek SSR DC-DC can be easily controlled using an Arduino UNO. Below is an example circuit and code to toggle a DC load using a digital pin.
Input (+) terminal of the SSR to Arduino digital pin 9.Input (-) terminal of the SSR to the Arduino GND.Output (+) and Output (-) 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 load) ON
digitalWrite(ssrPin, HIGH);
delay(1000); // Keep the load ON for 1 second
// Turn the SSR (and load) OFF
digitalWrite(ssrPin, LOW);
delay(1000); // Keep the load OFF for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| SSR does not switch the load | Control signal voltage is too low | Ensure the control signal is within the 3-32 V DC range. |
| Load does not turn off | Leakage current in the SSR | Verify the load's minimum operating current and ensure it is above the SSR's leakage current. |
| Excessive heating of the SSR | High load current or insufficient heat dissipation | Use a heatsink or cooling fan to manage heat dissipation. |
| Unintended switching of the load | Noise in the control signal | Use a decoupling capacitor or filter to stabilize the control signal. |
| Damage to the SSR | Incorrect polarity or overvoltage | Double-check all connections and ensure voltage/current ratings are not exceeded. |
Can the SSR DC-DC handle AC loads?
What happens if the control signal exceeds 32 V DC?
Can I use the SSR with an inductive load like a motor?
Is the SSR polarity-sensitive?
By following this documentation, you can effectively integrate the Fotek SSR DC-DC into your projects for reliable and efficient DC load control.