

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 lifetimes.








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 Load Current | 40 A |
| Trigger Current | ≤ 7.5 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 |
| Mounting Type | Panel-mounted |
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 | + (Load) | Positive terminal for the DC load. Connect to the positive side of the load. |
| 4 | - (Load) | Negative terminal for the DC load. Connect to the negative side of the load. |
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 to the Arduino's GND.+ (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 2 seconds.
#define SSR_PIN 9 // Define the Arduino pin connected to the SSR input
void setup() {
pinMode(SSR_PIN, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(SSR_PIN, HIGH); // Turn the SSR on (load powered)
delay(2000); // Wait for 2 seconds
digitalWrite(SSR_PIN, LOW); // Turn the SSR off (load disconnected)
delay(2000); // Wait for 2 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| SSR does not switch the load on or off | Incorrect control signal voltage | Ensure the control signal is within the 3-32 V DC range. |
| Load does not receive power | Incorrect load connections | Verify the polarity and connections of the load terminals. |
| SSR overheats during operation | Insufficient heat dissipation | Attach a heat sink or cooling fan to the SSR. |
| Voltage drop across the SSR is too high | Exceeding the rated load current | Ensure the load current does not exceed 40 A. |
| SSR fails to operate after installation | Damage due to voltage spikes or surges | Use a flyback diode across inductive loads to protect the SSR. |
Can the SSR DC-DC be used for AC loads?
What is the maximum switching frequency of the SSR?
Do I need an external resistor for the control signal?
Can I use the SSR without a heat sink?
How do I protect the SSR from inductive load spikes?