

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 following table outlines the key technical specifications 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 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 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. Connects to the positive side of the load. | 
| 4 | - (Load) | Negative terminal for the DC load. Connects 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
}
| 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. | 
| Incorrect polarity of control connections. | Verify the polarity of the control signal connections. | |
| Load exceeds SSR's rated current or voltage. | Check the load specifications and ensure they are within the SSR's ratings. | |
| SSR overheats during operation. | Insufficient heat dissipation. | Attach a heat sink or cooling fan to the SSR. | 
| Load current is too high. | Reduce the load current or use an SSR with a higher current rating. | |
| Load does not turn off completely. | Leakage current in the SSR. | Ensure the load can tolerate the small leakage current of the SSR. | 
Can the SSR DC-DC be used with 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 with an inductive load like a motor?
By following this documentation, you can effectively integrate the Fotek SSR DC-DC into your projects and ensure reliable operation.