

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 Fotek SSR DC - DC is engineered to handle a wide range of DC loads with precision and efficiency. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Control Voltage | 3-32 VDC |
| Output Voltage Range | 5-220 VDC |
| Maximum Output Current | 40A |
| Control Current | 7.5-12 mA (typical) |
| Switching Speed | ≤ 10 ms |
| Isolation Voltage | ≥ 2500 VAC |
| Operating Temperature | -30°C to +80°C |
| Storage Temperature | -30°C to +100°C |
| Mounting Style | Panel-mounted |
| Weight | Approximately 100g |
The 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 VDC). |
| 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. |
Connect the Control Signal:
+ (Input) terminal.- (Input) terminal.Connect the Load:
+ (Load) terminal.- (Load) terminal.Power the Circuit:
Mounting:
Below is an example of how to control a DC load using the Fotek SSR DC - DC and an Arduino UNO:
// Example: Controlling a DC load 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 load) ON
delay(5000); // Keep the load ON for 5 seconds
digitalWrite(ssrPin, LOW); // Turn the SSR (and load) OFF
delay(5000); // Keep the load OFF for 5 seconds
}
Note: Ensure the Arduino's ground is connected to the SSR's - (Input) terminal.
SSR Not Switching the Load:
Overheating:
Load Not Turning Off:
Control Signal Not Detected:
By following this documentation, users can effectively integrate the Fotek SSR DC - DC into their projects and ensure reliable operation.