The SSR-25A is a Solid State Relay (SSR) designed to switch and control high-power devices. Unlike mechanical relays, the SSR-25A uses semiconductor devices to switch the load, providing silent, fast, and reliable operation. With a 25A current rating, it is suitable for a wide range of applications including industrial automation, home automation, and temperature control systems.
Pin Number | Description | Notes |
---|---|---|
1 | Control Voltage Input (+) | Connect to DC+ of control signal |
2 | Control Voltage Input (-) | Connect to DC- of control signal |
3 | Load Voltage Output (A1) | Connect to AC load |
4 | Load Voltage Output (A2) | Connect to AC line |
Control Signal Connection:
Load Connection:
// Define the SSR control pin
const int ssrPin = 7;
void setup() {
// Set the SSR pin as an output
pinMode(ssrPin, OUTPUT);
}
void loop() {
// Turn on the SSR for 5 seconds
digitalWrite(ssrPin, HIGH);
delay(5000);
// Turn off the SSR for 5 seconds
digitalWrite(ssrPin, LOW);
delay(5000);
}
Q: Can the SSR-25A be used to switch DC loads? A: No, the SSR-25A is designed for AC loads only.
Q: Is there a need for a protective diode across the control input like with mechanical relays? A: No, a protective diode is not necessary as there are no inductive components in the control circuit of the SSR.
Q: How do I know if the SSR is on or off? A: Some SSRs have an LED indicator. If not, measuring the voltage across the load can indicate whether the SSR is conducting.
Q: Can I use PWM to control the SSR? A: Yes, but ensure the frequency is suitable for the SSR and the load. Some SSRs may not switch fast enough for high-frequency PWM.
Remember to always consult the SSR-25A datasheet for specific details and contact technical support if you encounter issues not covered in this documentation.