

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.








Below are the key technical details for 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 Output Current | 40 A |
| Switching Speed | ≤ 10 ms |
| Isolation Voltage | ≥ 2500 V AC |
| Operating Temperature | -30°C to +80°C |
| Mounting Type | Panel-mounted |
| Weight | ~120 g |
The SSR DC-DC typically has four terminals, as described 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.+ (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 1 second.
#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 (control signal HIGH)
delay(1000); // Wait for 1 second
digitalWrite(SSR_PIN, LOW); // Turn the SSR off (control signal LOW)
delay(1000); // Wait for 1 second
}
SSR Does Not Switch the Load:
Cause: Insufficient control signal voltage.
Solution: Ensure the control signal voltage is within the specified range (3-32 V DC).
Cause: Incorrect wiring.
Solution: Double-check the connections for both the control signal and load.
Overheating:
Load Flickering:
No Isolation Between Control and Load Circuits:
Q1: Can the SSR DC-DC be used with AC loads?
A1: No, the SSR DC-DC is designed specifically for DC loads. For AC loads, use an AC-rated SSR.
Q2: What happens if the control signal exceeds 32 V DC?
A2: Applying a control signal above the specified range may damage the SSR. Always ensure the control voltage is within 3-32 V DC.
Q3: Can I use the SSR without a heat sink?
A3: For low-current applications, a heat sink may not be necessary. However, for high-current loads, a heat sink is essential to prevent overheating.
Q4: How fast can the SSR switch?
A4: The SSR has a switching speed of ≤ 10 ms, making it suitable for most DC applications.