The SSR-10A is a Solid State Relay (SSR) designed for high-speed, silent switching of AC loads without the mechanical wear and tear associated with traditional electromechanical relays. It is ideal for a wide range of applications including industrial automation, home automation, and temperature control systems.
Pin Number | Description | Notes |
---|---|---|
1 | Control Voltage (+) | Connect to DC+ (3-32V) |
2 | Control Voltage (-) | Connect to DC- |
3 | Load Voltage (AC) | Connect to one side of the AC load |
4 | Load Voltage (AC) | Connect to the other side of the AC load |
Control Side Connection:
Load Side Connection:
Powering the SSR:
Q: Can the SSR-10A be used to switch DC loads? A: No, the SSR-10A is designed for AC loads only.
Q: Is there a need for a heatsink? A: For continuous operation near the 10A limit, a heatsink is recommended to dissipate heat.
Q: How do I know if the SSR is on? A: Some SSRs have an LED indicator. If not, measuring the voltage across the load terminals when the control voltage is applied can confirm operation.
// Example code to control an SSR-10A with an Arduino UNO
const int ssrPin = 7; // Connect the control voltage (+) to Digital Pin 7
void setup() {
pinMode(ssrPin, OUTPUT); // Set the SSR pin as an output
}
void loop() {
digitalWrite(ssrPin, HIGH); // Turn on the SSR (apply control voltage)
delay(5000); // Keep the SSR on for 5 seconds
digitalWrite(ssrPin, LOW); // Turn off the SSR (remove control voltage)
delay(5000); // Keep the SSR off for 5 seconds
}
Note: Ensure that the control voltage from the Arduino matches the SSR's requirements. Use a suitable driver if necessary.