

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 high durability.








The Fotek SSR DC-DC is engineered to handle a wide range of DC control and load requirements. Below are the key technical details:
| Parameter | Value |
|---|---|
| Manufacturer | Fotek |
| Part ID | Not specified |
| Type | Solid State Relay (SSR) |
| Control Voltage Range | 3-32 VDC |
| Load Voltage Range | 5-200 VDC |
| Maximum Load Current | 40 A |
| Switching Speed | ≤ 10 ms |
| Isolation Voltage | ≥ 2500 V |
| Operating Temperature | -30°C to +80°C |
| Storage Temperature | -30°C to +100°C |
| Mounting Type | Panel Mount |
The SSR DC-DC typically has four terminals, as described below:
| Pin Number | Label | Description |
|---|---|---|
| 1 | Input (+) | Positive control signal input (3-32 VDC) |
| 2 | Input (-) | Negative control signal input (ground) |
| 3 | Load (+) | Positive terminal for the DC load |
| 4 | Load (-) | Negative terminal for the DC load (ground side) |
Control Signal Connection:
Input (+) terminal.Input (-) terminal.Load Connection:
Load (+) terminal.Load (-) terminal.Power Supply:
Mounting:
Testing:
The SSR DC-DC can be controlled using an Arduino UNO. Below is an example circuit and code:
Input (+) terminal of the SSR.Input (-) terminal of the SSR.Load (+) and Load (-) terminals of the SSR.// Example code to control a Fotek SSR DC-DC with an Arduino UNO
// This code toggles the SSR on and off every second.
#define SSR_PIN 9 // Define the digital pin connected to the SSR
void setup() {
pinMode(SSR_PIN, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(SSR_PIN, HIGH); // Turn the SSR on
delay(1000); // Wait for 1 second
digitalWrite(SSR_PIN, LOW); // Turn the SSR off
delay(1000); // Wait for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| SSR does not switch the load | Incorrect control voltage | Verify the control voltage is 3-32 VDC. |
| Incorrect polarity | Check the polarity of control and load. | |
| Faulty SSR | Test with a multimeter or replace the SSR. | |
| Load remains on/off unexpectedly | Overvoltage or current surge | Add a diode or TVS for surge protection. |
| Heat dissipation issues | Use a heat sink or cooling fan. | |
| SSR overheats | Exceeding maximum load current | Reduce the load current or use a higher- |
| rated SSR. |
Can the SSR DC-DC be used for AC loads?
What happens if I reverse the polarity of the control signal?
Do I need an external resistor for the control signal?
Can I use the SSR without a heat sink?
By following this documentation, you can effectively integrate the Fotek SSR DC-DC into your projects for reliable and efficient DC load control.