

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 Signal Voltage | 3-32 VDC |
| Load Voltage Range | 5-220 VDC |
| Maximum Load Current | 40 A |
| Isolation Voltage | ≥ 2500 V |
| Switching Speed | ≤ 10 ms |
| 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 terminal for the control signal |
| 2 | Input (-) | Negative terminal for the control signal |
| 3 | Load (+) | Positive terminal for the DC load |
| 4 | Load (-) | Negative terminal for the DC load |
Control Signal Connection:
Input (+) terminal (Pin 1).Input (-) terminal (Pin 2).Load Connection:
Load (+) terminal (Pin 3).Load (-) terminal (Pin 4).Power Supply:
Mounting:
Below is an example of how to control the SSR DC-DC using an Arduino UNO:
// Example: Controlling a Fotek SSR DC-DC with Arduino UNO
// This code toggles the SSR on and off every 2 seconds.
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 on
delay(2000); // Wait for 2 seconds
digitalWrite(ssrPin, LOW); // Turn the SSR off
delay(2000); // Wait for 2 seconds
}
Note: Use a current-limiting resistor if required to protect the Arduino pin.
SSR Not Switching:
Overheating:
Load Not Turning Off:
Control Signal Interference:
Q1: Can the SSR DC-DC be used with AC loads?
A1: No, this SSR is designed specifically for DC loads. For AC loads, use an AC-AC or DC-AC SSR.
Q2: What happens if the load current exceeds 40 A?
A2: Exceeding the maximum load current can damage the SSR. Always ensure the load current is within the specified limit.
Q3: Is the SSR polarity-sensitive?
A3: Yes, both the control signal and load connections are polarity-sensitive. Incorrect polarity can damage the relay.
Q4: Can I use the SSR without a heat sink?
A4: It is not recommended. Without proper heat dissipation, the SSR may overheat and fail.
By following this documentation, users can effectively integrate the Fotek SSR DC-DC into their projects and ensure reliable operation.