The F-1049 DC to DC Solid State Relay (SSR), manufactured by CZH-LABS (Part ID: OONO F-1049), is an electronic switching device designed to control high-voltage DC loads using a low-voltage DC control signal. Unlike traditional mechanical relays, the F-1049 SSR provides electrical isolation between the control and load circuits, ensuring safe operation and eliminating mechanical wear. This makes it ideal for applications requiring high reliability and fast switching.
Parameter | Value |
---|---|
Control Voltage (Input) | 3.0V to 32.0V DC |
Load Voltage (Output) | 5.0V to 200.0V DC |
Load Current (Max) | 10A |
Isolation Voltage | 2500V AC |
On-State Voltage Drop | ≤ 1.5V |
Switching Speed | Turn-on: ≤ 10ms, Turn-off: ≤ 10ms |
Operating Temperature | -30°C to +80°C |
Dimensions | 58mm x 45mm x 25mm |
Weight | 50g |
The F-1049 SSR has four terminals, as described in the table below:
Pin Number | Label | Description |
---|---|---|
1 | Control (+) | Positive terminal for the DC control signal (input voltage: 3.0V to 32.0V). |
2 | Control (-) | Negative terminal for the DC control signal (ground). |
3 | Load (+) | Positive terminal for the DC load circuit (output voltage: 5.0V to 200.0V). |
4 | Load (-) | Negative terminal for the DC load circuit (ground). |
Connect the Control Circuit:
Control (+)
terminal (Pin 1).Control (-)
terminal (Pin 2).Connect the Load Circuit:
Load (+)
terminal (Pin 3).Load (-)
terminal (Pin 4).Power On:
Switching:
The F-1049 SSR can be controlled using an Arduino UNO. Below is an example circuit and code to toggle a DC load using the relay.
Control (+)
terminal of the SSR.Control (-)
terminal of the SSR.Load (+)
and Load (-)
terminals of the SSR.// Example code to control the F-1049 SSR with an Arduino UNO
// This code toggles the relay on and off every 2 seconds.
#define RELAY_PIN 9 // Define the Arduino pin connected to the SSR Control (+)
void setup() {
pinMode(RELAY_PIN, OUTPUT); // Set the relay pin as an output
}
void loop() {
digitalWrite(RELAY_PIN, HIGH); // Turn the relay ON
delay(2000); // Wait for 2 seconds
digitalWrite(RELAY_PIN, LOW); // Turn the relay OFF
delay(2000); // Wait for 2 seconds
}
Issue | Possible Cause | Solution |
---|---|---|
Relay does not switch on | Insufficient control voltage | Ensure the control voltage is between 3.0V and 32.0V DC. |
Load circuit does not energize | Incorrect load wiring or polarity | Verify the load connections and ensure correct polarity. |
Excessive heat during operation | Overcurrent or poor ventilation | Reduce the load current or improve heat dissipation (e.g., add a heatsink). |
Relay switches erratically | Electrical noise or unstable control signal | Use a decoupling capacitor on the control circuit to stabilize the signal. |
No isolation between circuits | Faulty relay or incorrect wiring | Verify wiring and replace the relay if necessary. |
Can the F-1049 SSR handle AC loads?
What happens if the load exceeds 10A?
Is the relay suitable for PWM control?
Can I use the relay in outdoor environments?
By following this documentation, users can safely and effectively integrate the F-1049 DC to DC SSR into their projects.